shamsuljewel Posted February 13, 2008 Share Posted February 13, 2008 I am uploading a picture file to my site...it works on the local server but problem with the main site... the message it shows..is Sorry!!! File Cannot be Uploaded!!! Which is on that part of my code... if(!@move_uploaded_file($_FILES['pic']['tmp_name'], "../pic/$row[0].gif")) { mysql_query("delete from pic_list where id='$row[0]'"); echo "<script language='javascript'>alert('Sorry!!! File Cannot be Uploaded!!!');history.back(-1);</script>"; } Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/ Share on other sites More sharing options...
Isityou Posted February 13, 2008 Share Posted February 13, 2008 Make sure your temp directory for you main site is correct. Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/#findComment-466087 Share on other sites More sharing options...
shamsuljewel Posted February 13, 2008 Author Share Posted February 13, 2008 /tmp/phptTohQx shows as the $_FILES['pic']['tmp_name'] value... Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/#findComment-466122 Share on other sites More sharing options...
rhodesa Posted February 13, 2008 Share Posted February 13, 2008 My guess would be that ../pic either doesn't exist or isn't writable...try adding this just before the code you posted: $dir = "../pic/"; if(!is_dir($dir)) die("Dir does not exist"); if(!is_writable($dir)) die("Dir is not writable"); print "Moving file to: {$dir}{$row[0]}.gif"; What does the script say now? Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/#findComment-466128 Share on other sites More sharing options...
shamsuljewel Posted February 13, 2008 Author Share Posted February 13, 2008 yes rhodesa your guess is right...I forget to make the pic folder writtable..thank you very much Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/#findComment-466138 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.