Hallo zusammen! Ich habe mir ein Script heruntergeladen und installiert, alles funktioniert reibungslos, nur leider komm ich nicht in den Admin Bereich!
Folgende Datei regelt den Login, ich habe in SQL via phpmyadmin einen usernamen und ein passwort eingetragen, nur wird es nicht akzeptiert!
Kann mir bitte jemand helfen und mal den Code durchschaun, wo da ein Fehler ist, oder ich etwas vergessen habe zu modifizieren?
Danke schon mal im Voraus!
Grüße Roland
Folgende Datei regelt den Login, ich habe in SQL via phpmyadmin einen usernamen und ein passwort eingetragen, nur wird es nicht akzeptiert!
Kann mir bitte jemand helfen und mal den Code durchschaun, wo da ein Fehler ist, oder ich etwas vergessen habe zu modifizieren?
Danke schon mal im Voraus!
Grüße Roland
PHP-Code:
<?
/////////////////////////////
#############################
# phProfession #
# The Resume Posting Script #
# Source by Mykel Nahorniak #
#############################
/////////////////////////////
/*
This is the authentication code for
the administration section of phProfession.
To add a user, go into MySQL, and type:
INSERT into admin VALUES(
'',
'username',
'password'
);
*/
##################
# Authentication #
##################
if (!isset ($PHP_AUTH_USER)) {
Header ("WWW-Authenticate: Basic realm=\"Administration\"");
Header ("HTTP/1.0 401 Unauthorized");
echo ("Login incorrect. Names and passwords are case sensitive.");
exit;
} else {
$user = $PHP_AUTH_USER;
$password = $PHP_AUTH_PW;
$query = "select * from admin where username = '$user' and password = '$password'";
$result = mysql_db_query("jobs", $query);
if (mysql_num_rows ($result) != 1) {
Header ("WWW-Authenticate: Basic realm=\"phProfession Administration\"");
Header ("HTTP/1.0 401 Unauthorized");
echo ("Login incorrect. Names and passwords are case sensitive.");
exit;
}
}
?>
Kommentar