Directory "/" is writeable by group

maziar

New member
Joined
Dec 10, 2014
Messages
6
hi every one
i have directadmin and i have a problem that directadmin does not execute my php files
that i enabled suphp by un commenting :

#AddHandler x-httpd-php .php .php4 .php3 .phtml

on this file : /etc/httpd/conf/extra/httpd-suphp.conf

and i read that i should run this script for that directadmin fix directory permission's :

/usr/local/directadmin/scripts/set_permissions.sh all


,,,,,



now i have a problem , php is executing but i have this error on web site's


Internal Server Error

Directory "/" is writeable by group
suPHP 0.7.1


------------------

please help me to solve this problem
 
hi every one
i have directadmin and i have a problem that directadmin does not execute my php files
that i enabled suphp by un commenting :

#AddHandler x-httpd-php .php .php4 .php3 .phtml

on this file : /etc/httpd/conf/extra/httpd-suphp.conf

and i read that i should run this script for that directadmin fix directory permission's :

/usr/local/directadmin/scripts/set_permissions.sh all


,,,,,



now i have a problem , php is executing but i have this error on web site's


Internal Server Error

Directory "/" is writeable by group
suPHP 0.7.1


------------------

please help me to solve this problem




there is no one to help me ?
 
there is no one to help me ?

and this is suphp log :

Code:
[root@at2 html]# tail -f /var/log/suphp.log
[Thu Dec 11 11:42:56 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:42:57 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:42:57 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:05 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:07 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:07 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:08 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:08 2014] [warn] Directory "/" is writeable by group
[Thu Dec 11 11:43:10 2014] [warn] Directory "/" is writeable by group
 
I wonder why your "/" is writeable by group. Please try:
Code:
chmod 755 /
 
As I already stated and Sellerone confirmed too, you need to build php via custombuild to get things correct.
Only uncommenting a line in a file is not enough because your php is still build in cli mode instead of cgi mode which you need for suphp.
 
Back
Top