
1st September 2009, 23:05
|
|
HowtoForge Supporter
|
|
Join Date: Mar 2009
Posts: 63
Thanks: 11
Thanked 3 Times in 3 Posts
|
|
Wordpress, permissions, mod-php, suphp
Hello,
On one of my sites I'm running Wordpress. It is also configured with an FTP user.
Wordpress has the ability to update files from its admin panel. But here's the problem: suPHP is much slower than Mod_PHP. Mod_PHP is much faster, but it runs everything as user www-data! So when using mod-php I have to chmod the dir to www-data:www-data and everything runs fast BUT I can't update the software and I can't login with FTP, but with Suphp the site is so slow that it actually locks down....
Guys, I need your advice on this! What should I do?
Thanks!
Mark
Last edited by voidzero; 10th December 2009 at 15:24.
|

3rd September 2009, 10:49
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,066
Thanks: 697
Thanked 4,248 Times in 3,260 Posts
|
|
Use php-fcgi + suexec.
|

3rd September 2009, 13:01
|
|
HowtoForge Supporter
|
|
Join Date: Mar 2009
Posts: 63
Thanks: 11
Thanked 3 Times in 3 Posts
|
|
Well that's still using php-cgi and it's still too slow!
But I have solved it in a different way: by using ACL.
The webroots of these sites are set to user:group www-data:www-data with an ACL entry u:web29:rwX,g:client5:rX and it includes a default.
What I did was, I created a script to do all of this for me hourly through a cronjob. Here it is, I hope it will benefit others with the same problem:
Code:
#!/bin/bash
# Fix permissions for webroots that are using mod-php and wordpress.
chown -R www-data:www-data /var/www/site.org/web
setfacl -bR /var/www/site.org/web
setfacl -Rm u:web29:rwX,g:client5:rX,d:u:web29:rwX,d:g:client5:rX /var/www/site.org/web
# Repeat this for all the sites that need it. Crontab it for your own convenience.
# New files will automagically inherit these permissions.
|

3rd September 2009, 13:05
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,066
Thanks: 697
Thanked 4,248 Times in 3,260 Posts
|
|
Quote:
|
Well that's still using php-cgi and it's still too slow!
|
No, it is not using php as cgi if you selected fcgi. How do you know that its using php-cgi, as phpinfo is always showing identical results for cgi and fcgi. if you want to test it, you will have to check it with ps aux. fcgi is as fast as mod_php, you can test it with apache bench. Also be aware that you have to wait a minute until you test again.
So the solution is still to use php-fcgi, you hack is not nescessary and its highly recommended to not use it!
To further speed up php scripts, intall eaccelerator or xcache.
|

5th September 2009, 14:40
|
|
HowtoForge Supporter
|
|
Join Date: Mar 2009
Posts: 63
Thanks: 11
Thanked 3 Times in 3 Posts
|
|
Quote:
Originally Posted by till
No, it is not using php as cgi if you selected fcgi. How do you know that its using php-cgi, as phpinfo is always showing identical results for cgi and fcgi. if you want to test it, you will have to check it with ps aux. fcgi is as fast as mod_php, you can test it with apache bench. Also be aware that you have to wait a minute until you test again.
|
Just to be sure.. we are talking about Fast-CGI here?
Quote:
Originally Posted by till
So the solution is still to use php-fcgi, you hack is not nescessary and its highly recommended to not use it!
To further speed up php scripts, intall eaccelerator or xcache.
|
I will try that out. I was using memcache/memcached, which one would you recommend out of the two you mentioned? Thanks for the help - to me this part of ispconfig is still a bit new.
|

6th September 2009, 19:14
|
|
HowtoForge Supporter
|
|
Join Date: Mar 2009
Posts: 63
Thanks: 11
Thanked 3 Times in 3 Posts
|
|
Quote:
Originally Posted by till
No, it is not using php as cgi if you selected fcgi. How do you know that its using php-cgi, as phpinfo is always showing identical results for cgi and fcgi.
|
From top:
14023 web28 20 0 123m 53m 26m S 6.7 2.6 0:03.26 /usr/bin/php-cgi
This is what I meant with 'still using cgi' - I selected FastCGI so that's why I wanted to make sure that we are talking about the same thing.. are we?
|

7th September 2009, 08:56
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 32,066
Thanks: 697
Thanked 4,248 Times in 3,260 Posts
|
|
Quote:
|
Just to be sure.. we are talking about Fast-CGI here?
|
Yes.
Quote:
From top:
14023 web28 20 0 123m 53m 26m S 6.7 2.6 0:03.26 /usr/bin/php-cgi
This is what I meant with 'still using cgi' - I selected FastCGI so that's why I wanted to make sure that we are talking about the same thing.. are we?
|
Thats the binary which is used by fastcgi and cgi, ss the above line does NOT maen that it is running as cgi!
Ify ou want to know if it is running as cgi or fastcgi, just look in the vhost configuration file.
Quote:
|
I will try that out. I was using memcache/memcached, which one would you recommend out of the two you mentioned? Thanks for the help - to me this part of ispconfig is still a bit new.
|
memcache is someting different, it is a fast object cache and does not speed up the processing of php code.
|
| Thread Tools |
|
|
| Display Modes |
Hybrid 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 06:32.
|
Recent comments
1 day 8 hours ago
1 day 10 hours ago
1 day 22 hours ago
2 days 1 hour ago
2 days 5 hours ago
2 days 11 hours ago
2 days 21 hours ago
2 days 23 hours ago
3 days 7 hours ago
3 days 8 hours ago