• Everything I made is failing. I tried so much things and aways there is same message. I uploaded a file and the message is popping out – The uploaded file exceeds the upload_max_filesize directive in php.ini. I edit the file by writing:

    upload_max_filesize = 64;
    post_max_size = 32;
    save_mode = off;
    

    I also write:

    upload_max_filesize = 64;
    post_max_size = 32;
    max_execution_time = 300;
    

    also write:

    upload_max_filesize = 64;
    post_max_size = 32;
    php_value max_execution_time 500;
    php_value max_input_time 500;
    

    I don’t now what to do now:

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    You need to make that 64M if you want it to be 64 megabytes and post size and file size should be the same.

    Yes, you’ve just missed the “M” after the number.

    Example of my php.ini file:
    ===============================
    [PHP]

    memory_limit = 256M
    post_max_size = 256M
    upload_max_filesize = 64M
    max_execution_time = 750
    ===============================

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tthe uploaded file exceeds the upload_max_filesize directive in php.ini’ is closed to new replies.