hi guys
i have a form that upload audio files
these files maybe the size of them is more that 10mb
how can i force the php to upload these files
because when i try it's give me n error that the size is huge
create a file and give it no name, just the extension: .htaccess
php_value max_execution_time 1200 // seconds php_value memory_limit 200M // MB php_value post_max_size 200M // MB php_value upload_max_filesize 200M // MB LimitRequestBody 0
can i use it in reguler files or it cann't used just .htaccess file
place the .htaccess file in the same dir as the script that's handling the uploads, but BE WARNED:
This affects all files in that dir, along with all files in any sub directories within that directory.
when i write an .htaccess with these data
its give me 500 internal server Error
i think because of the premession
The .htaccess file soultion doesn't work for me either.
I can upload small files ok, but anything else hangs the browser and comes back with a 'page cannot be displayed' message.
Any ideas?