can somebody plz help me out here. Im pulling my hair out. I have downloaded jacks formmail php script. Everything else works except for the file uploading part.
it says:
Warning: Unable to create 'http://hosted.dailyrush.dk/rtcwfabs/files/hanger.zip': No such file or directory in /data/www/hosted/htdocs/rtcwfabs/formmail.php on line 276
this is whats on line 276:
// check for a file if there is a file upload it
if ($file_name) {
if ($file_size > 0) {
if (!ereg("/$", $path_to_file))
$path_to_file = $path_to_file."/";
$location = $path_to_file.$file_name;
if (file_exists($path_to_file.$file_name))
$location .= ".new";
copy($file,$location);
unlink($file);
$content .= "Uploaded File: ".$location."\n";
}
}
if anyone can help me it would be very much appreciated.