mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
require_once('b2config.php');
|
||
|
|
||
|
/* connecting the db */
|
||
|
$connexion = @mysql_connect($server,$loginsql,$passsql) or die("Can't connect to the database<br>".mysql_error());
|
||
|
mysql_select_db("$base");
|
||
|
|
||
|
/* checking login & pass in the database */
|
||
|
function veriflog() {
|
||
|
global $HTTP_COOKIE_VARS;
|
||
|
global $tableusers,$tablesettings,$tablecategories,$tableposts,$tablecomments;
|
||
|
|
||
|
if (!empty($HTTP_COOKIE_VARS["cafeloguser"])) {
|
||
|
$user_login = $HTTP_COOKIE_VARS["cafeloguser"];
|
||
|
$user_pass_md5 = $HTTP_COOKIE_VARS["cafelogpass"];
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (!($user_login != ""))
|
||
|
return false;
|
||
|
if (!$user_pass_md5)
|
||
|
return false;
|
||
|
|
||
|
$query = " SELECT user_login, user_pass FROM $tableusers WHERE user_login = '$user_login' ";
|
||
|
$result = @mysql_query($query) or die("Query: $query<br /><br />Error: ".mysql_error());
|
||
|
|
||
|
$lines = mysql_num_rows($result);
|
||
|
if ($lines<1) {
|
||
|
return false;
|
||
|
} else {
|
||
|
$res=mysql_fetch_row($result);
|
||
|
if ($res[0]==$user_login && md5($res[1])==$user_pass_md5) {
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#if ( $user_login!="" && $user_pass!="" && $id_session!="" && $adresse_ip==$REMOTE_ADDR) {
|
||
|
# if ( !(veriflog()) AND !(verifcookielog()) ) {
|
||
|
if (!(veriflog())) {
|
||
|
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
|
||
|
header("Cache-Control: no-cache, must-revalidate");
|
||
|
header("Pragma: no-cache");
|
||
|
if (!empty($HTTP_COOKIE_VARS["cafeloguser"])) {
|
||
|
$error="<b>Error</b>: wrong login or password";
|
||
|
}
|
||
|
include("b2login.php");
|
||
|
exit();
|
||
|
}
|
||
|
#}
|
||
|
?>
|