phpSuExec or suPHP

PHPsuExec (pronounced sue-eksek) is a more secure environment for executable files. SuPHP is the same idea, but a more recent product specifically for PHP. All of our shared and dedicated servers have both PHPsuExec and suPHP. Only dedicated has the option to remove these.

This secure environment makes 777 file permissions unacceptable, and makes php.ini necessary.

To verify your server is using suPHP, create a simple 'php info' script.
Create a file named 'phpinfo.php' in the public_html folder of your site and insert the following code:

<?php
phpinfo();
?>

Load the file in your browser and in the top section find the line 'Server API'.
If it shows 'CGI' then your account is on a server with suPHP.
If it shows 'apache' then you are NOT on a suPHP server.

You should also know our servers normally have PHP running as CGI (not Apache).

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to get your php.ini path with SuPHP

.htaccess code Edit your public_html/.htaccess file and enter the appropriate code on a new...

What is php.ini

The php.ini file is a special file for suPHP (pronounced sue-p-h-p). The php.ini file is where...

PHP Memory limit error

Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 23456789 bytes)...

How do I clear my browser cache

Each time you access a file through your web browser, the browser caches it (stores it). In...

URL redirect methods, forwarders

Go to cPanel and click Redirects. This is also known as 301 redirect. Search engines, like...