• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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