Setting PHP Environment Variables

To set custom PHP Environment Variables such as register_globals, display_errors, max_execution_time, etc you will need to do so in a .htaccess file instead of a custom php.ini. We've found that this is a much better solution as any settings in a .htaccess file will affect directories and files under that folder as well instead of needing to put a custom php.ini in each and every folder.

You'll need to make changes to the variables using the "php_value" and "php_flag" directives and here are a few examples of what you will place into your .htaccess file:

php_flag display_errors off
php_flag log_errors off
php_value max_execution_time 3000
php_value memory_limit 128M
php_value upload_max_filesize 256M
php_value post_max_size 256M

Essentially anything that you can turn ON/OFF you'll want to use php_flag and anything where you will set a specific value you'll want to use php_value. If you have any questions or issues with this by all means feel free to open a support ticket and we'll be more than happy to help.

If you can not see the .htaccess file in the cPanel file manger ensure show hidden files is enabled by clicking the gear (settings) in the upper right and checking the box. If this still does not show the file, you will need to create it.

  • cpanel, VPS Hosting, dns, Domain, Dedicated Server, 99rs hosting, Hosting India
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

I lost or forgot my cPanel or WHM password - how can I reset it?

Resetting your cPanel password and finding your cPanel username is easy and can be handled...

Ordering Hosting - Domain Registration and Transfer Options

When ordering a hosting plan you will be given 3 options:   Register a new domain. Transfer...

PHP - Cannot modify header information - headers already sent by ...

This message means that your PHP script is sending data to the web browser before the headers and...

Setting up Private Nameservers on a domain registered with Sun Server Hosting

The steps below outline the process for setting up private nameservers on a domain registered...

MySQL Stored Procedures

All clients can use MySQL stored procedures and routines on their web hosting accounts. To use...