简体   繁体   中英

File upload not working more than 10mb in AWS Linux 2 server?

When I try to upload a video more than 10mb server show error of 502 I have changed in the php.ini file also and phpinfo also reflect the change

    post_max_size 40M
    upload_max_filesize 35M
    max_execution_time 1200
    max_input_time 
    <?php
    error_reporting(E_ALL);
    $target_dir = "uploads/";
    $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);

    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
    echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
        } else {
            echo "Sorry, there was an error uploading your file.";
        }

    ?>

    <!DOCTYPE html>
    <html>
    <body>
    <form action="upload.php" method="post" enctype="multipart/form-data">
        Select image to upload:
        <input type="file" name="fileToUpload" id="fileToUpload">
        <input type="submit" value="Upload Image" name="submit">
    </form>

    </body>
    </html>

Do you use API Gateway? It has 10Mb limitation on payload size. Please see:

https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM