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.
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.
; http://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.
; http://php.net/post-max-size
post_max_size = 50M
What am I missing here?
-
This reply was modified 9 years, 4 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.
Hi!
Does this only happen with that theme? Are there any active plugins? Is there an error log available?