in reply to Re^2: mod_perl lib problem
in thread mod_perl lib problem

After adding the LoadModules to your httpd.conf file, you should have restarted Apache. The output from that will be in your error_log file, before the error messages that you posted originally. What does the signature line (the last output line from the restart) say?

Upload seems a strange place to start your adventures with mod_perl, but probably that's what you're interested in. Most people would start with a small script that just output an HTML or text page (or using a CGI program that they already have). Then you can branch out into uploading.

Typically, one adds several more things to httpd.conf in addition to the LoadModule lines. If you're don't want to get the recommended book, try the following page and click on the "Server Configuration" link: http://perl.apache.org/docs/2.0/user/index.html In particular you need to create a directory to hold mod_perl scripts, and move your script into it. Then you need to put a Location block in httpd.conf that sets the new directory up to use mod_perl, as described in the linked page.

Where on the Apache site did you get the code snippet?

cmac