• israel098

    (@israel098)


    How can I know the maximum video file size that a user can send me through a form in my website

    • This topic was modified 5 years ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic
Viewing 1 replies (of 1 total)
  • American2020

    (@american2020)

    I’m not 100% sure this is the answer, but I believe it’s related to the limit set on your PHP configs on your host.

    To know the limit, try uploading a file with the name “phpinfo.php” to your site, with this inside:

    <?php
    echo "Current PHP version: " . phpversion();
    echo "<br/>*****<br/>";
    phpinfo();
    ?>

    Then visit the location of that file on your browser. On the page you will see all the information related with the PHP configs. You want to look for the line with post_max_size

    If I’m not mistaken, that’s the limit.

Viewing 1 replies (of 1 total)
  • The topic ‘Form to receive video files’ is closed to new replies.