Quote:
Originally Posted by Jeff Bade
Reloaded everything and it is working now.
One problem I have is that the Name of the image it is asking for is not one of the 4 images.
I expanded it to 6 images and still no go.
I expanded it to 12 and most of the time the image is there.
But not all the time.
Anyone ever see that before?
Also the Red X images are there.
I think it is any non-image file in that directory which is causing this.
one time I was asked for the picture of index.
Which since I have index.html instead of .htaccess that makes sense.
|
Sounds a little strange - I know other people are having issues with one or two images loading - I am looking into this and will do any necessary changes but I suspect it's a server thing - but will do testing to find this out.
If you have any other files than .htaccess, thumbs.db/Thumbs.db then they will show up, as those files are excluded - it is possible to exclude index.html by adding this in the show.php file:
PHP Code:
if ($entry != '.' && $entry != '..' && $entry != 'show.php' && $entry != '.htaccess' && $entry != 'Thumbs.db')
If you want to add index.html to that change it to:
PHP Code:
if ($entry != '.' && $entry != '..' && $entry != 'show.php' && $entry != '.htaccess' && $entry != 'Thumbs.db' && $entry != 'index.html')
For any other files just add
PHP Code:
&& $entry != 'whateverfilename.ext'
to the end of the line before the closing bracket ")".
HTH
Jason