I am having the same problem with the path not showing right it should be /tv/files/slideshow_images

  $files = _fade_slideshow_explore_dir('.' . $base_path . '/files/' . variable_get( "fade_slideshow_image_dir_ss" . $show, 'slideshow_images/') . '/');
</script><div id="fade_slideshow_1" class="fade_slideshow"><script type="text/javascript">var fade_images_1=new Array();fade_images_1[0]=["/files/slideshow_images//01-NoelleSAMPLE.jpg", "", ""];fade_images_1[1]=["/files/slideshow_images//02-PerfectCopySAMPLE.jpg", "", ""];fade_images_1[2]=["/files/slideshow_images//03-BoSavinoSAMPLE.jpg", "", ""];fade_images_1[3]=["/files/slideshow_images//04-BubbaLoveSAMPLE.jpg", "", ""];new fadeshow(fade_images_1, 450, 130, 0, 3000, 1, "R")</script></div>  </div>

What I did is put a symbolic linc to the dir but it works in FF but not in IE7 any clues on this?

Comments

tsavino’s picture

any clues on this?

tsavino’s picture

Category: bug » support

mite not be a bug

tsavino’s picture

Assigned: Unassigned » tsavino
Status: Active » Fixed

Fixed it find this:

$js .= 'fade_images_' . $show . '[' . $cnt . ']=["/' . $file . '", "", ""];';

and I changed it to this:

$js .= 'fade_images_' . $show . '[' . $cnt . ']=["/tv/' . $file . '", "", ""];';

and it works.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.