Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Easyphp : msvcr110.dll is missing

I've installed easyphp-devserver on windows 10. When I launch easyphp, the message "msvcr110.dll is missing" appears.

I've searched on internet and found out I must install the Redistribuable Visual C++ for Visual Studio 2015 [https://www.microsoft.com/en-us/download/details.aspx?id=48145][1]

After that, I installed Visual C++ and reboot my computer.

But that doesn"t work. There is the same error message.

Have you any idea to solve the problem ?

like image 895
sam.training Avatar asked Oct 07 '16 08:10

sam.training


People also ask

How do I install msvcr110 dll on Windows 10?

Once the download is complete, extract the file by right-clicking on msvcr110. dll and clicking copy. Now navigate to the System32 folder of your computer (Local Disk>Windows>System32) and paste the file there. Now navigate to the SysWOW64 folder (Local Disk>Windows>SysWOW64) and paste msvcr110.

What is msvcr110 dll used for?

dll is a part of Microsoft Visual C++ and is often required for running programs developed with Visual C++. Some games or applications may need the file in the game/application installation folder. Copying it from Windows systemfolder to the install-folder of the game/application should fix that problem.


2 Answers

I assume you're referring to the Windows 7/8/10 VC14 version with PHP 7 support (v16.1.1 at the time of this post).

The EasyPHP Devserver download page states that Visual C++ Redistributable for Visual Studio 2015 x86 or x64 is required, which should come installed on Windows 10 already.

What it doesn't mention is that apparently Visual C++ Redistributable for Visual Studio 2012 is also required, and doesn't come installed on Windows 10. Here's the download link for that one: https://www.microsoft.com/en-us/download/details.aspx?id=30679

Installing the x86 executable got it working for me. No need for the x64 one it seems.

like image 106
Adam C Avatar answered Oct 02 '22 16:10

Adam C


As highlighted by Adam C try downloading the 32bit (e.g. x86) version of Visual C++ Redistributable for Visual Studio 2012 it should resolve the issue... as I had the 64bit Win7 installed I tried to use the 64bit Redistributable file and it did not help fix the issue... but, used the 32bit version and vola it worked.

like image 43
Mo-ster Avatar answered Oct 02 '22 18:10

Mo-ster