have solved!
in adminlogin2.php you jyst need to proove cookie control string to
setcookie("auth", "1");
Is this still valid?
I'm still learning here, I spent the last two weekends trying to figure this out.
And I've got the same problem, but not sure about html, I'm a Diesel Technician not a IT guy.
I'm assuming you just replace this line,
(!$_COOKIE["auth"] == "1")
with yours above?
<?php
/*************************************************
file: adminlogin2.php
Date: 10-Nov-2008
Author: WildWillie - Outback Computer Consultants, Inc.
description: Administrator Page for FBDj Stats
**************************************************/
require('./config.php');
$page_title = "Stats Administration";
//check for required fields from the form
if (!$_COOKIE["auth"] == "1")
{
if ( (!isset($_POST["username"])) || (!isset($_POST["password"])))
{
header("Location: adminlogin.php");
exit;
now that I have it backed up, I'll just try it.
Nope, just gave a blank white page.
Just sitting here waiting at this point.