fireburner69
Programmer
echo "<pre>";
print_r($_FILES);
?>
<form action="a.php" enctype="multipart/form-data" method="POST">
<input type="file" name="filez">
<input type="submit">
</form>
The problem is that When I try to upload a file that is larger than 512k the $_FILES returns empty!
Files that are lower than 512k are working fine!
So it not any options from config files.!
And here is some setting from phpinfo!
post_max_size 8M;
I have searched everywhere but I can not find the reason why!
Also the server conf is
CentOS
Apache/2.0.46
PHP 4.3.2
In another server we have not problem uploading the file with the same script! so no errors in the scripts!
Does anyone have any ideas what could cause the problem to this?
Thanks for your time
print_r($_FILES);
?>
<form action="a.php" enctype="multipart/form-data" method="POST">
<input type="file" name="filez">
<input type="submit">
</form>
The problem is that When I try to upload a file that is larger than 512k the $_FILES returns empty!
Files that are lower than 512k are working fine!
So it not any options from config files.!
And here is some setting from phpinfo!
post_max_size 8M;
I have searched everywhere but I can not find the reason why!
Also the server conf is
CentOS
Apache/2.0.46
PHP 4.3.2
In another server we have not problem uploading the file with the same script! so no errors in the scripts!
Does anyone have any ideas what could cause the problem to this?
Thanks for your time