A few simple questions :) | Peter's Sports League Standings | Forum
Back to the sports standings script page
5:30 am
Well Peter, this is what I get when I click on standindgs.php after installation:
Notice: Undefined index: team in C:\\wamp\\www\\standings\\standings.php on line 46
Notice: Undefined index: history in C:\\wamp\\www\\standings\\standings.php on line 47
And when I go to admin_files, i can't opet not even one file without errors. For example, this is what I get when I click on seasons.php:
Notice: Undefined variable: text_no_perm in C:\\wamp\\www\\standings\\admin_files\\seasons.php on line 61
7:01 am
Well, here are a couple of more questions:
1) Is there a admin panel at all ?
2) When I go to secure.php, and when i insert admin as a username, and theblog as the password, it just leaves me on secure.php
Then I try going into admin_files directory, and add a new conference, but it doesn't work. It just displays errors. Same thing goes when I try to add a league, or open any of admin files. They simply won't open :(
Hi Henky, before trying to access anything else, please read and follow the "Fresh install instructions" on the main page or in readme.txt.
Hi, the admin panel is at update.php.
In standings.php, try replacing lines 45 through 47 with:
$confid = intval($_GET['conf']);
}
else {
$confid = 0;
}
if (isset($_GET['team'])) {
$team = intval($_GET['team']);
}
else {
$team = 0;
}
if (isset($_GET['history'])) {
$history = intval($_GET['history']);
}
else {
$history = 0;
}