What userid does my PHP scripts run under?

Your PHP scripts will run under the same userid as the webserver (Apache), which is "nobody". Therefore, since your PHP scripts do not run under your userid, you must take this into consideration when you are trying to create, edit, or modify files with your PHP scripts.

Secondly, PHP scripts run under the group "nobody" as well. All clients are in the group "cust". Therefore, in order to allow PHP to create, modify, and/or delete files within your account, you would need to have world read/write permission on the files and within the directories where the files will be created.

  • 52 Korisnici koji smatraju članak korisnim
Je li Vam ovaj odgovor pomogao?

Related Articles

Can I run PHP scripts anywhere on my virtual server?

Yes, PHP scripts do not have to reside in a particular directory and will run anywhere on your...

What is PATH information for impotant modules on Linux Servers?

WWW Directory: /home/username/public_html Root Directory: /home/username Perl: /usr/bin/perl...

I get either Error 403 Forbidden or Error 404 Not Found. What is wrong?

Either of the two things happened: you deleted your /public_html/ directory [Linux Server] or...

My site works on local system but not on your servers. Why?

It is not necessary that an application which is working on your local system will work on the...

How do I create, edit & delete tables in my MySQL database?

All administration of your mySQL databases can be done through our convenient web based...