snakeeyes1978
Programmer
I currently have an internal website up and running on Windows 2000 with IIS 4. I've installed PHP (5.1.4 – same version as previous) on a new Windows 2003 server with IIS 6. The setup of the boxes is exactly the same except for Windows and IIS versions.
Now when I run the php page it comes up:
Fatal error: Call to undefined function qualified_me() in C:\Webmodules\timetracker\lib\application.inc on line 39
Application.inc has this:
require("$ME = qualified_me();
Qualified me is DEFINITELY defined within stdlib.inc and is running correctly. I put an echo "A"; before the function definition and an echo "B"; after the function definition to prove the file was being loaded and it works correctly. I also tried to call the function immediately after it was defined and that worked.
Why, then, would it report an undefined function when it clearly is defined and called correctly with a require function?
I'm lost – any ideas?
Now when I run the php page it comes up:
Fatal error: Call to undefined function qualified_me() in C:\Webmodules\timetracker\lib\application.inc on line 39
Application.inc has this:
require("$ME = qualified_me();
Qualified me is DEFINITELY defined within stdlib.inc and is running correctly. I put an echo "A"; before the function definition and an echo "B"; after the function definition to prove the file was being loaded and it works correctly. I also tried to call the function immediately after it was defined and that worked.
Why, then, would it report an undefined function when it clearly is defined and called correctly with a require function?
I'm lost – any ideas?