139

I don't know what the problem is. WAMP was very slow, so I reformatted my computer and installed WAMP. Still, accessing localhost is very, very slow, and sometimes it doesn't even load at all. I even removed it and replaced it with XAMPP, but I still got the same result. What might possibly be the problem? Here's my current hosts file:

127.0.0.1       localhost

127.0.0.1       localhost

It was perfectly working fine before, but I do not know what happened and why it has started acting strange lately, since even a reformat didn't fix it.

Alexis King
  • 43,109
  • 15
  • 131
  • 205
FBwall
  • 1,543
  • 3
  • 13
  • 15
  • I added `LoadModule php5_module "C:/xampp/php/php5apache2_2.dll"` on htpd.conf and restarted it but it didn't help at all. – FBwall Dec 08 '11 at 14:46
  • 4
    I have also the same issue. The issue was with Apache's main settings file httpd.conf. See this link for a solution that worked for me: http://serverfault.com/questions/66347/localhost-response-very-slow-why – jiten Dec 08 '11 at 14:39
  • Hmm, do you have a fresh install of xampp or do you have any frameworks running? Also you dont need this line `127.0.0.1 localhost` in the hosts file twice so try taking one out – cowls Dec 08 '11 at 16:18
  • the problem got fixed, i did nothing. It just suddenly responded fast again after a couple of days. Sigh. – FBwall Dec 11 '11 at 10:29
  • @all, I have a question for those that proposed solutions that involve adding or replacing text with `127.0.0.1`: what happens if you access `127.0.0.2`, or `127.1.2.3` or some other loopback address? For example, if MySQL is bound to `127.0.0.2`, will hard-coding `127.0.0.1` in the Apache conf files still work? – Synetech Nov 19 '13 at 21:28
  • I've tried EVERY SINGLE suggestion in this thread and NOTHING, my localhost is still TOO SLOW. I even didn't use WAMP or XAMPP I installed Apache, PHP and MySQL manually, and it takes about 45 secs every page load =/ This is reaaaaally annoying -_- – Metafaniel Feb 24 '15 at 15:36
  • Running XAMPP as an Administrator worked for me – Rosário Pereira Fernandes Feb 17 '16 at 21:43

27 Answers27

119

I had the same problem running on Windows 8 running on 64bit. Apache is really slow but when you press F5 many times it goes ok. In the end i after doing many things managed to solve it. Right now it works fast.

Try the following tasks to increase the performance:

Change apache's listening port

