|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-09-18 17:27 UTC] kalle@php.net
[2010-09-18 17:27 UTC] kalle@php.net
-Status: Open
+Status: Feedback
[2010-12-31 20:38 UTC] jani@php.net
-Status: Feedback
+Status: Bogus
[2010-12-31 20:38 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 18:00:01 2025 UTC |
Description: ------------ With regard of using Http Apache and PHP Zend congruent, in other words simultaneus, there is an ISSUE "PHP Pointer / TMP", regardless of Gnome Linux OS and Windows Vista OS. It seems that PHP keep truck through an internal pointer to a specific TMP locator / location for uploaded files yet shows a misleading error: ... Php Pointer / TMP Locator C:\xampp\tmp\php6D57.tmp <= failed to open stream SWEETYPIE.jpg image/pjpeg 3200 When using the debugging technology within breakpoint context it shows the Pointer TMP locator / location ok, yet "spitts" the above misleading error !! Any indepth technical White Paper explaination on "PHP Pointer / TMP" of the internal structure that can enlighten in other words highlight the technology behind this ISSUE, or a PHP fix with this respect, perhaps ?? NOTE: NOT AN ACCESS CONTROL LIST ( A.C.L ) ISSUE !! Test script: --------------- <?php if($_FILES['file']['name'] != "") { $locator = "C:\\PICT\\"; $breakpoint = $_FILES['file']['name']; $tmp = $_FILES['file']['tmp_name']; copy( $tmp, $locator . $breakpoint); } ?> <html><head><title>Php Pointer TMP Locator</title></head> <body> <?php echo( $tmp ); ?> <br> <?php echo( $breakpoint ); ?> <br> <?php echo( $_FILES['file'][ 'type'] ); ?> <br> <?php echo( $_FILES['file'][ 'size'] ); ?> <br> </body> </html> Expected result: ---------------- error: ... Php Pointer TMP Locator <= open stream ok C:\xampp\tmp\php6D57.tmp SWEETYPIE.jpg image/pjpeg 3200 Actual result: -------------- error: ... Php Pointer TMP Locator <= failed to open stream C:\xampp\tmp\php6D57.tmp SWEETYPIE.jpg image/pjpeg 3200