Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

msvcr110.dll is missing from computer error while installing PHP

Tags:

php

dll

I am trying to install PHP(5.5). I extracted the zip file in C:\php folder. And I also set the 'Path' system variable to C:\php. But when I open command prompt and type php I get error saying:

The program can't start because MSVCR110.dll is missing from your computer. Try reinstalling the program to fix this problem.

I checked for this dll in C:\Windows\System32 directory and I could locate the file there. How to get rid of this error? Any help would be appreciated.

Thanks in Advance.

like image 382
Supereme Avatar asked Jan 28 '14 04:01

Supereme


People also ask

Why is msvcr110 dll missing?

dll file" error appears when you try to launch an Adobe application. Launching 64-bit versions of some Adobe apps (such as Photoshop, Illustrator, and Premiere Pro) prompts you that msvcp110. dll file is missing. This error occurs because the VC redistributable files are not installed properly on your computer.


1 Answers

You need to install the Visual C++ libraries: http://www.microsoft.com/en-us/download/details.aspx?id=30679

As mentioned by Stuart McLaughlin, make sure you get the x86 version even if you use a 64-bits OS because PHP needs some 32-bit libraries.

like image 60
laurent Avatar answered Sep 22 '22 13:09

laurent