Demo Content

With the Fanky Creative Agency and Portfolio Theme, you can instantly import any demo with just one click, streamlining your setup process and allowing you to launch a fully designed website in minutes. This powerful feature imports all demo content, widgets, and theme settings effortlessly, so you can start customizing right away without the hassle of manual configuration.

Please note that MadSparrow is not responsible for content loss, database errors and such, which may happen to your WordPress install upon an incorrectly applied theme update.

To change these values on your WordPress site, you need to update your php.ini, .htaccess, or wp-config.php file, depending on your hosting environment. Here are the different methods:

1. Edit the php.ini file (If you have access)

If your hosting allows you to modify PHP settings, find or create the php.ini file in your root directory and add/update the following lines:

post_max_size = 512M
upload_max_filesize = 512M
max_input_vars = 5000
max_execution_time = 300
max_input_time = 300
memory_limit = 512M

If you are using a VPS or dedicated server, restart Apache or Nginx for the changes to take effect.

2. Edit the .htaccess file (For shared hosting)

If you don’t have access to php.ini, modify the .htaccess file in the root directory of your WordPress installation and add:

php_value post_max_size 512M
php_value upload_max_filesize 512M
php_value max_input_vars 5000
php_value max_execution_time 300
php_value max_input_time 300
php_value memory_limit 512M

3. Edit the wp-config.php file

As an alternative, you can define the memory limit directly in WordPress by adding this to wp-config.php:

define('WP_MEMORY_LIMIT', '512M');
define('WP_MAX_MEMORY_LIMIT', '512M');

However, this method only affects WordPress itself and may not override the server settings.

4. Contact Your Hosting Provider

If none of the above options work, your hosting provider may restrict access to these settings. Contact their support and ask them to update the values for you.

In rare instances, users may encounter issues uploading data to their website due to hosting restrictions that block content when limits are exceeded. If this occurs, we recommend reaching out to your hosting provider’s support team for assistance in resolving the issue.