
August 11th, 2000, 11:35 AM
|
|
Contributing User
|
|
Join Date: Aug 2000
Posts: 81
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
What is happening at the moment when a user clicks on that link? Possibilities:
404 - The image file isn't in the right place or isn't accessible, make sure it's under the doc root and is world readable (and all dirs leading up to it are world executable)
display in browser - The browser thinks it can handle files of this type and so just displays them. You can get around this by specifying a different MIME type for those files in you conf files. Add a line to your httpd.conf file:
AddType image/x-unknown .tif .psd <all your file extensions>
That's a hack, so use it carefully.
|