in reply to Working with mod_perl

"Cannot find server." in Internet Explorer is often the equivelant of "Document contains no data" in Netscape (IE uses some pretty generic error messages). Basically, a header was sent, but no data followed. Posting a code snippet could really help to find the problem, otherwise, put debug prints out to a file in your code to make sure it is getting where you expect, both after the header is sent and after the first html is sent. You can also try sending a small snippet right after the header to validate that this is the case.

Also, are you using Apache::PerlRun or Apache::Registry? With Apache::PerlRun, the script is reloaded each time, and the namespace is cleared - when you are using a "require", it will only do the require the first time, but the namespace is cleared between each request, so anything that isn't in a different package is lost. If this is an issue, try "use" instead of "require", and make sure that everything is in a package.

Of course, all of this is just guesses without seeing the code. Once mod_perl was set up and running correctly, and our code ported, I have found it fairly easy to debug. If all else fails, make a simpler test script, and add to it until you can duplicate the issues.

techy