简体   繁体   中英

Captiva Wordpress theme Error

I'm using the Windows 7 operating system and have installed WordPress on my localhost. I'm using the XAMPP bundle. I want to create a commerce site in WordPress. I chose the captiva theme for this. However, when I install the Captiva theme, it shows the following error:

Warning: POST Content-Length of 36013235 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
Are you sure you want to do this?

Please try again.

What is the mistake? How can I fix this issues?

You need to increase one of the server's configuration option. You can control these using .htaccess, like so:

#set max post size
php_value post_max_size 50M

If you do not use the .htaccess file, then you can alway set it in php.ini file by changing this line:

post_max_size = "50M"

Unfortunatelly it is not posible to change that value by ini_set

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM