Active
Project:
Slideshow-Box
Version:
4.7.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Dec 2006 at 08:27 UTC
Updated:
3 Oct 2007 at 13:58 UTC
Jump to comment: Most recent
Comments
Comment #1
phildu commentedNow i have the title of the image under the title of the box
Comment #2
Anonymous (not verified) commentedIt's a path problem. In the module file it's trying to download http://www.domain.com/files/images/filename.jpg. When in fact it should look for http://www.domain.com/system/files/images/filename.jpg.
Insert this on line 368:
Comment #3
stephane bouillet commentedHello
at first, thank you for slideshowbox.
As for me it didn't work, because it was searching images in "http://my acount.com/files/images/images/mypicture.jpg"
The 368 line was the basic line
$file = $path.'files/images'.($image->slideshow ? $image->slideshow : $image->_original);
That I change in
$file = $path.'files/'.($image->slideshow ? $image->slideshow : $image->_original);
Of course you have to see in your page code (tape Ctrl +U under firefox) and see where slideshow is searching for your image (usually first third of your code),
And then change the text of slideshowbox.module in consequence...
Bye !
Maybe you can see an example here if it works ;-)
Comment #4
sunSee http://drupal.org/node/102410 for a working patch