Reputation: 11
My configuration - Windows 7 x64, Php 5.3, Apache 2.2.15, latest Mysql.
When loading pages from localhost, the response time shown by firebug is more 530ms for the main 'index.php' file, sometimes the connection is reset. It's painfully slow.
I googled the problem and found a workaround - switch off and on again a win service called BFE - base filtering engine. Then everything works like a lightning but xdebug doesn't work in netbeans.
Why is this response time so long? Can you think of any other solution than BFE toggling?
joey33
Upvotes: 1
Views: 1006
Reputation: 1057
I had issues with super slow (never loading) localhost pages when running WAMP 2.4 and using IE10. A hint in this thread fixed the issue for me.
Add these lines to the bottom of your httpd.conf file
# Fix IE crashing Apache
AcceptFilter http none
AcceptFilter https none
Upvotes: 1
Reputation: 11
Just to make users aware, Using the packed apache,php and mysql is great but found when using an SMTP server with this bundle causes problems, using stand alone fixes the problem.
Upvotes: 1
Reputation: 1
ok, I tried xampp and all other sugegstion given in forums but finally reverting win7 to 32bit edition solved the problem.
Upvotes: 0
Reputation: 9397
I always used the lastest XAMPP Version from apachefriends.org which runs very stable and fast on my Windows 7 x64 machine. It also has Apache 2.2.15, MySQL 5.1.46 and PHP 5.3.2 included.
Is there a reason you use all programs as stand-alones?
Upvotes: 0
Reputation: 1329032
You could try with xamp, which should support xdebug out of the box.
Otherwise you need to complete your wamp setup with an xdebug dll.
put
php_xdebug-2.0.5-5.3-vc6.dll
in the directoryC:\wamp\bin\php\php5.3.0
Upvotes: 0