Hi, I’m having problems uploading the demo themes to my site.
I already edited the phprc within my host (Dreamhost) to increase memory limits and the support is telling me the configuration should work, I put this code in the phprc file
upload_max_filesize = 100M
post_max_size = 105M
max_execution_time = 360000
max_input_time = 360000
memory_limit = 512M
This worked before for the site I have in the parent domain that is using php 7.0, but when I created a sub-domain and tried to emulate the same process I just can’t upload the demo theme I want, this new site is using php 7.2 so I dont know if is a problem with the php version.
Also, I included this configuration within the wp-config.php
define(‘max_execution_time’, ‘360000’);
define(‘WP_MEMORY_LIMIT’, ‘512M’);
ini_set(‘post_max_size’, ’64M’);
ini_set(‘upload_max_filesize’, ’64M’);
Same configuration for both site but for:
http://www.domain.com -> the configuration is working
http://www.sub.domain.com -> the same configuration is not working
Any help, please