PHP Error - Uploading a file - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:52:24Z http://stackoverflow.com/feeds/question/3611 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3611/php-error-uploading-a-file -1 PHP Error - Uploading a file Steve Willard 2008-08-06T16:13:02Z 2009-02-12T17:14:23Z <p>I'm trying to write some php to upload a file to a folder on my webserver. Here's what I have:</p> <pre><code>&lt;?php<br>if ( !empty($_FILES['file']['tmp_name']) ) {<br>    move_uploaded_file($_FILES['file']['tmp_name'], './' . $_FILES['file']['name']);<br>    header('Location: http://www.mywebsite.com/dump/');<br>    exit;<br>}<br>?><br><br>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"<br>    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><br>&lt;html><br>&lt;head><br>    &lt;title>Dump Upload&lt;/title><br>&lt;/head><br>&lt;body><br>    &lt;h1>Upload a File&lt;/h1><br>    &lt;form action="upload.php" enctype="multipart/form-data" method="post"><br>        &lt;input type="hidden" name="MAX_FILE_SIZE" value="1000000000" /><br>        Select the File:&lt;br />&lt;input type="file" name="file" />&lt;br /><br>        &lt;input type="submit" value="Upload" /><br>    &lt;/form><br>&lt;/body><br></code></pre> <p></p> <p>I'm getting these errors:</p> <pre><code>Warning: move_uploaded_file(./test.txt) [function.move-uploaded-file]: failed to open stream: Permission denied in E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\upload.php on line 3<br><br>Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\WINDOWS\Temp\phpA30E.tmp' to './test.txt' in E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\upload.php on line 3<br><br>Warning: Cannot modify header information - headers already sent by (output started at E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\upload.php:3) in E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\upload.php on line 4<br></code></pre> <p>PHP version 4.4.7 Running IIS on a Windows box. This particular file/folder has 777 permissions.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/3617#3617 0 Answer by sparkes for PHP Error - Uploading a file sparkes 2008-08-06T16:15:21Z 2008-08-06T16:15:21Z <pre><code>Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\WINDOWS\Temp\phpA30E.tmp' to './people.xml' in E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\upload.php on line 3<br></code></pre> <p>is the important line it says you can't put the file where you want it and this normally means a permissions problem</p> <p>check the process running the app (normally the webservers process for php) has the rights to write a file there.</p> <p>EDIT:</p> <p>hang on a bit I jumped the gun a little is the path to the file in the first line correct?</p> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/3618#3618 0 Answer by Michael Stum for PHP Error - Uploading a file Michael Stum 2008-08-06T16:16:01Z 2008-08-06T16:16:01Z <p>As it's Windows, there is no real 777. If you're using <a href="http://fr2.php.net/manual/en/function.chmod.php" rel="nofollow">chmod</a>, check the Windows-related comments.</p> <p>Check that the IIS Account can access (read, write, modify) these two folders:</p> <pre><code>E:\inetpub\vhosts\mywebsite.com\httpdocs\dump\<br>C:\WINDOWS\Temp\<br></code></pre> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/3624#3624 -1 Answer by Steve Willard for PHP Error - Uploading a file Steve Willard 2008-08-06T16:19:40Z 2008-08-06T16:19:40Z <p>Yeah the path is correct. I renamed the server URL obviously and the file to test.txt.</p> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/4618#4618 2 Answer by Kevin for PHP Error - Uploading a file Kevin 2008-08-07T12:06:45Z 2008-08-07T12:06:45Z <p>Try adding a path. The following code works for me:</p> <pre><code>&lt;?php if ( !empty($_FILES['file']) ) { $from = $_FILES['file']['tmp_name']; $to = dirname(__FILE__).'/'.$_FILES['file']['name']; if( move_uploaded_file($from, $to) ){ echo 'Success'; } else { echo 'Failure'; } header('Location: http://www.mywebsite.com/dump/'); exit; } ?&gt; </code></pre> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/365455#365455 0 Answer by jmucchiello for PHP Error - Uploading a file jmucchiello 2008-12-13T17:17:01Z 2008-12-13T17:17:01Z <p>OMG</p> <blockquote> <p>move_uploadd_file($_FILES['file']['tmp_name'], './' . $_FILES['file']['name']);</p> </blockquote> <p>Don't do that. $_FILES['file']['name'] could be ../../../../boot.ini or any number of bad things. You should never trust this name. You should rename the file something else and associate the original name with your random name. At a minimum use basename($_FILES['file']['name']).</p> http://stackoverflow.com/questions/3611/php-error-uploading-a-file/542368#542368 0 Answer by rupert0 for PHP Error - Uploading a file rupert0 2009-02-12T17:14:23Z 2009-02-12T17:14:23Z <p>Another think to observe is your directory separator, you are using / in a Windows box..</p>