in reply to Browser dependent CGI script failure?
You are using a relative URL of a form that is not strictly standard, supplying only the parameters of the script, without the script name (or the directory, etc). Some browsers fill out the script name automatically, some don't.
I strongly suggest that you use either self_url or url() methods (provided by CGI.pm) to determine the URL of your script and explicitly use them in links.
That way, you will retain the ability to move the script to other machines/directories and have it work automatically, and avoid the browser dependent interpretation of the relative URL RFCs.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Browser dependent CGI script failure?
by Anonymous Monk on Apr 14, 2004 at 06:17 UTC | |
by wolfi (Scribe) on Apr 14, 2004 at 06:57 UTC | |
by BUU (Prior) on Apr 14, 2004 at 07:50 UTC | |
by Anonymous Monk on Apr 14, 2004 at 08:33 UTC | |
by iburrell (Chaplain) on Apr 14, 2004 at 20:03 UTC | |
Re: Re: Browser dependent CGI script failure?
by markmoon (Deacon) on Apr 14, 2004 at 05:37 UTC | |
Re: Re: Browser dependent CGI script failure?
by zetetes (Pilgrim) on Apr 14, 2004 at 22:17 UTC |