Page 1 of 1

Loading........

PostPosted: 05. August 2008 04:49
by Ozo
Hello!

I've used Xampp for a couple of weeks now.
It has been working perfectly until now. When i try to connect to http://localhost it starts loading, keeps loading and loading....

Any clues?

Thanks in advance!

PostPosted: 05. August 2008 09:08
by guw
Check if you still have the index page in your root (probably index.php).

PostPosted: 05. August 2008 16:11
by Ozo
hmm

in xampp\htdocs\index.php
Code: Select all
<?php
   if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
      $uri = 'https://';
   } else {
      $uri = 'http://';
   }
   $uri .= $_SERVER['HTTP_HOST'];
   header('Location: '.$uri.'/xampp/');
   exit;
?>
Something is wrong with the XAMPP installation :-(