I recently moved my clints cms file upload scripts to a new server, and it has since stopped working..
The uploading script seems to not be receiving the uploaded file info from the clients form...
<?
$entry = $_POST['entry'];
$title = $_POST['title'];
$title = addslashes($title);
$description = $_POST['description'];
$description = addslashes($description);
//my debugging is..
echo 'file 1 is';
$nameit = $_FILES['image1']['name'];
echo $nameit2;
echo 'file 2 is';
I am submitting to this via POST, but am getting no value for $nameit, so I am assuming that nothing is being received..
the other vars, title, description etc are all being received ok...
Any pointers, anyone : /
Server is running 4.0.2 I believe..
Many thanks in advance
Mike.