How can I change PHP values (limits, execution time, errors) using "MultiPHP INI Editor" (Editor Mode)?

 
Editor Mode, which is the most direct and flexible way to configure PHP when you need to paste specific blocks of code. If "Basic Mode" does not show the option you need or if you prefer to manage all the code at once, follow these steps:
 

1. Log in to your cPanel with your credentials.

 

 

2. Locate the Software section and click on MultiPHP INI Editor.

 

 

3. At the top, click on the tab that says Editor Mode.

 

 

 

4. In the dropdown menu, select the domain or subdomain you wish to configure.

 

 

 

5. A text box will open with your current configuration. You can delete what is not needed or directly paste the values you require:

 

 

6. Click the blue Save button located in the top right corner. That’s it! The changes will take effect immediately.

A configuration example would be:
 
max_execution_time = 300
memory_limit = 256M
post_max_size = 64M
upload_max_filesize = 64M
display_errors = Off
 
 
Notes:

• Avoid duplicate lines: When pasting new code, make sure there aren't two lines configuring the same thing (for example, two instances of memory_limit). If there are duplicates, the server usually only follows the last line written, which can cause confusion if you try to raise a limit and a line further down lowers it again.

• Using the semicolon (;) for comments: If you want to "turn off" a directive without deleting it for future use, place a semicolon (;) at the beginning of the line. The server will ignore everything after the ;. This is very useful for leaving notes such as: ; Increased for site migration on 04/20/26.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to create a Cron Job?

  A cron job is simply an automated task that runs on a server at specific time intervals. You...

How to create and configure your .htaccess file?

  The .htaccess file is a powerful tool for managing your site's security and redirection....

How can I assign different PHP versions to my domains?

  If you manage multiple projects on a single account and need each domain or subdomain to run...

How can I change PHP values (limits, execution time, errors) using "MultiPHP INI Editor" (Basic Mode)?

  Here we will explain how to transcribe and adjust these values using the "MultiPHP INI Editor"...

How can I force the use of SSL (HTTPS) via the .htaccess file?

  To ensure your visitors always browse securely, you can automate the HTTPS redirection by...