Quantcast
Channel: Tutorials — LowEndTalk
Viewing all articles
Browse latest Browse all 1028

correct permission of files after suphp

$
0
0

`#!/bin/bash

For some stupid reason, cPanel screws up the directory permissions.

chmod 755 /opt/suphp
find /opt/suphp -type d -exec chmod 755 {} \;

Ensure that the permissions are sane and won’t cause a 500 error.

for user in /bin/ls /var/cpanel/users; do

chown -R ${user}:${user} /home/${user}/public_html
chmod 755 /home/${user}/public_html
find /home/${user}/public_html -name “*.php” -exec chmod 644 {} \;
find /home/${user}/public_html -type d -exec chmod 755 {} \;

Comment out Joomla-installed PHP overrides that are not compatible with suPHP.

find /home/${user}/public_html -name ‘.htaccess’ -exec sed -i -e ‘s/php_value/#php_value/’ {} \;
find /home/${user}/public_html -name ‘.htaccess’ -exec sed -i -e ‘s/php_flag/#php_flag/’ {} \;
done

Delete former session variables due to suPHP no longer having permission to them.

`rm -rf /tmp/sess_*``


Viewing all articles
Browse latest Browse all 1028

Trending Articles