Greg Gum
Greg Gum

Reputation: 37999

PHP 5.5 Installer

I seem to be having a problem finding the PHP 5.5 msi file. I have looked carefully on the PHP site and downloaded what I thought was the msi file, but it was just the dlls.

I have found installers for multiple items (WAMP), but I just need to upgrade my PHP from 5.3.6 to 5.5, not install Apache etc.

So does anyone have a link to the 5.5 msi?

The version I need is non thread safe 86 (ie, for Windows server 2008).

Greg

Upvotes: 8

Views: 31345

Answers (2)

deblocker
deblocker

Reputation: 7697

This question seems actual again, the Windows binaries for PHP are available on SourceForge:

  • php-7.0.9-nts-Win32-VC14-x86.zip

  • php-7.0.9-nts-Win32-VC14-x64.zip

  • php-5.6.24-nts-Win32-VC11-x86.zip

  • php-5.5.38-nts-Win32-VC11-x86.zip

  • php-5.5.36-nts-Win32-VC11-x86.zip

Link: MSI package for installing non-thread-safe build of PHP.

NOTE: the title says MSI Installer, but they aren't, just only zip for manual installation.

Upvotes: 0

Alfred Xing
Alfred Xing

Reputation: 4632

There are no official installers (.msi's) for PHP, but there are binaries (they're what I use), which you can find here: http://windows.php.net/download/#php-5.5

Just extract it into some folder (say, C:\PHP), and add the bin folder to your PATH (if you want - most people do).

Upvotes: 12

Related Questions