umas Posted April 24, 2007 Share Posted April 24, 2007 In file uploading (through a form usig browse button) It is not possible to access the temporary folder where tmp file is created. The file doesnt get uploaded and hence cannot see the uploaded file in the directory. An error appears as the file doesnot exists in the folder. i couldnt set the permission also I use php 4 version. It works fine in local test server. But in main server it doesnt. $file=$_FILES['file_cv']['name']; $tmpfile=$_FILES['file_cv']['tmp_name']; if(!empty($file)) { $uploaddir = "accountantscv/$file"; move_uploaded_file($_FILES["file_cv"]["tmp_name"], $uploaddir); } Link to comment https://forums.phpfreaks.com/topic/48436-php-file-upload/ Share on other sites More sharing options...
clown[NOR] Posted April 24, 2007 Share Posted April 24, 2007 some code would be nice Link to comment https://forums.phpfreaks.com/topic/48436-php-file-upload/#findComment-236823 Share on other sites More sharing options...
ToonMariner Posted April 24, 2007 Share Posted April 24, 2007 what is your enctype on the form? make sure you have enctype="multipart/form-data" Link to comment https://forums.phpfreaks.com/topic/48436-php-file-upload/#findComment-236825 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.