Upload large files to FTP with PHP

前端 未结 2 1610
孤独总比滥情好
孤独总比滥情好 2021-01-22 05:53

I\'m trying to upload large files with php to an ftp server. I can upload small files, but I\'m having trouble uploading larger files. I have looked it up and found that I nee

2条回答
  •  余生分开走
    2021-01-22 06:51

    as rightly pointed out by @AngeDeLaMort, you cannot use shorthand notation to set configuration values outside of PHP.ini.

    reference : Changing upload_max_filesize on PHP

    try doing it this way.

    create .htaccess file in your root directory and add the following.

    php_value upload_max_filesize 50M
    php_value post_max_size 50M
    php_value max_execution_time 200
    php_value max_input_time 200
    

提交回复
热议问题