Apache – XAMPP Apache not starting – php7ts.dll

apachexampp

I've just installed XAMMP 7.2.2 on Vista, but am unable to start Apache. Each and every time, I get the following error message :

« Apache 2 is starting …
htttpd.exe : Syntax error on line 532 of C:/xampp/apache/conf/httpd.conf : Syntax error on line 17 of C:/xampp/apache/conf/extra/httpd-xampp.conf : Cannot load /xampp/php/php7ts.dll into server : The specified procedure cannot be found." »

The php7ts.dll file is where it should be.

Line 532 of httpd.conf says : « Include "conf/extra/httpd-xampp.conf" ».

And line 17 in that second file (httpd-xampp.conf) says: « LoadFile "/xampp/php/php7ts.dll" »

I have Visual C++ 2017 (x86) installed on Vista.

Best Answer

I encounted the same problem. After replacing all paths in httpd.conf, httpd-ssl.conf, httpd-xampp.conf with full paths like:

ServerRoot "d:/program_files/xampp/apache"

apache started.

Related Topic