Unfortunately, you will never upload a file that size until you change both of these limits in php.ini and restart the webserver so they take effect.
post_max_size = 512M
upload_max_filesize = 512M
Im sure after that, you will run into a timeout issue as well, so then you will need to change at least the first and then the second listed settings below as php is going to timeout.
max_execution_time
max_input_time
You can find your current settings in phpinfo in the admincp, if its a vhost, they will never set it that high for you anyways, you'll need a VPS/Dedicated server.
|