Server Requirements

Memory Limit

PHP Memory Limits is an important factor to perform tasks like Uploading Theme, Importing demo content, and writing blog posts etc. Make sure your server has an optimal environment for using Sweep theme smoothly.

Every server and hosting provider has different methods to configure PHP limits. If you are a beginner, please contact your hosting provider and ask them to you configuring your php.ini file.

Please visit this article for more information.

How to Increase the Maximum Upload and PHP Memory Limit - #back to top

You could be doing everything right, but sometimes WordPress still displays errors. Not to worry, though. It may not be your fault and there’s an easy fix. By default, WordPress has a modest limit for uploading images, videos, and other files. It’s a similar story for your PHP memory limit, which helps you run plugins and scripts. If you run a robust site full of rich content, this could be a big problem for you when those limits are reached. You may receive an upload error that looks like this: The uploaded file exceeds the upload_max_filesize directive in php.ini.

premium.wpmudev.org

Update following options in your php.ini file

max_execution_time 300

max_input_time 300

max_input_var 1000

memory_limit 512M

post_max_size 128M

upload_max_filesize 128M

Last updated