in reply to mod_perl setup problems

USE THE ERROR LOG LUKE

Replies are listed 'Best First'.
Re: Re: mod_perl setup problems
by Anonymous Monk on Aug 02, 2003 at 06:49 UTC

    Here's the relevant error:

    Permission denied: access to /www/page.pl failed because search permissions are missing on a component of the path

    Any ideas?

      This means that either the file you're trying to run or one part of the path lacks permssions needed by the webserver process to get your file. For example, for path /home/homedir/www/module.pm, all of /home/, /home/homedir/, home/homedir/www/, and /home/homedir/www/module.pm must have read and execute permissions for the user underwhich the httpd process runs.

      --Bob Niederman, http://bob-n.com

        I'm stupid ;-)

        I just checked, all the directory permissions were correct but the server was running as user 'nobody' and I didn't have the right permissions on the actual file. It's all working now.

        Thanks for the help, I appreciate it :)