in reply to Re^3: Problems Processing Hash within Cgi Script
in thread Problems Processing Hash within Cgi Script

yes it has permission to read it. When I run perl myscript.cgi , the output is a valid html page. When running myscript.cgi on the browser, till still cuts off the html after my hash code section
  • Comment on Re^4: Problems Processing Hash within Cgi Script

Replies are listed 'Best First'.
Re^5: Problems Processing Hash within Cgi Script
by Joost (Canon) on Dec 22, 2004 at 21:36 UTC
    Running perl myscript.cgi is not the same as running it as a CGI - your server can run cgi scripts as another user for instance, the environment variables will not be the same and depending on the server, it might not be called with the same current directory. My guess is that the call to the sub in your module is not succeeding, hence my questions.