ID: 23880 Updated by: [EMAIL PROTECTED] Reported By: dk0110 at hotmail dot com -Status: Feedback +Status: No Feedback Bug Type: Scripting Engine problem Operating System: RedHat Linux 7.3 & 8 PHP Version: 4.2.2 & 4.3.1 New Comment:
No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2003-05-29 19:22:32] [EMAIL PROTECTED] Try 4.3.2 which was released today ------------------------------------------------------------------------ [2003-05-29 19:10:15] dk0110 at hotmail dot com The comment after the while statement should have two slashes, this occured due to me preparing the bug report too quickly. Sorry about that. ------------------------------------------------------------------------ [2003-05-29 19:02:02] dk0110 at hotmail dot com I created a function to get certain filenames (without extensions) from a specified directory. This function also will work to get all files. The problem occurs when the readdir() function executes. ERROR: Fatal error: input in flex scanner failed in /full/virtual/path/name/html/sub.domain.com/directory on line 1 Here is the function that I use: function fnfile($dir, $search) { global $SCRIPT_FILENAME; $dir = dirname($SCRIPT_FILENAME)."/directory/".$dir."/"; if (is_dir($dir)) { //it does pass this if statement $od = opendir($dir); $filelist = array(); while (($file = readdir($od)) !== false) { /error occurs above when directory is read (maybe as a file?) if ($search == substr($file, 0, strpos($file, "."))) { $filelist = array_merge($filelist, array($dir."/".$file)); } elseif (($search == "*") AND ($file !== ".") AND ($file !== "..")) { $filelist = array_merge($filelist, array($dir."/".$file)); } } if (count($filelist) == 0) { return false; } elseif (count($filelist) >= 2) { return $filelist; } else { return implode("", $filelist); } closedir($od); } } This happened on two boxes that it was tried on, so it is recursive. The directory name was changed to see if the problem occured because of the original (which was 00000), and the problem still occured. These directories included first letter and last letter strings, but the error occured yet. Thanks for your time, hope this can be fixed. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=23880&edit=1