cfschulte373
Forum Replies Created
-
Doh! I found my problem. It turns out that the restriction didn’t start until after I set WP_ALLOW_MULTISITE to true. The Network Admin Settings page is quite a bit different than the individual sites’ settings page. There are two settings there, “Site upload space” (MB) and “Max upload file size” (KB) that are set by default to 100 and 1500 respectively. I reset those and everything works fine.
I finally figured it out by tracking down variables until I found the setting, upload_space_check_disabled.
Thanks to everyone for your suggestions!
Thanks weaversp. At least I’m not alone here. I don’t have NextCellent Gallery, but the overridden settings looks very similar.
Thanks. I’ve tried that. Just did it again just to see if anything changed.
I’ve also tried adding this to the functions.php in my active theme:
@ini_set( ‘upload_max_size’ , ’48M’ );
@ini_set( ‘post_max_size’, ’48M’);
@ini_set( ‘max_execution_time’, ‘300’ );to the functions.php in my active theme.
It looks like the variables are set correctly, but they are somehow being overridden. Is there a security feature that needs to be turned off?
Thanks for the reply.
Yes, I did edit php.ini. That’s why phpinfo() says upload_max_filesize=48M. I’ve been creating and maintaining websites for a while, but this is the first time I’ve used WP.
This is getting reset somewhere after the site loads but I can’t figure out where.