Install both 32 bit and 64 bit WAMP server

Summary

WAMP server, a popular platform for PHP development on Windows, can face configuration conflicts when both 32-bit and 64-bit versions are installed, especially if the 64-bit setup overwrites the 32-bit configuration. This issue arises because the 32-bit wampmanager.conf file is updated to point to 64-bit services, preventing older 32-bit applications from functioning correctly. To resolve this, developers need to manually modify the 32-bit wampmanager.conf to ensure it references its own 32-bit services. After starting the 32-bit WAMP, any services that fail to start (indicated by a red tray icon) must be reinstalled individually via the WAMP menu. Restarting all services should then restore the environment, making the original 32-bit applications accessible again.

WAMP server is a platform tool for serving PHP applications on Windows. It includes a combination of Apache, MySQL and PHP service which can help developers test or run PHP applications with minimal setup.

Sometimes one would first have a 32 bit version of WAMP installed and a few applications have been configured. But later s/he would mistakenly installed a 64 bit version of WAMP and somehow the 32 bit version configuration is overwritten. This causes a problem where the old applications configured for 32 bit WAMP will not function any more even if the 32 bit version of WAMP server is started.

The reason for this is that the 32 bit version wampmanager.conf is overwritten and all services are pointing to the 64 bit version services. Hence even if the 32 bit version WAMP server is started, the services started are 64 bit indeed.

To recover the 32 bit version applications, only the configuration file needs to be updated to point to 32 bit service again. In C:\wamp, change the wampmanager.conf to below.

Now start the 32 bit wampmanager.exe in C:\wamp and n the desktop tray, the red icon would appear which indicates one or more services are not up. In this case, the service may need to be reinstalled. Click the red icon and select each service on the menu and click Install Service.

Restart all the services and the icon will become green and the old applications can be accessed.

PHP WAMP 64 BIT 32 BIT MULTIPLE VERSION

  RELATED

  COMMENTS

0

No comment for this article.