The script has a part which reads:
function upload($the_file) {
global $the_path,$the_file_name;
$error = validate_upload($the_file);
if ($error) {
form($error);
} else { # cool, we can continue
if (!@copy($the_file, $the_path . "/" . $the_file_name)) {
form("\n<b>Chequear path y ".
"los eprmisos del directorio</b>");
} else {
list_files();
form();
}
}
}
This
Chequear path y ".
"los permisos del directorio</b>");
is the error I'm getting (check path and permissions)
I checked permissions, think this is not the problem
Thanks