I have a problem, I m using a shared Linux server, I want to upload file of size around 10-100MB. I don't have access to php.ini file.
ini_set('post_max_size', '64M');
ini_set('upload_max_filesize', '64M');
It didn't works on server.
Therefore I tried another way using .htacess by creating a file on root directory and placing the following code
php_value upload_max_filesize 40M
php_value post_max_size 42M
But it gives my 500 Internal Server Error.
Is there something wrong I am doing?
Thanks