sam.training
sam.training

Reputation: 71

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 ?

Upvotes: 7

Views: 25710

Answers (3)

humayoun Israr
humayoun Israr

Reputation: 1

Download and extract msvcr110.dll and then paste it in Windows/sysWOW64 folder.

Upvotes: 0

Mo-ster
Mo-ster

Reputation: 143

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.

Upvotes: 3

Adam C
Adam C

Reputation: 274

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.

Upvotes: 21

Related Questions