|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-20 17:18 UTC] fmk@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 21:00:01 2025 UTC |
Even simple scripts like the one below *WITHOUT AN MSSQL QUERY* when reloaded repeatedly quickly will either cause an access violation error or make php get stuck (i.e. CPU meter will show cycles being consumed even though all pages have finished loading - note: I am using dual processor under Win 2000 Pro). The only changes to the php.ini-optimized file were register_globals=On, magic_quotes_gpc=on and extension=php_mssql70.dll Simply loading php_mssql70.dll seems to be the culprit as without it the phenomena does not occur. This is probably the cause of the other reported MS SQL bugs as well and seems to have nothing to do with running a database query at all. <html> <body> <?php if ($pic!="off") { print " <A HREF='testing.php?site=".$site."&pic=off&aud=".$aud."&dwg=".$dwg."&txt=".$txt."'> <IMG NAME='turf_vault_05' SRC='images/turf-vault_05-over.gif' WIDTH=40 HEIGHT=31 BORDER=0></A>"; } else { print " <A HREF='testing.php?site=".$site."&pic=on&aud=".$aud."&dwg=".$dwg."&txt=".$txt."'> <IMG NAME='turf_vault_05' SRC='images/turf-vault_05.gif' WIDTH=40 HEIGHT=31 BORDER=0></A>"; } if ($aud!="off") { print " <A HREF='testing.php?site=".$site."&pic=".$pic."&aud=off&dwg=".$dwg."&txt=".$txt."'> <IMG NAME='turf_vault_09' SRC='images/turf-vault_09-over.gif' WIDTH=35 HEIGHT=33 BORDER=0></A>"; } else { print " <A HREF='testing.php?site=".$site."&pic=".$pic."&aud=on&dwg=".$dwg."&txt=".$txt."'> <IMG NAME='turf_vault_09' SRC='images/turf-vault_09.gif' WIDTH=35 HEIGHT=33 BORDER=0></A>"; } if ($txt!="off") { print " <A HREF='testing.php?site=".$site."&pic=".$pic."&aud=".$aud."&dwg=".$dwg."&txt=off'> <IMG NAME='turf_vault_17' SRC='images/turf-vault_17-over.gif' WIDTH=37 HEIGHT=36 BORDER=0></A>"; } else { print " <A HREF='testing.php?site=".$site."&pic=".$pic."&aud=".$aud."&dwg=".$dwg."&txt=on'> <IMG NAME='turf_vault_17' SRC='images/turf-vault_17.gif' WIDTH=37 HEIGHT=36 BORDER=0></A>"; } ?> </body> </html>