Hallo,
ich habe folgendes Problem mit dem dem folgenden Script.
Die Session wird nicht registriert, gespeichert.
Wer weiß woran es liegen kann? Danke für die Hilfe.
Es ist folgendes installiert:
PHP Version 5.0.4
Folgende Konfiguration:
'../configure' '--prefix=/usr' '--datadir=/usr/share/php5' '--mandir=/usr/share/man' '--bindir=/usr/bin' '--libdir=/usr/lib' '--includedir=/usr/include' '--with-_lib=lib' '--sysconfdir=/etc/php5/apache2' '--with-config-file-path=/etc/php5/apache2' '--with-config-file-scan-dir=/etc/php5/conf.d' '--with-exec-dir=/usr/lib/php5/bin' '--enable-magic-quotes' '--enable-libxml' '--enable-session' '--with-pcre-regex' '--enable-xml' '--enable-simplexml' '--enable-spl' '--enable-safe-mode' '--enable-sigchild' '--disable-debug' '--enable-memory-limit' '--enable-inline-optimization' '--disable-rpath' '--with-apxs2=/usr/sbin/apxs2' '--disable-all' '--disable-cli'
Register_Globals OFF
DANKE FÜR DIE HILFE
ich habe folgendes Problem mit dem dem folgenden Script.
Die Session wird nicht registriert, gespeichert.
Wer weiß woran es liegen kann? Danke für die Hilfe.
PHP-Code:
<?php
session_start();
$username = $_REQUEST["username"];
$passwort = $_REQUEST["passwort"];
include('config.php');
$l_file = "german.php";
if (is_file($l_file)) {
include($l_file);
}
else
{
include("german.php");
}
$passwort = md5($passwort);
if ((!isset($username)) OR (!isset($passwort)))
{
die ($verfy_no_log_1);
}
$conn = @mysql_connect($dbserver,$dbuser,$dbpass);
if (!$conn)
{
die ($verfy_no_db_1);
}
mysql_select_db($dbname,$conn);
$query = "SELECT pass FROM pass WHERE user = '".$username."'";
$result = mysql_query($query,$conn);
$zeileholen = mysql_fetch_array($result,MYSQL_ASSOC);
mysql_close($conn);
if (!$zeileholen)
{
die ($verfy_no_name);
}
if ($zeileholen["pass"] <> $passwort)
{
die ($verfy_no_pass);
}
session_register('username');
header ("Location:seite.php");
?>
PHP Version 5.0.4
Folgende Konfiguration:
'../configure' '--prefix=/usr' '--datadir=/usr/share/php5' '--mandir=/usr/share/man' '--bindir=/usr/bin' '--libdir=/usr/lib' '--includedir=/usr/include' '--with-_lib=lib' '--sysconfdir=/etc/php5/apache2' '--with-config-file-path=/etc/php5/apache2' '--with-config-file-scan-dir=/etc/php5/conf.d' '--with-exec-dir=/usr/lib/php5/bin' '--enable-magic-quotes' '--enable-libxml' '--enable-session' '--with-pcre-regex' '--enable-xml' '--enable-simplexml' '--enable-spl' '--enable-safe-mode' '--enable-sigchild' '--disable-debug' '--enable-memory-limit' '--enable-inline-optimization' '--disable-rpath' '--with-apxs2=/usr/sbin/apxs2' '--disable-all' '--disable-cli'
Register_Globals OFF
DANKE FÜR DIE HILFE
Kommentar