max_upload_size issue
-
For some reason $max_upload_size was returning a negative number on my hosting. So I replaced the get_max_upload_size() function with wp_max_upload_size() and the plugin works again.
Here is my code around line 183:
//$max_upload_size = $this->get_max_upload_size(); //$max_upload_size = $max_upload_size * 1024;//convert kb to bytes $max_upload_size = wp_max_upload_size();
Not sure why that method wasn’t used before.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘max_upload_size issue’ is closed to new replies.