Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author bhaldie

    (@bhaldie)

    mDocs upload limit is based on the two methods you mentioned, so there is something else causing the error.

    Can you tell me does the process complete or just hang forever?

    Thread Starter antdevine

    (@antdevine)

    The percentage goes to about 97% then just ends and doesn’t show an error message.

    Plugin Author bhaldie

    (@bhaldie)

    It may have to do with the max execution time of a php script.

    To test put this at the top of the mdocs-functions.php file:

    ini_set('max_execution_time', 300); //300 seconds equals 5 minutes

    or you can add it right to the php.ini file

    max_execution_time = 300

    Thread Starter antdevine

    (@antdevine)

    I have now tried the plugin on wamp instead of my server just so I could mess around without breaking anything. I changed the php.ini file to the following and restarted WAMP and all works great now:
    post_max_size = 750M
    upload_max_filesize = 750M
    max_execution_time = 5000
    max_input_time = 5000
    memory_limit = 1000M

    Plugin Author bhaldie

    (@bhaldie)

    Let me know if it works on your production server too.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Max upload limit?’ is closed to new replies.