I'm trying to start learning PHP (.Net is my main environment) and it seems like XAMPP is the way to go. I am setting up a new Windows 10 virtual machine (build No. 10074, the last of this entry), in which all updates are installed.
I installed XAMPP without problems, starting Apache / MySQL without any problems (both regular and as a service), but when I try to switch to http: // localhost I get a message about the impossibility of connecting. I read in several places that changing the port number can help, so I changed it to 88 in the configuration (both places) and still have no luck. I even tried to connect via http: // [IP]: 88 , but still not a cube. Skype is deleted (read what causes the problems), IIS has never been installed (since there is no World Wide Web publishing service), and all this says, but I can’t connect. I even completely turned off the Windows firewall, but still nothing.
The only entries in the error log are that it seems to run a penalty minus the SSL configuration, which I don't care about:
[Wed May 20 06:19:42.427262 2015] [mpm_winnt:notice] [pid 1784:tid 596] AH00455: Apache/2.4.12 (Win32) OpenSSL/1.0.1l PHP/5.6.8 configured -- resuming normal operations [Wed May 20 06:19:42.427262 2015] [mpm_winnt:notice] [pid 1784:tid 596] AH00456: Apache Lounge VC11 Server built: Jan 28 2015 16:48:40 [Wed May 20 06:19:42.427262 2015] [core:notice] [pid 1784:tid 596] AH00094: Command line: 'C:\\dev\\xampp\\apache\\bin\\httpd.exe -d C:/dev/xampp/apache' [Wed May 20 06:19:42.427262 2015] [mpm_winnt:notice] [pid 1784:tid 596] AH00418: Parent: Created child process 2744 [Wed May 20 06:19:42.708511 2015] [ssl:warn] [pid 2744:tid 500] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [Wed May 20 06:19:42.786636 2015] [ssl:warn] [pid 2744:tid 500] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name [Wed May 20 06:19:42.817887 2015] [mpm_winnt:notice] [pid 2744:tid 500] AH00354: Child: Starting 150 worker threads.
The access log is empty, so it does not even try to connect. Here is the full httpd.conf file (the main comment blocks were removed, but single-line entries were left in case something was needed so that it wasn’t):
ServerRoot "C:/dev/xampp/apache" Listen 88 LoadModule access_compat_module modules/mod_access_compat.so LoadModule actions_module modules/mod_actions.so LoadModule alias_module modules/mod_alias.so LoadModule allowmethods_module modules/mod_allowmethods.so LoadModule asis_module modules/mod_asis.so LoadModule auth_basic_module modules/mod_auth_basic.so
Any ideas on how to do this?
source share