|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-23 12:46 UTC] youza at post dot cz
[2006-05-23 15:32 UTC] jcink2k at gmail dot com
[2006-05-24 20:13 UTC] tony2001@php.net
[2006-05-26 19:06 UTC] jcink2k at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 15:00:02 2025 UTC |
Description: ------------ Hi, I am not sure if this is a bug or not, so I apologize if it's bogus. But I'm having this issue in RC2 at the moment. RC1 is the only option here so I have picked that. I have open_basedir set to "." Reproduce code: --------------- $folder = "./uploads/"; $temporary = $_FILES['swforpic']['tmp_name']; $realfilename = $_FILES['swforpic']['name']; move_uploaded_file($temporary, $folder.$realfilename) or die("Problem writing the file. "); Worked fine for me on PHP 4.4.2 Expected result: ---------------- I expected the file to upload, as it does just fine in PHP 4.4.2 with open_basedir set to "." Actual result: -------------- Warning: move_uploaded_file() [function.move-uploaded-file]: open_basedir restriction in effect. File(C:\PROGRA~1\EASYPH~1\\tmp\phpED.tmp) is not within the allowed path(s): (.) in c:\program files\easyphp1-8\www\um\textfilebb_v1p0p17\add_reply.php on line 217 Don't know if this is a bug or not. But it was working just fine before, which makes me think that it is somehow.