That could be the problem, yes. These things affect different code in different ways. It is the path to files (image files in this case) that is important.
The way you have the script configured:
Code:
variableslide[0]=['/images/slide1.jpg', '', '']
variableslide[1]=['/images/slide2.jpg', '', '']
variableslide[2]=['/images/slide3.jpg', '', '']
variableslide[3]=['/images/slide4.jpg', '', '']
variableslide[4]=['/images/slide5.jpg', '', '']
It expects to see the images here:
Code:
http://70.86.235.2/images/slide#.jpg
But, they are really here:
Code:
http://70.86.235.2/~damaxken/images/slide#.jpg
You could change your code to:
Code:
variableslide[0]=['images/slide1.jpg', '', '']
variableslide[1]=['images/slide2.jpg', '', '']
variableslide[2]=['images/slide3.jpg', '', '']
variableslide[3]=['images/slide4.jpg', '', '']
variableslide[4]=['images/slide5.jpg', '', '']
Or, you could use the absolute path to the images, ex:
Code:
variableslide[1]=['http://70.86.235.2/~damaxken/images/slide2.jpg', '', '']
Once you have a DNS, depending upon how the paths work out, you might be able to go back to your old code.
Bookmarks