Hi, I'm trying to make an upload page so that a user can upload files into an archive folder for this organization... and I've run into a couple of problems...
1) When I try to upload a big enough file, I get
"Error 103 (net::ERR_CONNECTION_ABORTED): Unknown error."
2)When it does actually go through I get this error:
"The requested resource
/upload.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit."
so, I googled this problem and people suggested to add things to .htaccess file, and I did... here is what I put down:
php_value upload_max_filesize 200M
php_value post_max_size 200M
php_value max_execution_time 800
php_value max_input_time 800
and that didn't help solve the problem. What should I do?
1) When I try to upload a big enough file, I get
"Error 103 (net::ERR_CONNECTION_ABORTED): Unknown error."
2)When it does actually go through I get this error:
"The requested resource
/upload.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit."
so, I googled this problem and people suggested to add things to .htaccess file, and I did... here is what I put down:
php_value upload_max_filesize 200M
php_value post_max_size 200M
php_value max_execution_time 800
php_value max_input_time 800
and that didn't help solve the problem. What should I do?
Comment