Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Nelson
Hangin' Around



Joined: Sep 25, 2003
Posts: 30

PostPosted: Sun Feb 12, 2006 5:32 pm Reply with quote

Hi All,

I have a problem with some code that I hope someone can help me with:

I have been getting the following error:

Code:
[12-Feb-2006 18:05:26] PHP Warning:  extract(): First argument should be an array in /home/xxx/xxx/xxx/index.php on line 75


I looked up the array argument, and it is in two places.

The first is here:

Code:
is_user($_GET['u']);

$sql = "SELECT * FROM nuke_session where uname='$nukeUser'";
$result = mysql_query($sql);
$sessionData = mysql_fetch_array($result);
extract($sessionData);
if ($guest!=0)
{
        header("location: /modules.php?name=playchess");
}


The second is a bit longer:

Code:
$sql = "SELECT playerID, password as pass, nick as user FROM players where nick='$nukeUser'";

$result = mysql_query($sql);
$playerData = mysql_fetch_array($result);
extract($playerData);
if (!mysql_num_rows($result)) {

/*********************************************************************************/
/* No matching user was found in the player table so we will create a new user   */
/* based on the nuke_user account information.  Since nuke does not require a    */
/* real name (and Chess does), if no name is entered in nuke then we will use the*/
/* nuke nickname as the username.                                                */
/*********************************************************************************/

        $nukeFirstName = explode(' ', $nukeName);
        $nukeFirstName = str_replace(' ','',$nukeFirstName[0]);
        if (empty($nukeFirstName)) $nukeFirstName = $nukeUser;
        $nascimento = "$nano-$nmes-$ndia";
        $tmpQuery = "INSERT INTO players (ativo,validation,password, firstName, nick, email, nascimento, sexo, rua, bairro, cidade, cep, uf, pais)
        VALUES ('1','','$pwd', '$nukeFirstName', '$nukeUser', '$nukeEmail', '".$nascimento."', '".$_POST['sexo']."', '".$_POST['rua']."', '".$_POST['bairro']."', '".$_POST['cidade']."', '".$_POST['cep']."', '".$_POST['uf']."','".$_POST['pais']."')";
        @mysql_query($tmpQuery);

        /* get ID of new player */

        $_SESSION['playerID'] = @mysql_insert_id();

        /* set History format preference */

        $tmpQuery = "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'history', 'pgn');";

        /* set Theme preference */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'theme', 'beholder');";

        /* set Color Theme preference */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'colortheme', '$CFG_DEFAULT_COLOR_THEME');";

        /* Board Size */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'boardSize', '50');";

        /* Language */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'language', '$language');";

        /* Auto Accept */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoaccept', '0');";

        /* set auto-reload preference */

        if (is_numeric($_POST['txtReload'])) {

                if (intval($_POST['txtReload']) >= $CFG_MINAUTORELOAD)
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$_POST['txtReload'].")";
                else
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$CFG_MINAUTORELOAD.")";
        }

        /* set email notification preference */

        if ($CFG_USEEMAILNOTIFICATION) {
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'emailnotification', '".$_POST['txtEmailNotification']."')";
        }

/*********************************************************************************/
/* Save the player record and preferences record.                                */
/*********************************************************************************/

        @mysql_query($tmpQuery);

/*********************************************************************************/
/* If you want to email a confirmation email then uncomment and modify this code.*/
/*********************************************************************************/
/*        mail("$row[firstName] <$row[email]>","Chess Knights - Account activated","
                $row[firstName], welcome to The Chess Knights!

        Your account was activated and you can log in trough the url:

        $CFG_SITE_URL
       
        Your username is: $row[nick]

        ","From: $CFG_EMAIL");
*/
/*********************************************************************************/
/* A new record has been added to the Chess user table.  Now, force return to    */
/* nuke and it should all pass thru to Chess server and log you in.              */
/*********************************************************************************/

        header("location: /modules.php?name=playchess");
        die('New User Created!');
}


Any ideas on what could be the problem? This code WAS working with no errors, but now I have been getting that pesky array error. Any help would be greatly appreciated.

