I am using Ubuntu 10.10 as my Desktop Development platform for my main PC. I have a problem after installing suPHP. Before, when new folder is created via PHP script by executing
mkdir("newfolder", 0755);
it created the "newfolder" with 755 permission correctly. But I wanted assign the file ownership PHP to my same username account I am logged in, so installed suPHP. Although the newly created folder and uploaded files via PHP script was assigned correctly to my account username, the permissions become
Directory: 700 Upload file: 600
Instead of
Directory: 755 Upload file: 644
so the files are not writable by the PHP script anymore, unless I change the permissions via chmod from SSH command line.
If I use Nautilus file manager to create new folder it becomes 755 and new file becomes 644 as expected, the same is true if I use the same script on my hosting companies dedicated server, which runs CentOS 5. Is there a way to change the default file permission settings for suPHP or Apache server in Ubuntu to work correctly?
Thank you.