xampp c'é l'ho già, ma non ho capito cosa dovrei fare!!! poi mi sembra inutile... il codice non é molto lungo e soprattutto é un errore talmente banale che mi sembra impossibile non trovarlo >.<
infondo l'errore sta qui:
[php]
<?php
//ob
ob_start();
//session
session_start();
if (isset($SESSION['username']))
{
header("Location: main.php");
exit();
}
//connect
$error = 'Could not connect to the database';
mysql_connect('localhost','**','') or die($error);
mysql_select_db('my****') or die ($error);
//include functions.php phpbb script
require 'forum/includes/functions.php';
if ($_POST['login'])
{
//get form data
$username = addslashes(strip_tags(strtolower($_POST['username'])));
$password = addslashes(strip_tags($_POST['password']));
if (!$username||!$password)
echo "Please enter a username and password<p />";
else
{
//find username
$find = mysql_query("SELECT * FROM avphpbb_users WHERE username_clean='$username'");
if (mysql_num_rows($find)==0)
echo "Username not found";
else
{
while ($find_row = mysql_fetch_assoc($find))
{
//grab password hash for user
$password_hash = $find_row['user_password'];
}
$check = phpbb_check_hash($password, $password_hash);
if ($check==FALSE)
echo "Incorrect password<p />";
else if ($check==TRUE)
{
$_SESSION['username']=$username;
header("Location: main.php");
exit();
}
}
}
}
?>
[/php]
provo a guardarci ancora 1 po' semmai lascio perdere, grazie comunque
EDIT: può essere un problema di chmod e permessi? no perché lavoro su altervista, e non é consentito modificare i permessi a 777...