upload large files using php, apache

后端 未结 5 743
再見小時候
再見小時候 2020-11-27 07:25

I want to upload files of around 150 MB using PHP and Apache server. With my code i can upload upto 5MB



        
5条回答
  •  没有蜡笔的小新
    2020-11-27 07:55

    If you are using a shared server and want to upload large files, create a php.ini file and write the following code into it and put it in the folder where you are uploading the files, i.e. the destination of your uploaded files.

     upload_max_filesize = 150M
     post_max_size = 150M
     memory_limit = 512M
     max_execution_time = 1200 
    

提交回复
热议问题