TWLan Forum
xampp - Printable Version

+- TWLan Forum (https://twlan.org)
+-- Forum: Deutsch (https://twlan.org/forumdisplay.php?fid=1)
+--- Forum: Gott und die Welt (https://twlan.org/forumdisplay.php?fid=4)
+--- Thread: xampp (/showthread.php?tid=1288)



xampp - Markus4897 - 30.03.2009

Ich habe mir mal einen eigenen Server mit XAMP gemacht, uind nun möchte ich, dass man nicht immer http://localhost/start.html eingeben muss, sondern nur http://localhost eingeben muss, wie bei DSLan


RE: xampp - TimLim - 30.03.2009

über htacces
einfach googlen
oder start.html
index.html nennen


RE: xampp - BritneyBitch - 30.03.2009

Die Datei, die am Anfang stehn soll, muss index.html heißen.


RE: xampp - TimLim - 30.03.2009

@Bitch: in der Htaccess kann man es mit directory index oder so definieren


RE: xampp - Markus4897 - 02.04.2009

Bei diesen PHP-Code zeigt er mir an, wenn ich alles richtig eingegeben habe, "Zugriff verweigert" an.
PHP Code:
<?php
$username 
$_POST["username"];
$passwort $_POST["password"];
$passwort md5($password);

$log 0;
$admindatei fopen ("admin.txt","r");
while (!
feof($admindatei))
   {
   
$zeile fgets($admindatei,500);
   
$userdata explode("|"$zeile);

   if (
$userdata[0]==$username and
   
$passwort==trim($userdata[1]))
      {
      echo 
"Hallo Admin";
      
$str '<a href="localhost/phpmyadmin">Datenbank</a>';
      echo (
$str);
      
$log 1;
   }
}
fclose($admindatei);

if (
$log==0)
   {
   echo 
"Zugriff verweigert";
   
$str ' <a href="index.html>zurück</a>';
   echo (
$str);
   }
?>