Include this line in an .htaccess file in the same directory as the script:
php_value memory_limit 512M
The above line will modify the memory_limit to 512MB for all scripts in the same directory as the .htaccess file. Replace the number 512 with an appropriate megabyte value that your script requires. The default memory_limit value on our servers is set to 128MB, and a successful modification of the memory limit will show in your PHP info file.
If you are not sure how to proceed or are encountering issues with this, please do not hesitate to open a support ticket to our Technical Support Department.
Our default memory_limit value is 128MB, this can be raised by modifying your .htaccess file.
Include this line in an .htaccess file in the same directory as the script:
php_value upload_max_filesize 128M
The above line will modify the upload_max_filesize to 128MB for all scripts in the same directory as the .htaccess file. Replace the number 128 with an appropriate megabyte value that your script requires. The default upload_max_filesize value on our servers is set to 32MB, and a successful modification of the upload_max_filesize limit will show in your PHP info file.
If you are not sure how to proceed or are encountering issues with this, please do not hesitate to open a support ticket to our Technical Support Department.
Our default upload_max_filesize value is 32MB, this can be raised by modifying your .htaccess file.
Include this line in an .htaccess file in the same directory as the script:
php_value post_max_size 128M
The above line will modify the post_max_size to 128MB for all scripts in the same directory as the .htaccess file. Replace the number 128 with an appropriate megabyte value that your script requires. The default post_max_size value on our servers is set to 32MB, and a successful modification of the post_max_size limit will show in your PHP info file.
If you are not sure how to proceed or are encountering issues with this, please do not hesitate to open a support ticket to our Technical Support Department.
Our default post_max_size value is 32MB, this can be raised by modifying your .htaccess file.
To view the server configuration information for your website using PHP, insert the following code into a file (i.e. phpinfo.php):
<?php phpinfo(); ?>
Then open the file in your browser. For example if you had uploaded it in your public_html directory and your domain is yourdomain.com then you should be browsing yourdomain.com/phpinfo.php.
If you had done all the steps correctly, you should be seeing a page like this:
If you are not sure with any of the steps detailed within this guide, please do not hesitate to open a support ticket to our Technical Support Department.
The default PHP version on our servers is PHP 5.4 (native).
To switch to a different PHP version, simply follow these steps:
- Log into cPanel of the account that you want to change the PHP version for.
- If you are using the “x3″ theme, scroll to the “Software / Services” section. If you are using the “paper_lantern” theme, scroll to the “Software” section.
- Click on “Select PHP Version”.
- You will be brought to a page that shows something like the following:

- From the dropdown menu, select from PHP versions 5.2, 5.3, 5.4, 5.5, 5.6 and 5.4 (native), then click “Set as current”. Please note that PHP version 4.4 and 5.1 have both been disabled for security reasons.