Just Host Web Hosting Help
FastCGI for PHP
This article has been deprecated.
As part of our ongoing effort to provide the most secure and up to date experience on our hosting platforms, older versions of PHP are no longer supported. This includes the FastCGI option, which will no longer be available through our servers.
FastCGI for PHP makes all your PHP applications persistent. There is no per-request startup and initialization overhead. This makes possible the development of applications that would otherwise be impractical within the CGI paradigm (e.g. a huge PHP script or an application that requires a connection to one or more databases).
Benefits:
- PHP scripts will run faster. The PHP interpreter is loaded into memory rather than calling from storage for every hit, having the ability to improve performance of your scripted site.
- The load on the Server Resources can be lessened with the use of FastCGI. Since the server does not have to load the PHP interpreter for each hit, you will be able to accommodate a higher traffic site without exceeding your CPU quota. We recommend testing your site with and without FastCGI
- No modifications to your existing code are required for most sites, however, some sites will need code modifications.
Potential Problems:
- You will only have one php.ini file available for all subdirectories (/home/USERNAME/public_html/php.ini). This is necessary to help optimize the website code as much as possible. If you need multiple php.ini files to accommodate different scripting needs, you can disable FastCGI for PHP on any of your subdirectories while leaving the rest of the account enabled for performance.
- There can be a few minutes delay in any updates you make to your PHP environment (ie, php.ini changes). Since your php.ini is loaded into memory for greater speed, every hit does not re-read it from storage.
How to Enable PHP FastCGI
- Log in to your Just Host cPanel account.
- Under Programming click PHP Config.
- Select PHP5.4 (FastCGI)
- Click Save Changes.
Alternately, if you prefer to manually edit your .htaccess file:
To enable FastCGI on your account, simply add "AddHandler fcgid-script" and the extension you want into your .htaccess file.
AddHandler fcgid54-script .php
PHP is already configured to work right away.
For other programming languages, you are required to use a dispatch file. (A dispatch file is a file which loads an application into memory. This is included as part of your application. There may be several dispatch files depending on what you want, such as fast-cgi.)
Note: Once you enable fastcgi, your site will only use Just Host's php.ini settings. If you have a custom php.ini file, it will not be used.