Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why am I often getting error 0x8007000e when debugging a project in Visual Studio?

I have a Visual Studio 2008 project that is proving difficult to debug. I need to attach to IIS 7 to debug it. At least 50% of the time I get the following error shortly after attaching to w3wp.exe:

---------------------------
Microsoft Visual Studio
---------------------------
A fatal error has occurred and debugging needs to be terminated.
For more details, please see the Microsoft Help and Support web site.
HRESULT=0x8007000e. ErrorCode=0x0.
---------------------------
OK   
---------------------------

It then terminates w3wp.exe.

I don't get this problem with any other solution. Any ideas on how to fix this please?

like image 534
Alex Angas Avatar asked Oct 28 '10 00:10

Alex Angas


1 Answers

If you Google this error you'll find a lot of information about it.

0x8007000e = The application is out of memory. Perhaps your computer does not have enough RAM and/or disk space.

like image 126
tidwall Avatar answered Sep 18 '22 10:09

tidwall