Menu

#4 buttons in advanced administration don't work

open
nobody
None
5
2007-08-06
2007-08-06
Anonymous
No

in the Advanced Administration section, only the first three buttons ("Load Games," "Maintain Games," and "Randomize SB Scores") work. The remainder do not work.

Discussion

  • Nobody/Anonymous

    Logged In: NO

    I had the same problem,
    register globals must be set to on
    http://us3.php.net/register_globals

    or better yet, figure out which variables are used from POST or GET and then assign them yourself.

     
  • Nobody/Anonymous

    Logged In: NO

    try adding this to the top of the globals file

    /**************************************************************/
    /* This section grabs the POST Variables and assigns them */
    /* to their appropriate values */
    /* ******************************************************* */
    while(list($key,$value)=each($HTTP_POST_VARS))
    {
    ${$key}=$value;
    //echo "<br>$key = $value";
    }
    /**************************************************************/
    /* This section grabs the Get Variables and assigns them */
    /* to their appropriate values */
    /* ******************************************************* */
    while(list($key,$value)=each($HTTP_GET_VARS))
    {
    ${$key}=$value;
    // echo "$key = $value";
    }

     
  • Nobody/Anonymous

    Logged In: NO

    try adding this to the top of the globals file

    /**************************************************************/
    /* This section grabs the POST Variables and assigns them */
    /* to their appropriate values */
    /* ******************************************************* */
    while(list($key,$value)=each($HTTP_POST_VARS))
    {
    ${$key}=$value;
    //echo "<br>$key = $value";
    }
    /**************************************************************/
    /* This section grabs the Get Variables and assigns them */
    /* to their appropriate values */
    /* ******************************************************* */
    while(list($key,$value)=each($HTTP_GET_VARS))
    {
    ${$key}=$value;
    // echo "$key = $value";
    }

     

Log in to post a comment.

Auth0 Logo