How do install wamp server 0 - wampserver

When I finish install then it show
C:\Windows\system32\MSVCR110.dll is either not designed to run on Windows or it contains an error.Try installing the program again using the original installation media or contact your system administrator or the software vendor for support.
But recently I download MSVCR110.dll and I send it C:\Windows\system32 and restart computer. But when I run Wamp server then it is also show this message.

I assume you are trying to install WAMPServer 2.5 on a Windows XP system.
I am afraid that will not work as Apache/PHP & MySQL in that version are all compiled with MSCV11 (VC2012), and unfortunately the MSCV11 runtime will not run on Windows XP. This is a Microsoft thing and not a WAMPServer problem.
Your best bet is to install WampServer 2.2e as Apache/PHP & MySQL were all compiled with an ealier version of the compiler and that runtime will work on XP.

Related

Nano Server container with Jenkins and Chocolatey

I need to have Jenkins and Java on a Windows container and I am investigating whether to use Windows Server Core or Windows Nano Server.
So that the assembly of the container is fast and the movement of DEV to PRO is agile. I see better Nano Server because it occupies 300MB instead of Server Core that occupies about 5 GB.
The problem comes when I want to install something in Nano Server. I tried to install Chocolatey but it is only compatible with the Server Core version, which makes me think that it is not advisable to use Nano Server for this functionality.
Is it advisable to use Nano Server to have Jenkins and Java or is it intended for another use?
The first reason (possibly among quite a few) why you should use Windows Server Core is that Nano Server does not support MSI installer files, which makes installing Jenkins more difficult.

how to run ruby on rails program in ubuntu installed in vmware?

I am trying to install ruby on rails on my windows. But after searching , I came to know that the best combination for ruby is either MAC or LINUX OS. But I m having laptop with windows 10. So can i install and run ruby and rails in UBUNTU inside VMware or which is the best option available?
Not sure what version of Windows 10 you have, but if you have the version that supports Hyper-V you have two good options.
http://vagrantup.com
Using either Oracle's Virtual Box or Hyper-V you can basically have a dedicated VM on your local box in the time it takes to download a pre-packaged box. I used this for a long time, though I now use http://c9.io as a cloud based IDE.
Step 1. Download the Oracle VM Virtual box from here.
Step 2. Download the Ubuntu ISO file. 64 bit Windows supports both 32 bit as
well as 64 bit guest OS. If your machine is a 64 bit machine then
download ubuntu-14.04.3-desktop-amd64.iso.
Step 3. Enable Intel vt-x from the BIOS menu.
Step 4. Disable Hyper-V platform from Turn windows features on or off.
Step 5. Insert the ISO image into the virtual CD/DVD drive as instructed here.
Step 6. Once the Ubuntu is installed on your VM. Install virtual box guest additions and it will be mounted inside the /media folder and at the right hand corner there will be a button to install the software and you're done with your setup.

php_imagick.dll is not loading on IIS 7.5 on windows server 2008 using plesk manager

i am using virtual dedicated server and the configuration is windows server 2008 R2 standered edition. I recently upgraded it to PHP version 5.3.10(thread Safe version). I Installed PHP ImageMagick version /ImageMagick-6.6.3-0-Q16-windows-dll.exe by following the steps given at http://gary-greendale.blogspot.in/2011/01/install-php-imagemagick-and-imagick-for.html
I got my php ImageMAgick working finally(after nth attempts) using command prompt. but now i am tryin to use php_imagick.dll to load iMagick Library with PHP.
After thousands of efforts and lots of dll files replaced (tried many versions)
http://valokuva.org/builds/
http:+//valokuva.org/builds/ext/vc9/nts/imagick/2011-04-25_1849/
http:+//valokuva.org/builds/ext/vc9/ts/imagick/2011-04-25_1849/
and many other thread and non thread safe versions. Please suggest me the correct version of the php_imagick.dll so that i can get it running on my server.
I am sure the issue is related to php_imagick.dll's version.
Its kinda urgent now help please
The problem is that those versions at valokuva.org are VC9 and versions of ImageMagick after 6.6.2-10 are VC10. Basically, you're going to need to downgrade to an earlier version of ImageMagick if you want to run it with those IMagick binaries.
I know this because I just dealt with it today and found the solution on an Apache forum. Once I downgraded to 6.6.2-10, it started working.
Here's a link to the forum post...

Silverlight 3 won't install on Windows XP embedded 2002

Well, I tried HARD to install silverlight 3.0 on Windows XP embedded but keeps displaying that "Install Sivlerlight Logo" as if it never picks it up or installs at all ... Anyone had same problems? Any solutions?
Consider trying to install this by copying some files around. This probably is totally unsupported, but it may work for you:
Install on your development machine the Silverlight Runtime
Copy the %programfiles%\microsoft silverlight\ ... directory structure to the XP Embedded machine
On the XP machine, as an Administrator, run "regsvr32 npctrl.dll"
You might be able to then use Silverlight content. Hope this helps.

Tomcat 5.5 as service on Windows Server 2008 64bit

Has anybody managed to get Tomcat to run as a service on Win2008 64bit? I need it for a 3rd party component that my site relies on. It works fine otherwise, but I just can't get it to run as a service. I've tried all the googling I can, and experimented with various 64bit tomcat.exe / tomcatw.exe without success. Upgrading to Tomcat 6 didn't help either.
I'm running Java 1.5 64bit.
Download apache-tomcat-6.0.30-windows-x64 version.
Extract to c:\Tomcat6
open command prompt run as Adminstrator
and go to Tomcat6\bin directory and run from command prompt>service install
Tomcat6 will install as Windows Service.
again go to Tomcat6\bin and open tomcat6w.exe run as administrator and modify your changes.
it works cool.
Download the latest builds. Your issue was the 64 bit procrun.exe/tomcatw.exe wasn't provided. The newer installers for Tomcat 5.5 and Tomcat 6 include both 32 and 64 bit and deploy the appropriate one
Extracted from http://www.openlogic.com/wazi/bid/188180/
While the Java components of Tomcat run happily under a 64 bit JVM, the installers that build the Windows service are 32 bit executables and won't work correctly under 64 bit Windows operating systems.
Fortunately, the Tomcat team has put together 64 bit versions of these executables, although they only include them in the source distribution for each version of Tomcat. If you've already installed a copy of Tomcat, here's how to update the executables:
1) Download and extract the source distribution for your version of Tomcat from OLEX
2) Find the directory tomcat-X.X.XX-src/connectors/procrun/bin/amd64/
3) Copy the executables from the above directory into the tomcat-X.X.XX/bin, overwriting the 32 bit versions
4) Run the command service.bat install. This will install the service under the displayed name Apache Tomcat (the service name will be Tomcat5)
It worked to me! And I was looking for this solution for a while...

Resources