• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

plesk windows wordpress upload max size

duupje

New Pleskian
For the WP domains, the max allowed upload size for files is 8mb.
I want to increase this limit to e.g. 64mb.
How is this done? normally you can add a max_upload_size = 8M or something in a php.ini but this does not seem to work.

At the plesk documentation i can't find anything about this.
Do you know how to change the upload size on plesk win?

thx.
 
Thanks but still having a problem with this. I’ve found the file. Was in there:
<requestLimits maxAllowedContentLength="2147483647" />
I changed that line in
<requestLimits />
And restarted IIS. Back in WP upload file, I still see a limit of 8M.
 
You had try the php method to increase your size limitation issues, here I’m disclosing another two methods which can resolve your query

1- THEME FUNCTION FILE= I had seen in many cases that just my adding the illustrated code, you can resolve your file limitation issue.


@ini_set( ‘upload_max_size’ , ‘64M’);

@ini_set( ‘post_max_size’, ‘64M’);

@ini_set( ‘max_execution_time’, ‘300’);



2- Htaccess Method- Some people also had tried to increase their file limitation problem by modifying file in the root directory. Create your .htaccess file in the root folder and add the illustrated code.


Php_value upload_max_filesize 64M

Php_value post_max_size 64M

Php_value max_execution_time 300

Php_value max_input_time 300
 
Back
Top