• I have xampp and WordPress and I wanted to build a test site with the realestate pro template(theme). I was able to download it but when I tried to install it in wordpress it gave me this error,
    Warning: POST Content-Length of 9451545 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
    What should I do now?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey, I think you shouldn’t post the same topic twice in the forum.

    Anyway, I had commented in the other post you did, but I will say the same thing here:

    8388608 bytes is 8M, the default limit in PHP. Update your post_max_size in php.ini to a larger value.

    Thread Starter ChuckH58

    (@chuckh58)

    Sorry, the new format for this website threw me off. Anyway, I did change the limit to 50M and it still did not work, This is how my php.ini(development) looks:

    
    ; Whether PHP will read the POST data.
    ; This option is enabled by default.
    ; Most likely, you won't want to disable this option globally. It causes $_POST
    ; and $_FILES to always be empty; the only way you will be able to read the
    ; POST data will be through the php://input stream wrapper. This can be useful
    ; to proxy requests or to process the POST data in a memory efficient fashion.
    ; https://php.net/enable-post-data-reading
    ;enable_post_data_reading = ON
    
    ; Maximum size of POST data that PHP will accept.
    ; Its value may be 0 to disable the limit. It is ignored if POST data reading
    ; is disabled through enable_post_data_reading.
    ; https://php.net/post-max-size
    post_max_size = 50M
    

    What am I missing here?

    • This reply was modified 7 years, 10 months ago by Jose Castaneda. Reason: added backticks for code

    Hi again.

    Is it giving your the exact same error?

    Try changing the upload_max_filesize value to 50M, too.

    And don’t forget to restart your Apache server after making the changes.

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi!

    Does this only happen with that theme? Are there any active plugins? Is there an error log available?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can not load the theme’ is closed to new replies.