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
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