Re: Phoca Gallery Slideshow Plugin 404/410 errors
Posted: 12 Jan 2012, 16:36
Ok, here's a better fix (not the best, mind you).
Open "components/com_phocagallery/assets/fadeslideshow/fadeslideshow.js" and, on line 10, replace:with:
This will only fail if Joomla isn't installed on the root of the website (eg: http://www.example.com/joomla), but in that case one will only have to adjust "fadeSlideShow_path" (eg: var fadeSlideShow_path = '/joomla/components/com_phocagallery/assets/fadeslideshow').
Open "components/com_phocagallery/assets/fadeslideshow/fadeslideshow.js" and, on line 10, replace:
Code: Select all
var fadeSlideShow_descpanel={
controls: ['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]],Code: Select all
var fadeSlideShow_path = '/components/com_phocagallery/assets/fadeslideshow';
var fadeSlideShow_descpanel={
controls: [[fadeSlideShow_path+'/x.png',7,7], [fadeSlideShow_path+'/restore.png',10,11], [fadeSlideShow_path+'/loading.gif',54,55]],