A:
My Perl CGI script generates HTM file with
My perl file is in cgi-bin directory and everything works fine except oppening img.
When I create HTML file from the view/source in my IE6 it works fine (image is shown).
Any idea what may be wrong?
B:
webservers are not usually configured to render images in a CGI/executable mapped directory. The only thing that happens to files residing in these trees is that they are executed (ie. scripts etc.) Images and HTML docs should never reside in this tree.
Images, HTML documents, etc., should reside in the non-executable side of the webserver which is mapped so that the content is merely displayed (and *NOT* executed). This tree is usually named "htdocs" (in the Unix world, in MS-IIS it's named something else).
If you view the files statically (ie. via your filesystem), the configured limitations of the webserver mappings are not imposed, thus you can view the image successfully.
阅读(2066) | 评论(0) | 转发(0) |