How To Change The Maximum File Size Upload?

后端 未结 2 1597
温柔的废话
温柔的废话 2021-01-27 14:50

how do you change the maximum upload file size, i want people to only be aloud to upload 25mb video files on my site, can you do that?

like in a .htaccess File But Witho

相关标签:
2条回答
  • 2021-01-27 15:07

    you need to do changes in php,ini file .. by default for upload_max_filesize, it is 32Mb and for post_max_size it is 16Mb for Apache 2.0 but you an change as per your requirement

    upload_max_filesize = desired file size.. (ie 5M) post_max_size = desired file size.. (ie 5M) )

    0 讨论(0)
  • 2021-01-27 15:25

    In your php.ini file you can modify these lines as appropriate:

    upload_max_filesize = 10M
    post_max_size = 10M
    
    0 讨论(0)
提交回复
热议问题