Change listening port from 80 to 8080 to avoid conflicts with programs like Skype. Open your httpd.conf file and find the line that starts with Listen (it's around line 62). Change it like the following: Listen 127.0.0.1:8080

enter image description here

Change your powerplan

Change your power plan from Balanced to High Performance. You can do this in Control Panel\All Control Panel Items\Power Options

enter image description here

Disable IPv6

The credits of this particular task go to Jef where he pointed this out in his blog post. From the Windows 8 desktop, press the Windows Key and the R key at the same time

enter image description here

Type regedit in the Run dialog box and click OK

enter image description here

Use Registry Editor to expand the registry tree and browse to:

\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TCPIP6\Parameters

enter image description here

Right click on Parameters, expand New, and select DWORD (32-bit) Value

enter image description here

Enter DisabledComponents into the Name field

enter image description here

Double click on the new DisabledComponents value, enter ffffffff into the Value data dialog box, and click the OK button

enter image description here

Confirm the new registry value contains the required data.

enter image description here

Change your etc/hosts

If you use virtual hosts don't add each virtual host on a new line. Instead list them like the following. 127.0.0.1 site-a site-b site-c

I also added 127.0.0.1 127.0.0.1 since I heard this somehow improves the lookup as well. (Can't confirm this but it can't hurt putting it there)

enter image description here

Your hosts file is located at C:\Windows\System32\Drivers\etc

Check how many apache processes are running

In my case I had two apache processes running. Be sure you only have one running. You can check this by pressing CTRL+ALT+DEL and press Task Manager

enter image description here

Turn off the Base Filtering Engine (BFE)

What I find to be working a bit as well was turning off the Base Filtering Engine. Since stopping or disabling the BFE service will significantly reduce the security of the system you should only do this when needed.

Go to Control Panel => Administrative Tools => Services => Base Filtering Engine

enter image description here

Stop the Base Filtering Engine by clicking on Stop

enter image description here

Increase Apache's process priority

To to your task manager and change Apache's process priority from Normal to High by right clicking -> Set priority -> High enter image description here

Keep Apache's process busy

This is a bit of an ugly method but it does certainly work. It keeps Apache busy and will process your own requests faster. Insert your local web-address in the iframe location and save it in a html file, run it and just leave it there until you're done.

<html>
    <head>

<script>
setTimeout(function(){
   window.location.reload(1);
}, 2000);

</script>

</head>
<body>
<iframe name="iframe" id="iframe" src="http://mywebsite:8080"></iframe> 


</body>
</html>

Downgrade to Windows 7 Pro

As a Windows 8 Pro user you are entitled to have downgrade rights to Windows 7. Read here more about this. For me that was the only solution that really did the job properly.

starball
  • 20,030
  • 7
  • 43
  • 238
bicycle
  • 8,315
  • 9
  • 52
  • 72
  • 7
    this is a good collection of answers, the only thing i did and work for me was disabling IPv6, thats all, so thanks ;) – AgelessEssence Jul 29 '13 at 19:39
  • 24
    `I also added 127.0.0.1 127.0.0.1` That’s not even valid syntax for a `HOSTS` file; you cannot remap an IP address. `Check how many apache processes are running. In my case I had two apache processes running. Be sure you only have one running.` What‽ You’re *supposed* to have two instances of `httpd.exe`; that’s [expected and normal](http://httpd.apache.org/docs/2.2/platform/windows.html#cust). The second one is the worker which does the main work, and the first is just the monitor which can restart the worker if it crashes. You only get one in *debug mode* which is not meant for regular use. – Synetech Nov 20 '13 at 22:10
  • All these things may be not valid, regular, etc but at least it makes apache go faster. That you have to wait ten seconds to load a page is also not expected but is regular in Windows systems. In the end it may be better to switch to Mac or Ubuntu if you don't mind the bugs within the system. – bicycle Nov 20 '13 at 23:08
  • Very nice, thorough comment, but with little downside for me... instead of putting Apache on port 8080, we'd better disallow Skype to use ports 80 and 443. It is done in Skype's connection settings. Pointing to 8080 is not a good practice from a developer's point of view, basically because it may conflict with Apache Tomcat that runs on default on 8080, and is also included in the XAMPP package. – Martin Asenov Jan 27 '14 at 18:36
  • 1
    @MartinAsenov: if it's only Skype, that's fine, Skype can be easily redirected to another port. But I have port 80 issues with few other programs like [Dropbox](http://superuser.com/q/850749/373304), which is not so easy to move to another port. – Pavel V. Dec 18 '14 at 07:09
  • I suggest to put Stephan's apprach (change localhost to 127.0.0.1) at the top of the list, since this seems to be the reason very often and is quite easy to test. – user2345998 Jun 24 '15 at 12:33
  • Thanks for great solutions. I fixed the problem by disabling ipv6. – user1447420 Sep 30 '15 at 12:53
  • Prioritizing the httpd.exe fixed it. – Matt Oct 21 '15 at 17:35
  • "In my case I had two apache processes running. Be sure you only have one running. " - stopping one of them will also kill the other one. Not helpful. – phil294 Oct 24 '15 at 13:53
  • what about for a real operating system, like osx? – chesscov77 Aug 10 '16 at 15:51
  • Disabling Base Filtering Service on windows seven wamp (x64) worked for me. – Muhammad Saqib Nov 11 '16 at 18:23
  • i've tried ANYTHING but changing the power plan did the trick - thanks! – Fuxi Dec 16 '16 at 13:01
  • We should follow [Microsoft's recommendations about disabling IPv6](http://technet.microsoft.com/en-us/network/cc987595.aspx) - [Reference Link](https://support.microsoft.com/en-in/help/929852/how-to-disable-ipv6-or-its-components-in-windows) – webcoder Mar 10 '17 at 04:52
  • One more tip, you are limited to 10 hosts per line in the hosts file. Once you add that 11th one it'll stop recognizing them so make sure you don't add too many on a single line... Thanks Microsoft! – Xedecimal Jun 07 '18 at 17:46
  • *Change your etc/hosts [...] don't add each virtual host on a new line.* pointed me in the right direction. It turns out that for some unknown reason I had multiple `127.0.0.1 localhost` lines in my hosts file; after removing the extra ones, page loads went from over 5 seconds on average, to under 1 s. – dregad Feb 13 '19 at 08:03
  • Thanks, just changing the port to 8080 solved all my issues – tayyab Aug 07 '19 at 16:53
  • setting apache high priority worked for me – hameds1 Jan 27 '21 at 07:39
97

This is caused by IPV6. Here is how you make MYSQL not use it. (so, without disabling IPV6)

edit mysql file 'my.ini'

under [wampmysqld] or [mysqld] add the following:

bind-address = ::

Save file and restart mysql service

enjoy!

Abdull
  • 26,371
  • 26
  • 130
  • 172
Honesta
  • 1,394
  • 1
  • 11
  • 20
  • 3
    Perfect! I gave your answer a 5% chance that it would help, but it really did! thanks. – AndiPower Jun 04 '15 at 15:54
  • 5
    Thanks man Speed improved a lot... As I am using XAMPP I have added it under [mysqld] – Sabeer Jul 21 '15 at 15:32
  • 3
    This trick has helped me a lot.. it makes my MySQL server almost 100x faster.. it will works on WAMP or XAMPP.. For XAMPP, just remove the # sign before "bind-address = ::" line.. – Aldry Wijaya Aug 04 '15 at 19:39
  • unfortunately didn't help at all. I've added `[wampmysqld]` section to my `/opt/lampp/etc/my.cnf` (this config is loaded, I don't have .ini file), restarted, but nothing happened. Anyway thanks for effort. At least it helped someone – vladkras Aug 22 '15 at 09:31
  • wampmysqld section does not exist in current xampp – phil294 Oct 24 '15 at 13:57
  • @vladkras you need to add it to your [mysqld] section. AND THIS TOTALLY WORKED! THANK YOU!!!!! – Rick Kukiela Oct 26 '15 at 15:57
  • 2
    Updated my.ini for xampp with this and my localhost became lightning fast!!! Cheers to you!!!! – Biju P Dais Mar 12 '18 at 04:49
  • Using wamp didn't expected that it will be work. And yet it worked. Thank you. – moshiuramit May 27 '19 at 05:14
  • 1
    This is the reason of my slow with XAMPP. x10 faster after follow this instruction. – sonnb Apr 27 '20 at 16:17
  • 1
    Despite all the detailed stuff above (most of which I did other than turning off BFE and other things that seemed like bad ideas, THIS was the one that worked. In my my.ini under [mysqld], there's an entry already for bind-address that goes to 127.0.0.1. I changed it to :: and phpmyadmin results show instantly now instead of after 10 to 20 seconds. – not_a_generic_user Jun 16 '22 at 04:16
56

have a look here :

http://forum.wampserver.com/read.php?2,91602,page=3

Basically use 127.0.0.1 instead of localhost when connecting to mysql through php on windows 8

if your finding phpmyadmin slow

in the config.inc.php you can change localhost to 127.0.0.1 also

NullPoiиteя
  • 56,591
  • 22
  • 125
  • 143
Stephan
  • 569
  • 4
  • 3
48

The solution that worked for me was to disable the cgi_module. Use one of these methods:

(Method 1) Right click on WAMP > Apache > Apache Modules > uncheck "cgi_module"

(Method 2) Edit httpd.conf and disable the loading of the CGI module by commenting this line:

LoadModule cgi_module modules/mod_cgi.so

Commenting would be just adding a # in front, like this:

#LoadModule cgi_module modules/mod_cgi.so

Restart the Apache service and you should be good to go.

noname
  • 1,268
  • 1
  • 16
  • 21
  • +1 It works like a charm! This one on its own did the trick! I'm on Windows 7 Pro + Apache 2.4 + PHP 5.5.30. – Marco Demaio Nov 21 '15 at 13:25
  • This work for me. Using El Capitan (MAMP) + Apache 2.2.29 + PHP 5.6.10. Especially the lag when running Parallels IE Test Environment. – fidev Jan 24 '16 at 20:29
  • Yes - I've tried lots of things - this works for me using XAMPP on W7Pro. It also seems to have fixed some annoying phpMyAdmin stalled refreshes where PMA sits there with a clock icon. – anoldermark Oct 28 '16 at 17:22
  • This is the only thing that worked for me. All the other known fixes I tried and didn't work but this did – AdRock May 02 '17 at 11:06
  • even 2021 this solution is working! Win10, Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.11 Datenbank-Client Version: libmysql - mysqlnd 5.0.12-dev – summsel Feb 26 '21 at 01:10
47

In my case, load time is 5 times faster when this is disabled in php.ini :

;zend_extension = "\xampp\php\ext\php_xdebug-2.1.0-5.3-vc6.dll"
trogne
  • 3,402
  • 3
  • 33
  • 50
  • 1
    I've been looking for the cause of this for more than a year now. For me, this was the main and sole culprit. Here's a post that describes what you can do besides having to disable Xdebug: http://stackoverflow.com/questions/24893010/enabling-xdebug-in-xampp-slows-down-phpmyadmin Thanks! – Pascalculator Nov 16 '14 at 14:20
  • 1
    Thanks, thanks, thanks, thanks!!! I have been trying everything that is writte up here and elsewhere. And XDEBUG was that thing that made phpMyAdmin slow as hell. And now it flyes again! – hbit Apr 05 '15 at 12:05
  • 1
    Exact same problem, even with a newer copy of the extension. Just quicker for me to comment it out when not needed, but probably related to one of the other .ini settings with the extension. – Martyn Shutt Apr 24 '15 at 17:35
  • 1
    You hero! In the end I left xdebug enabled, but turned off the profiler and my script sped up from around 5 minutes to 5 seconds. Thank you! – user3640967 Nov 27 '15 at 15:18
  • 1
    for me, this was the only thing to speed it up. surprisingly, internet explorer 11 was really fast with xdebug enabled. chrome and ff were slow as hell... – Guntram Mar 30 '16 at 08:50
  • 1
    I just commented `[XDebug]` block in `php.ini` and speed was normal again – Oliver Jan 08 '18 at 10:28
  • Your a savior! That was causing the problem, now I got 90% improvement in site speed in localhost! – Jones G Jan 23 '18 at 06:10
  • Man, thank you so much for that! Tried so many other things but this was the one and only solution that worked. – FlavioEscobar Mar 27 '19 at 02:47
22

For me using xDebug, this line in php.ini was the performance killer:

xdebug.remote_autostart=true

When I removed it the page was fast again.

user3476854
  • 221
  • 2
  • 2
  • Disabling the xdebug extension (zend_extension line) worked for me. Now I need a new debugger -.-" Thanks for pointing me to the right direction – kosmos May 09 '18 at 10:07
17

if you are using mysql use 127.0.0.1 instead of localhost in mysql_connect function it helped me

Sujay sreedhar
  • 3,498
  • 2
  • 21
  • 28
15

I'm not yet able to comment under @Honesta answer, so I'll write here the way I manage to solve it.

My environment (I don't know if this is relevant for the answer)

  • XAMPP (version 5.6.3)
  • Windows 8.1 Pro (64 bit)

How to

I just opened my.ini file and uncommented the line where it says

bind-address="127.0.0.1"

This file is located, for XAMPP users, in C:\xampp\mysql\bin\my.ini.

Credits

This article helped me to solve the problem, although I didn't needed everything in it because some setup in XAMPP were not requested.

vcoppolecchia
  • 398
  • 1
  • 4
  • 18
9

I've just fixed such an issue on my laptop running windows 10. Suddenly wamp became super slow - a request to load a page was taking 2 minutes.

After trying numerous things, what it turned out to fix the problem was disabling windows defender. All worked like a charm after that.

p.s. I'd suggest you add your apache root dir to the exceptions list and not actually disable defender completely.

Mita Ka
  • 317
  • 5
  • 8
6

As most of the answers have pointed out, using the IP address 127.0.0.1 over "localhost" will sometimes help the slowness issue - but this isn't really a solution because it does not fix the underlining problem.

What makes this problem hard (and hit-and-miss), is it can be caused by about a dozen different things between the OS, the WAMP configuration, and your Browser.

  1. Remove ::1 localhost from your Windows hosts file, and make sure 127.0.0.1 localhost is present. You want your request to go directly to the listening IPv4 socket.

  2. Disable IPv6 on your system. You are most likely not using it, and it has been known to cause all kinds of issues.

  3. Exclude your Apache and MySQL binary paths, and the Database folder, from your firewall and anti-virus software. They will interfere and slow things down.

  4. Reset your TCP/IP sub-system and reboot: netsh int ip reset c:\resetlog.txt

  5. Make sure your system is not using stale DNS servers: ipconfig /all

  6. Flush Windows DNS cache: ipconfig /flushdns

  7. Clear your Browser's Cache.

A little more in-depth is this guide: WAMP is Running Very Slow

rightstuff
  • 6,412
  • 31
  • 20
  • first thing i do this and its working wonderfully, other tricks answered above definitely might work, just because this at the bottom of answers, i tried this first and solve my problem, cool ! – Agung Sagita Sep 26 '18 at 06:09
6

After try each instuction on this post, for me works when i add in:

Avira >>
Real-Time Protection >>
Configuration >>
Exception >>

Add Proccess:

  1. xampp\apache\bin\httpd.exe
  2. xampp\mysql\bin\mysqld.exe
  3. xampp\xampp-control.exe

enter image description here

Max
  • 526
  • 6
  • 12
  • I'm using Windows Defender and this solution worked for me, I just added the three files to the "Excluded processes" list in Defender – Kevin Apr 03 '17 at 22:10
  • This solution worked for me, I tried all the others but noticed in my task manager once I launch the local host, very many processes related to bit defender service host will start running. Added the exceptions to bit defender and now works like charm. – Engr. Meshach Koech Sep 15 '21 at 16:03
4

For my it was the xdebug. I disabled and it worked as it should be !

[XDebug]
zend_extension = C:\xampp\php\ext\php_xdebug-2.3.2-5.6-vc11.dll
Maverick
  • 1,105
  • 12
  • 41
3

I am using wamp64 on my windows 10 machine. I was having the same issue and turning off Xdebug of from my php.ini file resolves the issue for me.

; [xdebug]
; zend_extension ="C:/wamp64/bin/php/php5.6.25/zend_ext/php_xdebug-2.4.1-5.6-vc11-x86_64.dll"
; xdebug.remote_enable = off
; xdebug.profiler_enable = off
; xdebug.profiler_enable_trigger = off
; xdebug.profiler_output_name = cachegrind.out.%t.%p
; xdebug.profiler_output_dir ="C:/wamp64/tmp"
; xdebug.show_local_vars=0
Shrikant D
  • 807
  • 1
  • 8
  • 14
2

I had the same problem. Response times were extremly slow and refreshes worked quickly, most of the time. All suggestions made by bicycle didn't help. What seems to help best so far (no slow response times for the last 30mins) was to reset winsock as explained here: http://www.devside.net/wamp-server/wamp-is-running-very-slow

netsh winsock reset
netsh int ip reset C:\resetlog.txt

You need to restart after this.

Tyron
  • 1,938
  • 11
  • 30
2

Using Windows 10 (june of 2018), I managed to improve the loading that went from 2 seconds to less than 400 milliseconds doing a set of things I saw in this post and the internet

Disabled xdebug in php.ini

; [xdebug]
; zend_extension ="C:/wamp64/bin/php/php5.6.25/zend_ext/php_xdebug-2.4.1-5.6-vc11-x86_64.dll"
; xdebug.remote_enable = off
; xdebug.profiler_enable = off
; xdebug.profiler_enable_trigger = off
; xdebug.profiler_output_name = cachegrind.out.%t.%p
; xdebug.profiler_output_dir ="C:/wamp64/tmp"
; xdebug.show_local_vars=0

Used 127.0.0.1 in installation, in my case of Wordpress

Using @honesta method

edit mysql file 'my.ini'

under the [wampmysqld] add the following:

bind-address = ::

And disabling cgi module like @Iulian Dita said

The solution that worked for me was to disable the cgi_module. Use one of these methods:

(Method 1) Right click on WAMP > Apache > Apache Modules > uncheck "cgi_module"

(Method 2) Edit httpd.conf and disable the loading of the CGI module by commenting this line:

LoadModule cgi_module modules/mod_cgi.so
Commenting would be just adding a # in front, like this:

#LoadModule cgi_module modules/mod_cgi.so
Restart the Apache service and you should be good to go.
Emanuel
  • 2,603
  • 22
  • 24
1

Had the same issue in Chrome and it did not go away after applying all the known remedies. For me the resolution was to uncheck "Enable phishing and malware protection" in Chrome settings (Settings -> Show advanced settings -> Privacy). After that localhost is lightningfast.

guntars
  • 320
  • 2
  • 6
1

I had this problem too.

I added the entries suggested above but it failed to work.

It was due to the fact Spybot Search and Destroy had added 15,000 lines of immunized site (ie prevents you from visiting them) to my hosts file.

My hosts file was 433k - I removed those lines and my page load speed improved immensely.

bagnap
  • 511
  • 7
  • 17
1

Changing(Updating) my PHP version from 5.5.25 to 7.0.10 solved this problem in my case.

Sarthak Srivastava
  • 1,490
  • 3
  • 15
  • 33
1

Power plan was the problem.Changed Balanced to High performance.

SREE ANI
  • 304
  • 2
  • 5
  • 13
0

After trying some answers and comments here, I finally found a solution! In this article The correct way to configure PHP I find a new way to configure PHP as a module in Apache.

For the author of this article, the official way to configure PHP is not the most optimal. The common and inappropriate way to configure PHP is this one:

# For PHP 5:
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php
PHPIniDir "C:/php"

I've always done it this way, but in the article, it's suggested to configure the PHP module this way:

#For PHP5
LoadFile "C:/www/php5/php5ts.dll"
LoadModule php5_module "C:/www/php5/php5apache2.dll"

<IfModule php5_module>
    #PHPIniDir "C:/Windows"
    #PHPIniDir "C:/Winnt"

    <Location />
        AddType text/html .php .phps
        AddHandler application/x-httpd-php .php
        AddHandler application/x-httpd-php-source .phps
    </Location>

</IfModule>

I even have IPV6 enabled, and my loading time drop down from 45 secs or 1 minute or more, to just 2 or 4 seconds! Thanks to other answers mentioned here, I also left enabled in my general configuration the following

HOST FILE:

127.0.0.1       localhost
127.0.0.1       127.0.0.1
#   ::1         localhost

HTTPD.CONF

EnableMMAP on
EnableSendfile on
AcceptFilter http none 
AcceptFilter https none
HostnameLookups Off

Other than that, I rolled back all other solutions I tried, so I'm sure this is the only ones that I used.

halfer
  • 19,824
  • 17
  • 99
  • 186
Metafaniel
  • 29,318
  • 8
  • 40
  • 67
0

I have the same issue but I resolve issue from database.I had rename table name and create new table with out index through which all indexes effected and I had huge amount of data in table.I again rename original table, it has fixed for me.

areeb
  • 424
  • 3
  • 9
0

If you are using PHP Xdebug for debugging purpose, remove that file. It worked for me. The response time reduced from 950ms to 125ms.

Hassan Raza
  • 376
  • 1
  • 5
  • 15
0

I don't know why, but closing my internet connection solved this problem for me.

O.Tadj
  • 329
  • 2
  • 4
0

I have had suspicions Chrome is starting to get stupid and bulky for a while, and my problems started after updating it. Since Ampps worked better when connected to Internet I put 1 + 1 together. Under Chrome Advanced settings try to dig into the Preload webpages for better performance feature. And kill it.

Ironic, but not unexpected, as it seems to get confused about preloading Localhost. In my case it was the instant fix after hours of wasted config fiddling and weeks of suffering.

Thank you Google devs.

Magnus72
  • 99
  • 1
  • 3
0

I have enebled xdebug. And I found that when my IDE PhpStorm was shutdown it was very slow. After I started my IDE, than it was fast. I dont know why but hope that it will help other people.

step
  • 2,254
  • 2
  • 23
  • 45
-2

Just try "Incognito" mode in Chrome.

Finally, this helped me to solve my issue.

Please keep your mind, this is not a permanent solution.

Roshan Perera
  • 780
  • 7
  • 12
-6

I run on wamp and I had this problem once. There can be many factors to this though there is 5 main ones that come to my mind.

1st. A program can cause this(Even antivirus software just depends what you have.)

2nd. Is your computer full or using alot of space this happen to a partner site of mine.

3rd. Check your regerstry files there could be errors or other things. (This end up being my problem.)

4th. After you uninstalled it did you manually delete the files that were left on your computer.(Yes even after you uninstall with wamp it has a tendency to leave a folder or 2 with some important data on it. When you install this will not be remodified and will stay the same.)

5th. Download the latest wamp or the lastest stable version of it.

Hope one of these things help.

user979626
  • 273
  • 1
  • 2
  • 8