hi
I have a plain script which works fine on an isp server with php 4.3.3.
Unforunately it doesn't seem to work on the one i need it to work which runs 4.0.3
it just does a simple post, no destinations or anything specified.
if ($_SERVER['REQUEST_METHOD'] == 'POST'){
$result = $upload->move($destination_folder, $overwrite);
if ($result == true){
echo "<br>" . $upload->file['name'] . " was successfully uploaded!<br>";
mail($email_address,$subject,$msg,"From:".$email_from."\r\n".$add_header);
my access log shows it does the routine with a 200 but no file ever appears on the server , no "was successfully uploaded" or anything.
So I had a look at their php settings = safe mode off, max size 8mb all looks ok its little files i'm trying to upload.
Any ideas ? does the earlier version not support this ?