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>"; } Quote 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. Quote 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... Quote 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? Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/90941-file-upload-problemplz-help/#findComment-466138 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.