ps -ef | grep httpd # this will show you the user id of the web server #### ls -al /my/path #### # httpd group (you can find out from the /etc/password # and /etc/group files chgrp -R httpd /my/path chmod -R g+rx /my/path #### su - httpd # set uid to httpd user, assuming that you are the # root user and no password is required # run your cgi script from the command line. # you don't need to use a browser to test the cgi script.