Reputation: 26
Just to let you know there seems to be an issue with the latest version, when selecting the php 7 option, it loads the httpd.conf rather the httd-uwamp.conf file, so cant find the php7xxxx.dll and will stop from apache from working / loading.
thanks
Upvotes: 0
Views: 1168
Reputation: 1
You should install redistributable Visual C++ 2015 x86 version on your system. Previous versions don't work well with php7. You can download it here.
Upvotes: 0
Reputation: 41
removing the double-quotes form the httpd_uwamp.conf file worked for me on both UnWamp and PHP distributions. (No spaces are in any of my path names)
i.e. change LoadModule "{PHPMODULENAME} {PHPPATH}/{PHPAPACHE2FILE}"
to LoadModule {PHPMODULENAME} {PHPPATH}/{PHPAPACHE2FILE}
Upvotes: 0