To answer your question faster, you can search our knowledgebase articles before submitting a ticket.
Knowledgebase

How to change php settings using php.ini file

Posted by on 12 March 2022 06:16 AM
You can change the php settings for a site or script using php.ini as follows:

1.Please login into your Web hosting panel, and open the "File Manager".

2. Go to root folder ( public_html ) and seek for php.ini file, if there is no such file so create one else edit exists file

3. set the php settings in php.ini as follows:


upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 3000
memory_limit = 512M

and save the file with changes

notes:
1. each setting should be in separated line
2. changes the settings values as you need




Comments (0)