All servers having SuPHP installed for added security

The main features of SuPHP that you should be aware of is:

  1. SuPHP does not allow files/folders to run where they have group and world write permissions; only the account owner can write to files/folders. This forces all users to ensure that their files/folders have correct permissions and prevents hackers uploading malicious content into vulnerable folders.
  2. SuPHP allows all PHP scripts to be run under the user account ownership, instead of running under the €œnobody€ user. This is particurly helpful in tracking down scripts which send out SPAM as the €œnobody€ user.

Most user accounts will not notice any difference. However a number of user accounts will have some problems/errors which can be easily resolved using this command in terminal €œif you dont have root access try to ask your System Administrator€


for files:
find . -name *.php -type f -exec chmod 644 {} ;
or
find . -type f -exec chmod 644 {} ;
and
for folders:
find . -type d -exec chmod 755 {} ;

Var dette svaret til hjelp?

Relaterte artikler

Supporteres php_flag i htaccess filen?

Våre servere kjører suPHP for ekstra sikkerhet. Dette betyr at alle php_flag eller...

Hva gjør SuPHP?

It runs all PHP scripts as the user in whose account they reside €“ rather than running all...

Differences between suPHP and "regular php"

Regular PHP installation on a web server runs as the user nobody and it doesn’t require the...

Can I use the php_value directives in .htaccess files with suPHP?

suPHP does not support the php_value/php_admin_value directive known by mod_php to parse...

Troubleshooting Internal Server Errors (Error 500):

Whenever an internal server error occurs, the error will be added to the Error Log in cPanel....