DavidNorgren

Untitled

Jan 16th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. HTML:
  2. <form method="post" enctype="multipart/form-data" action="php/api/member_settings_profile_avatar.php">
  3. <input type="file" name="settings_choose_avatar" id="settings_choose_avatar">
  4. <input type="submit" value="Upload" />
  5. </form>
  6.  
  7. PHP (php/api/member_settings_profile_avatar.php):
  8. move_uploaded_file($_FILES["settings_choose_avatar"]["tmp_name"], "img/test.png");
  9.  
  10. ERROR:
  11. Warning: move_uploaded_file(img/test.png): failed to open stream: No such file or directory in /customers/4/1/a/sharingmypursuit.com/httpd.www/php/api/member_settings_profile_avatar.php on line 2 Warning: move_uploaded_file(): Unable to move '/customers/4/1/a/sharingmypursuit.com/tmp/phpeN9wyk' to 'img/test.png' in /customers/4/1/a/sharingmypursuit.com/httpd.www/php/api/member_settings_profile_avatar.php on line 2
Advertisement
Add Comment
Please, Sign In to add comment