can any one tell me how to change the maximum file upload size?
upload_max_filesize
i got ini_set('max_upload_filesize', 8388608);
for setting it to 8M
but i need to know where to change it, I mean where is the php.ini file is located in my remote folder!
i also tried to edit .htaccess
like this
php_value upload_max_filesize 100M;
php_value post_max_size 100M;
but after that i can't open any page in my site, im getting an error message ie error 500.
Thanks in advance.