On Fri, 11 Mar 2005 17:42:07 +0800, Glenn Remot <[EMAIL PROTECTED]> wrote: > i have a cgi script that's trying create a directory in my /home. upon > execution through web i see this errors on my kernel:
the cgi script is running as the apache user (nobody, httpd, www or whatever). it is trying to write in /home/gremot, which is owned by you and is probably not writeable by the apache user. you need to make a directory somewhere that the apache user can write to (mkdir, chown, chmod) and configure your cgi script to write there. tiger -- Gerald Timothy Quimpo http://bopolissimus.blogspot.com [EMAIL PROTECTED] [EMAIL PROTECTED] Public Key: "gpg --keyserver pgp.mit.edu --recv-keys 672F4C78" Mene sakhet ur-seveh -- Philippine Linux Users' Group (PLUG) Mailing List [email protected] (#PLUG @ irc.free.net.ph) Official Website: http://plug.linux.org.ph Searchable Archives: http://marc.free.net.ph . To leave, go to http://lists.q-linux.com/mailman/listinfo/plug . Are you a Linux newbie? To join the newbie list, go to http://lists.q-linux.com/mailman/listinfo/ph-linux-newbie
