Jump to content

File upload help


Perad

Recommended Posts

Hey, why isn't this working?

 

I have also tried using getcwd() with the path, even though the path isn't valid it still doesn't work. Can anyone make any sense out of this?

// Upload
$path= '/test/upload/job_files/';

$tmpname = $_FILES['docs']['tmp_name'];
$to = $path . $_FILES['docs']['name'];

move_uploaded_file($tmpname, $to);

 

 

Errors:

Warning: move_uploaded_file(/test/upload/job_files/Brief.doc) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/johndoe/public_html/test/wp-content/plugins/post-jobs.php on line 123

 

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpBVa9RX' to '/test/upload/job_files/Brief.doc' in /home/johndoe/public_html/test/wp-content/plugins/post-jobs.php on line 123

Link to comment
https://forums.phpfreaks.com/topic/170646-file-upload-help/
Share on other sites

Hi, nope, no joy.

 

Warning: move_uploaded_file(/home/johndoe/public_html/test/upload/job_files/Brief.doc) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/johndoe/public_html/test/wp-content/plugins/post-jobs.php on line 123

 

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpIMzrDk' to '/home/johndoe/public_html/test/upload/job_files/Brief.doc' in /home/johndoe/public_html/test/wp-content/plugins/post-jobs.php on line 123

 

Its bizarre, I really don't get it.

Link to comment
https://forums.phpfreaks.com/topic/170646-file-upload-help/#findComment-900067
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.