This is a discussion on File uploads not working within the PHP Language forums, part of the PHP Programming Forums category; I am trying a simple file upload, but cannot make it work on my localhost. I wrote the following code: $...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I am trying a simple file upload, but cannot make it work on my
localhost. I wrote the following code: $strFileDir = "/images/gallery/"; $strFileName = $strFileDir . $_FILES['fImage']['name']; if (move_uploaded_file($_FILES['fImage']['tmp_name'],$strFileName)); { echo ("Success"); } ....but get the following errors when uploading "gallery_1.gif": Warning: move_uploaded_file(/images/gallery/gallery_1.gif): failed to open stream: No such file or directory in C:\Development\ChasityChase.com\www\admin\image\im age.php on line 16 Warning: move_uploaded_file(): Unable to move 'C:\PHP\uploadtemp\phpE4.tmp' to '/images/gallery/gallery_1.gif' in C:\Development\[sitename]\www\admin\image\image.php on line 16 /images/gallery/gallery_1.gif I am working in Windows XP Pro/IIS, in case you couldn't tell. Thanks in advance, james |
|
|||
|
Hi James
You will need to give the full path of where you want the file moved to. $strFileDir = "/images/gallery/"; won't work $strFileDir = "c:/path/to/files/images/gallery/"; should work -- Paul Barfoot "James Arnall" <news@jamesarnall.com> wrote in message news:VvqdnX0-nsCcc3_cRVn-1w@comcast.com... >I am trying a simple file upload, but cannot make it work on my localhost. >I wrote the following code: > > > $strFileDir = "/images/gallery/"; $strFileName = $strFileDir . > $_FILES['fImage']['name']; > if (move_uploaded_file($_FILES['fImage']['tmp_name'],$strFileName)); > { > echo ("Success"); > } > > ...but get the following errors when uploading "gallery_1.gif": > > Warning: move_uploaded_file(/images/gallery/gallery_1.gif): failed to open > stream: No such file or directory in > C:\Development\ChasityChase.com\www\admin\image\im age.php on line 16 > > Warning: move_uploaded_file(): Unable to move > 'C:\PHP\uploadtemp\phpE4.tmp' to '/images/gallery/gallery_1.gif' in > C:\Development\[sitename]\www\admin\image\image.php on line 16 > /images/gallery/gallery_1.gif > > I am working in Windows XP Pro/IIS, in case you couldn't tell. > > Thanks in advance, > james |