Re: Re: File upload in map drive with PHP

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 26 Jan 2012, at 15:10, Mehmet YAYLA wrote:

> 
> I'm using code this bellow.
> 
> 
> <?
> if (!empty($_GET["upload"])) {
>                $uploaddir ="x:\\file/";
> 
>                $uploadfile = $_FILES['userfile']['name'];
> 
>                print "<pre>";
> 
>                if (move_uploaded_file($_FILES['userfile']['tmp_name'], "$uploaddir"."$uploadfile")) {                                                                                           
>                               echo "Dosya basari ile yüklendi. ";                                                                                                                        
>                }              else {                                    
>                               print "Dosya yüklenemedi. Tekrar deneyiniz";                                 
>                               }
>                print "</pre>";
> }
> 
> ?>
> 
> <form enctype="multipart/form-data" action="upload_file.php?upload=1" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
>                Select image: <input name="userfile" type="file"/>
>                <input type="submit" value="Upload" />

The drive needs to be mapped for the internet user (usually IUSR_machinename I think), otherwise that drive won't exist.

-Stuart

-- 
Stuart Dallas
3ft9 Ltd
http://3ft9.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux