|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-02-19 16:37 UTC] tyler at coastergames dot net
Webserver: IIS 5 SQL Server Ver: 2000 CGI version of PHP Calling mssql_query() causes PHP to hang. It eventually times out. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 19:00:02 2025 UTC |
Sorry. With the above configuration, calls to at least mssql_query(); result in a PHP timeout. PHP apparently continues to run, or at least the webserver thinks it is, and the users browser does not display a new page until PHP times out. Behavior is weird, and an example is perhaps weird. <?php mssql_connect("host","user","pass"); echo "Foo!"; #Outputs Foo! <?php mssql_connect("host","user","pass"); echo "Foo!"; #Echos nothing apparently flush(); #Doesn't help; $q = mssql_query("some query"); The first case works, the 2nd doesn't.