Question

I am having a problem adding an extention to PHP 5.4

I am running XAMPP 3.2.1 on Windows XP with PHP 5.4. Everything runs as expected.

But when I copy the php_dbase.dll to xampp/php/ext and and extension=php_dbase.dll to the php.ini file XAMMP will say:

  • This application has failed to start because MSVCR110.dll was not found.
  • PHP Startup: Unable to load dynamic library: 'C.\xampp\php\ext\php_dbase.dll' - The specific module could not be found

I did the same process on Windows 7 and it worked. But I need to do this on Windows XP.

Help please?

Was it helpful?

Solution

You need to install the Visual C++ Redistributable for Visual Studio 2012. Download it here

MSVCR110.dll is the Microsoft Visual C++ Redistributable dll that is needed for projects built with Visual Studio 2011. The dll letters spell this out. MS = Microsoft, V = Visual, C = C++, R = Redistributable For Winroy to get started, this file is probably needed. This error appears when you wish to run a software which require the Microsoft Visual C++ Redistributable 2012. The redistributable can easily be downloaded on the Microsoft website as x86 or x64 edition. Depending on the software you wish to install you need to install either the 32 bit or the 64 bit version. Refer the following link: http://www.microsoft.com/en-us/download/details.aspx?id=30679

-- Yaqub K, Microsoft Support Engineer, 2013-08-20 from answers.microsoft.com

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top