
31st March 2007, 11:59
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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.
|

31st March 2007, 12:23
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,872
Thanks: 689
Thanked 4,182 Times in 3,201 Posts
|
|
Quote:
|
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.
|
This depends onyl on your PHP script and not on SuPHP, use the chmod function in PHP to change the mode to suit your needs.
|

31st March 2007, 14:43
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
|
Originally Posted by till
This depends onyl on your PHP script and not on SuPHP, use the chmod function in PHP to change the mode to suit your needs.
|
Hi Till,
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!
|

31st March 2007, 15:07
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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!
|

1st April 2007, 12:37
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,872
Thanks: 689
Thanked 4,182 Times in 3,201 Posts
|
|
In the php chmod command, you should always use chmod(filesorpath, 0755) and not chmod(filesorpath, 755), if the 0 is missing, the command might fail or set wrong permissions.
Quote:
|
Which configuration file should I modify it to fix this problem.
|
I think there are only 2 possible files. The suphp.ini and the php.ini file where such a config value might be set.
|

1st April 2007, 13:15
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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!
|

1st April 2007, 14:25
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,872
Thanks: 689
Thanked 4,182 Times in 3,201 Posts
|
|
Have you tried something like this too?
mkdir("test");
chmod("test", 0755);
|

1st April 2007, 14:37
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
|
Originally Posted by till
Have you tried something like this too?
mkdir("test");
chmod("test", 0755);
|
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.
|

1st April 2007, 14:40
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,872
Thanks: 689
Thanked 4,182 Times in 3,201 Posts
|
|
Quote:
|
In the past, I use a server without any website control panel, there is not problem for the permission issues.
|
But this has nothing to do with the fact of using a website controlpanel or not. ISPConfig creates just a apache config file for you, nothing more.
Have you used suphp with your manual configuration too?
|

1st April 2007, 15:24
|
|
Member
|
|
Join Date: Mar 2007
Posts: 43
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
|
Originally Posted by till
But this has nothing to do with the fact of using a website controlpanel or not. ISPConfig creates just a apache config file for you, nothing more.
OK! In fact, ISPConfig is a great tools. But how can we fix the permission problem? But I use a server without any control panel, the scripts can set the permission correctly with the default "apache" user.
Can ISPConfig integrate with suPHP with an option for us to select it when we are installing ISPConfig.
I don't know how to fix the existing permission problem with suPHP.
Besides, I don't know whether I have setup it correctly or not. But I follow the perfect installation of linux in this website and the latest suPHP document here.
Have you used suphp with your manual configuration too?
|
I didn't modify any configuration which is generated by suphp.
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 05:18.
|
Recent comments
1 day 5 hours ago
1 day 7 hours ago
1 day 9 hours ago
1 day 10 hours ago
1 day 12 hours ago
1 day 13 hours ago
1 day 14 hours ago
2 days 6 hours ago
2 days 7 hours ago
2 days 11 hours ago