Jump to content

file upload problem..plz help


shamsuljewel

Recommended Posts

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

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?

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.