Page is a not externally linkable
rainborick - 3:15 pm on May 10, 2012 (gmt 0)
It looks like the path to the destination for move_uploaded_file() is incomplete. I'd recommend using the complete path, as in:
$place_file = move_uploaded_file( $_FILES['fileField']['tmp_name'], $_SERVER['DOCUMENT_ROOT'] . "/tktedmembers/$id/".$newname);
Of course, you may have to add any additional directories in the path to 'tktedmembers/' as well.