Hi,
I'm running PHP 5.2.6 on IIS 6.
All PHP pages, even ones with no content are taking several seconds (5-6) to load. This does not affect static (HTML) pages which load instantly.
There are no reported errors shown, and error reporting is turned on.
It is not output buffering, which is a common issue with PHP on IIS.
Can anyone suggest any diagnostic steps I could take?
Could it be a particular extension which is failing to load, but not displaying an error?
I have put
error_reporting(E_ALL);
ini_set('display_startup_errors', 'On');
print_r(error_get_last());
at the start of my test script, but nothing is reported!
Could it be some weird permissions checking?
Any help appreciated.
Thanks.