I've just installed xampp-win32-5.5.30 and in xampp control panel both Apache and mysql started without any error but I found:
1)localhost in my browser redirects to another page localhost/dashboard/ and not the xampp start page.
2)localhost/xampp shows the following:
Index of /xampp
[ICO] Name Last modified Size Description
[PARENTDIR] Parent Directory -
Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 Server at localhost Port 80
In C:\xampp\htdocs\index.php file:
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS']))
{
$uri = 'https://';
}
else
{
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/dashboard/');
exit;
?>
Something is wrong with the XAMPP installation :-(
Is there something wrong with the installation?