Php Video Upload Script

前端 未结 2 825
傲寒
傲寒 2021-01-03 16:22

I am trying to allow users to upload videos via this form

       
2条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-03 17:10

    In php.ini Find and update as following:

    post_max_size = 8M
    
    upload_max_filesize = 2M
    
    max_execution_time = 30
    
    max_input_time = 60
    
    memory_limit = 8M
    
    Change to:
    
    post_max_size = 750M
    
    upload_max_filesize = 750M
    
    max_execution_time = 5000
    
    max_input_time = 5000
    
    memory_limit = 1000M
    

提交回复
热议问题