Thanks,

Nelson
 
View user's profile Send private message Send e-mail Visit poster's website
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Mon Feb 13, 2006 1:05 am Reply with quote

I may be missing something in your logic, but where is $nukeUser getting assigned? It would seem that if there isn't a record to retrieve then no array is assigned and extract() will fail.

Try adding
die(gettype('type = '.$sessionData));
after
$sessionData = mysql_fetch_array($result);
 
View user's profile Send private message
Nelson







PostPosted: Mon Feb 13, 2006 1:41 am Reply with quote

Raven wrote:
I may be missing something in your logic, but where is $nukeUser getting assigned? It would seem that if there isn't a record to retrieve then no array is assigned and extract() will fail.

Try adding
die(gettype('type = '.$sessionData));
after
$sessionData = mysql_fetch_array($result);


I will try your suggestion, Raven, thanks. I will let you know if it clears the error.

Strangely, when you wrote this for me a couple years ago, it was working fine at that time. Do you think perhaps the recent php versions is more sensitive and picked up the error now? Just wondering...

Here is the whole document:

Code:
<?

session_start();

/*********************************************************************************/
/* This routine is moved up here so that all code below can use it if needed.    */
/*********************************************************************************/

if ($_COOKIE["cookie_language"] != "")
                $language = $_COOKIE["cookie_language"];

if ($_GET["language"] != "")
                $language = $_GET["language"];

if ($language=="")
                $language=$CFG_DEFAULT_LANGUAGE;

/* Language selection */

require "languages/english/strings.inc.php";

/*********************************************************************************/
/* This routine is borrowed from nuke and modified for this program.  It will    */
/* parse the user string passed from nuke to determine the user nick and password*/
/*********************************************************************************/

function is_user($user) {

        global $uid, $pwd, $nukeUser, $nukeEmail, $nukeName;

    if(!is_array($user)) {
                $user = base64_decode($user);
                $user = explode(":", $user);

        $uid = "$user[0]";
                $pwd = "$user[2]";

    } else {
        $uid = "$user[0]";
                $pwd = "$user[2]";
    }

    $uid = addslashes($uid);
    $uid = intval($uid);

    if ($uid != "" AND $pwd != "") {

                $sql = "SELECT username, user_password, user_email, name FROM nuke_users WHERE user_id='$uid'";
                $result = mysql_query($sql);
                $row = mysql_fetch_array($result);
                $nukeUser = $row['username'];
                $pass = $row['user_password'];
                $nukeEmail = $row['user_email'];
                $nukeName = $row['name'];
                if($pass == $pwd && $pass != "") {
                    return 1;
                }
    }
    return 0;
}

require_once("config.php");

$dbi = @mysql_connect($CFG_SERVER, $CFG_USER, $CFG_PASSWORD, $dbi, MYSQL_CLIENT_COMPRESS) or die("Unable to connect to MySQL Server.  MySQL said: ".mysql_error());
$dbc = @mysql_select_db($CFG_DATABASE, $dbi) or die('Connection problem to Database. MySQL said '.mysql_error());

/*********************************************************************************/
/* Is this a valid active nuke user? If so then there should be a record in the  */
/* nuke_sessions table.  If not, then user is bounced back to nuke.              */
/*********************************************************************************/

is_user($_GET['u']);
$sql = "SELECT * FROM nuke_session where uname='$nukeUser'";
$result = mysql_query($sql);
$sessionData = mysql_fetch_array($result);
extract($sessionData);
if ($guest!=0)
{
        header("location: /modules.php?name=playchess");
}

/*********************************************************************************/
/* Okay.  A session record was found so let's see if the username is in the      */
/* player table.                                                                 */
/*********************************************************************************/

