PHP Error - Uploading a file - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:52:24Zhttp://stackoverflow.com/feeds/question/3611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3611/php-error-uploading-a-file-1PHP Error - Uploading a fileSteve Willard2008-08-06T16:13:02Z2009-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><?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><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"<br> "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><br><html><br><head><br> <title>Dump Upload</title><br></head><br><body><br> <h1>Upload a File</h1><br> <form action="upload.php" enctype="multipart/form-data" method="post"><br> <input type="hidden" name="MAX_FILE_SIZE" value="1000000000" /><br> Select the File:<br /><input type="file" name="file" /><br /><br> <input type="submit" value="Upload" /><br> </form><br></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#36170Answer by sparkes for PHP Error - Uploading a filesparkes2008-08-06T16:15:21Z2008-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#36180Answer by Michael Stum for PHP Error - Uploading a fileMichael Stum2008-08-06T16:16:01Z2008-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-1Answer by Steve Willard for PHP Error - Uploading a fileSteve Willard2008-08-06T16:19:40Z2008-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#46182Answer by Kevin for PHP Error - Uploading a fileKevin2008-08-07T12:06:45Z2008-08-07T12:06:45Z<p>Try adding a path. The following code works for me:</p>
<pre><code><?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;
}
?>
</code></pre>http://stackoverflow.com/questions/3611/php-error-uploading-a-file/365455#3654550Answer by jmucchiello for PHP Error - Uploading a filejmucchiello2008-12-13T17:17:01Z2008-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#5423680Answer by rupert0 for PHP Error - Uploading a filerupert02009-02-12T17:14:23Z2009-02-12T17:14:23Z<p>Another think to observe is your directory separator, you are using / in a Windows box..</p>