I have been able to upload pages thur my web browser, but it seems with larger files 100+MB it just hangs, i have setup my max post size to a gig =) and max up size to a GIG to, but still not luck, i am using php 4.0.6 and apache 1.3, any ideas? here is my code...
$full_path = sprintf("/tmp/add/%s",$userfile_name);
if ( file_exists($full_path) )
{
echo "<BODY><BR><BR><BR><CENTER>File aready exists!</BODY>";
die();
}
$fp = fopen($userfile_name, "w");
copy($userfile, $full_path);
fclose($fp);
unlink("$userfile");
chmod($full_path, 647);