php file size limit

benyamen

New Member
I trying to use PHP's file upload abilities, but when I try to upload certain file sizes (9MB for example) it's not going through. Smaller files goes fine.Even when I set error reporting to be on "E_ALL" and try and upload a bigger file. I don't see any error message.I have tried setting these lines at the top of the PHP script that uploads the files but still no go:\[code\]ini_set('memory_limit', '96M');ini_set('post_max_size', '96M');ini_set('upload_max_filesize', '96M');\[/code\]
 
Back
Top