If you need to upload larger files, increase memory limits, or adjust other PHP settings, you can easily update your php.ini
configuration using cPanel. This guide will show you how to increase PHP limits like upload_max_filesize
, post_max_size
, and memory_limit
step-by-step.
Steps to Increase PHP Settings via cPanel
1. Log in to Your cPanel
Access your cPanel by visiting:
-
https://yourdomain.com/cpanel
or through your hosting provider’s client area. Enter your username and password to log in.
2. Navigate to the Software Section
Once logged in, scroll to the Software or Software/Services section on your cPanel dashboard.
3. Open the MultiPHP INI Editor
Click on MultiPHP INI Editor to access PHP configuration settings.
4. Select Your Domain or Location
From the dropdown menu, choose the domain or directory where you want to modify PHP settings.
5. Adjust PHP Directives
You will see a list of PHP directives you can modify. Common settings to increase upload limits include:
-
upload_max_filesize
— maximum size for uploaded files -
post_max_size
— maximum size of POST data allowed -
memory_limit
— maximum amount of memory a script may consume -
max_execution_time
— maximum time in seconds a script is allowed to run
For example, to increase the upload file size limit from 2M
to 64M
, replace 2M
with 64M
.
6. Save Your Changes
After making the changes, scroll down and click the Apply or Save button to update your PHP configuration.
Additional Tips
-
Use Reasonable Values: Setting limits too high may affect server performance. Adjust values based on your actual needs.
-
Units: Use
M
for megabytes orG
for gigabytes (e.g.,64M
,512M
,1G
). -
Propagation: Changes might take a few minutes to take effect.
What if I Don’t See MultiPHP INI Editor?
If the MultiPHP INI Editor is not available in your cPanel, or you cannot modify the settings, contact your hosting provider. They may adjust the php.ini
file for you or guide you to edit it manually via FTP or SSH.
Conclusion
Increasing PHP file upload limits and other resource settings via the cPanel MultiPHP INI Editor is straightforward. This allows your website to handle larger uploads and higher memory needs, ensuring smoother performance and fewer errors.