![]() |
suPHP file permission
I follow the "How To Set Up suPHP On A Debian Based ISPConfig Server" to setup the suPHP.
Yes, I can install the suPHP but when I upload a photo to my website. The php scripts will create a folder with access right 600 only and the upload photo also is 600 only. So that I can't see the photo on my browser. I have already set the suphp.conf to : ; Security options allow_file_group_writeable=true allow_file_others_writeable=false allow_directory_group_writeable=true allow_directory_others_writeable=false What's wrong with my suPHP, How can I fix this problem? In fact, I want to suPHP to chmod 755 or 644 to the created folder and files. |
Quote:
|
Quote:
I have looked all over the php scripts, this is not related to the php script, because the script is already used 755 to set the permission. Any other suggestion to fix this problem? Thank you! |
Besides, I find the if the script chmod(filesorpath, 755), the output permission will be 0700.
If the script use imagejpeg(), the permission of the output file will be 0600. Which configuration file should I modify it to fix this problem. The created folder or file owner is web1_user1:web1 Thanks! |
Quote:
Quote:
|
Yes! I just ignore the '0' here. But inside the scripts, it use 0755.
I have tried install a fresh Ubuntu again. I just put the a test script inside it, which is as the following (test.php) <?php chmod("test1.php", 0755); mkdir("test", 0755); ?> I find that the first command is working properly which can change the permission of test1.php to 0755. But the second one can only created a folder with 0700 only. I have checked the suphp.ini and php.ini and can't find any hits to change permission. Any idea where can I fix it? Thank you! |
Have you tried something like this too?
mkdir("test"); chmod("test", 0755); |
Quote:
NO! Because the scripts also use imagejpeg() to create images. The created images also with permission 0600. Then I can't read the images on the browser too. I don't want to modify anything in the scripts because there are quite many place in the scripts use the imagejpeg, mkdir, function. In the past, I use a server without any website control panel, there is not problem for the permission issues. |
Quote:
Have you used suphp with your manual configuration too? |
Quote:
|
| All times are GMT +2. The time now is 04:12. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.