$sql = "SELECT playerID, password as pass, nick as user FROM players where nick='$nukeUser'";
$result = mysql_query($sql);
$playerData = mysql_fetch_array($result);
extract($playerData);
if (!mysql_num_rows($result)) {

/*********************************************************************************/
/* No matching user was found in the player table so we will create a new user   */
/* based on the nuke_user account information.  Since nuke does not require a    */
/* real name (and Chess does), if no name is entered in nuke then we will use the*/
/* nuke nickname as the username.                                                */
/*********************************************************************************/

        $nukeFirstName = explode(' ', $nukeName);
        $nukeFirstName = str_replace(' ','',$nukeFirstName[0]);
        if (empty($nukeFirstName)) $nukeFirstName = $nukeUser;
        $nascimento = "$nano-$nmes-$ndia";
        $tmpQuery = "INSERT INTO players (ativo,validation,password, firstName, nick, email, nascimento, sexo, rua, bairro, cidade, cep, uf, pais)
        VALUES ('1','','$pwd', '$nukeFirstName', '$nukeUser', '$nukeEmail', '".$nascimento."', '".$_POST['sexo']."', '".$_POST['rua']."', '".$_POST['bairro']."', '".$_POST['cidade']."', '".$_POST['cep']."', '".$_POST['uf']."','".$_POST['pais']."')";
        @mysql_query($tmpQuery);

        /* get ID of new player */

        $_SESSION['playerID'] = @mysql_insert_id();

        /* set History format preference */

        $tmpQuery = "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'history', 'pgn');";

        /* set Theme preference */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'theme', 'beholder');";

        /* set Color Theme preference */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'colortheme', '$CFG_DEFAULT_COLOR_THEME');";

        /* Board Size */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'boardSize', '50');";

        /* Language */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'language', '$language');";

        /* Auto Accept */

        $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoaccept', '0');";

        /* set auto-reload preference */

        if (is_numeric($_POST['txtReload'])) {

                if (intval($_POST['txtReload']) >= $CFG_MINAUTORELOAD)
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$_POST['txtReload'].")";
                else
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'autoreload', ".$CFG_MINAUTORELOAD.")";
        }

        /* set email notification preference */

        if ($CFG_USEEMAILNOTIFICATION) {
                $tmpQuery .= "INSERT INTO preferences (playerID, preference, value) VALUES (".$_SESSION['playerID'].", 'emailnotification', '".$_POST['txtEmailNotification']."')";
        }

/*********************************************************************************/
/* Save the player record and preferences record.                                */
/*********************************************************************************/

        @mysql_query($tmpQuery);

/*********************************************************************************/
/* If you want to email a confirmation email then uncomment and modify this code.*/
/*********************************************************************************/
/*        mail("$row[firstName] <$row[email]>","Chess Knights - Account activated","
                $row[firstName], welcome to The Chess Knights!

        Your account was activated and you can log in trough the url:

        $CFG_SITE_URL
       
        Your username is: $row[nick]

        ","From: $CFG_EMAIL");
*/
/*********************************************************************************/
/* A new record has been added to the Chess user table.  Now, force return to    */
/* nuke and it should all pass thru to Chess server and log you in.              */
/*********************************************************************************/

        header("location: /modules.php?name=playchess");
        die('New User Created!');
}

/*********************************************************************************/
/* User is a valid nuke user and a valid Chess player, so let's play Chess!!!    */
/*********************************************************************************/

if (isset($user)&&isset($pass)){

                $_POST['pwdPassword'] = $pass;
                $_POST['txtNick'] =  $user;
                $_POST['ToDo'] = "Login";

                session_register(_POST);

                header("location: mainmenu.php");

                exit;
}

?>


Very Happy
 
Nelson







PostPosted: Mon Feb 13, 2006 1:51 am Reply with quote

No, didnt work...

I got a blank screen with the single word, 'string'

Also, I got this as my url:

Edited by Montego: I removed the complete URL string as it had a session id in it and I was concerned that someone could possible use it for not so nice purposes... I have PM'd Raven with the link you posted.
 
Raven







PostPosted: Mon Feb 13, 2006 8:29 am Reply with quote

Yes, it did work. You should have gotten a blank screen with the variables type. It's a string and not an array, exactly as I suspected. Your query is not working.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©