Fine-Tuning PHP Performance
Certain web applications, especially complex ones like e-commerce platforms or media-heavy sites, may require higher resource limits than the default PHP settings provide. The FREAKHOSTING Web Control Panel includes a built-in php.ini editor that allows you to modify these core parameters without needing access to the server’s filesystem.Difficulty
Intermediate
Time
5 Minutes
Accessing the php.ini Editor
Navigate to Developer Tools
Log in to the Web Panel and go to Advanced -> Developer tools.
Critical Settings to Optimize
You can search for the following variables in the editor to increase your site’s performance:| Variable | Description | Recommended Value |
|---|---|---|
memory_limit | The maximum amount of RAM a script can use. | 256M or 512M |
upload_max_filesize | The maximum size of a single uploaded file. | 64M or higher |
post_max_size | The maximum size of all data sent in a form. | Should be equal to or higher than upload_max_filesize. |
max_execution_time | How long a script can run before being stopped. | 120 or 300 seconds |
display_errors | Shows/hides error messages on your site. | Off for production, On for debugging. |
How to Apply Changes
- Find the line containing the variable you wish to change.
- Modify the value (e.g., change
upload_max_filesize = 2Mtoupload_max_filesize = 128M). - Click the Save button.
- The webserver will refresh, and the new settings will take effect immediately.
Verification
To verify that your changes have been applied:- Create a blank file in your File Manager called
info.php. - Add the following line to the file:
<?php phpinfo(); ?> - Visit
yourdomain.com/info.phpin your browser. - Search for the variables you changed to confirm the new values are active.
Need Extra Help?
If you encounter any issues, our support team is ready to assist:- Live Chat: Quick assistance via our website.
- Support Ticket: Open a Ticket
- Discord: Join our Community
Last Updated: January 2026 | FREAKHOSTING: Performance First Web Hosting.