porque é que meus links não funcionam
Olá pessoal.
Fiz esta página de login com acesso restrito via dw - sem compplicação.
Ela funciona perfeitamente no localhost da minha maquina - (wampserver)
Quando hospedo ela no servidor do meu cliente ela não funciona.
Já alterei tudo normalmente - usuario, senha, bd
Onde estou errando?
O endereço da página é www.objetivopirassununga.com.br
<?php require_once('Connections/config.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['login'])) {
$loginUsername=$_POST['login'];
$password=$_POST['senha'];
$MM_fldUserAuthorization = "nivel";
$MM_redirectLoginSuccess = "acesso/painel.php";
$MM_redirectLoginFailed = "acesso/erro.html";
$MM_redirecttoReferrer = false;
mysql_select_db($database_config, $config);
$LoginRS__query=sprintf("SELECT login, senha, nivel FROM usuarios WHERE login=%s AND senha=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $config) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = mysql_result($LoginRS,0,'nivel');
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="[http://www.w3.org/1999/xhtml">](http://www.w3.org/1999/xhtml)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Colégio Objetivo - Pirassununga - O MELHOR ENSINO. A MELHOR QUALIDADE.</title>
<link href="css/principal.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="tudo">
<div id="fundologo">
<div id="laranjas">
<div id="central">
<div id="table3">
<form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<table width="241" border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="2" align="center">Login - Usuários</td>
</tr>
<tr>
<td width="104">Login</td>
<td width="236"><label for="login"></label>
<input type="text" name="login" id="login" /></td>
</tr>
<tr>
<td>Senha</td>
<td><label for="senha"></label>
<input type="password" name="senha" id="senha" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="logar" id="logar" value="Login" /></td>
</tr>
</table>
</form>
</div><!--fim de table3-->
</div><!--fim da div id centro-->
</div><!--fim de laranjas-->
</div><!--fim de fundologo-->
</div><!--fim da div tudo-->
</body>
</html>Discussão (1)
Carregando comentários...