PDA

View Full Version : scores wont save, error adding data on index


Derekclarke
10-12-2007, 03:18 PM
Ok, i have just installed this on a forum, and cannot get the scores to save.

I put the text into my alternative index.php page.

now at the top of the index page is the following.


// ibProArcade if($_POST['module'] == "pnFlashGames") { require_once('./global.php'); switch($_POST['func']) { case "storeScore": $_GET['act'] = "Arcade"; $_GET['module'] = "arcade"; $_GET['do'] = "pnFStoreScore"; break; case "saveGame": $_GET['do'] = "pnFSaveGame"; break; case "loadGame": $_GET['do'] = "pnFLoadGame"; break; case "loadGameScores": $gid = $vbulletin->input->clean_gpc('p', 'gid', TYPE_INT); $uid= $vbulletin->userinfo['userid']; $game = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1"); $scores = $game[score]; if($scores != false) { //Return true print "&opSuccess=true&gameScores=$scores&endvar=1"; //send endvar to keep opSuccess separate from all other output from PostNuke } else { print "&opSuccess=false&error=Error&endvar=1"; } break; } } $act = $_GET[act]; $autocom = $_GET[autocom]; $showuser= $_GET[showuser]; if($act == "Arcade" || $autocom=="arcade") { include "arcade.php"; exit(); } if(!empty($showuser) && $showuser >= 1) { $u = $showuser; $_GET[u] = $showuser; include "member.php"; exit(); } // end of ibProArcade
Warning: Cannot modify header information - headers already sent by (output started at /home2/ultimate/public_html/forum/index.php:22) in /includes/functions.php on line 3604

can anyone help with this issue?

Many Thanks
Derek Clarke

Derekclarke
10-17-2007, 09:29 AM
Ok i have found the problem.....

Using vBa CMPS v3.0 RC2 this error is received.

looking at vBa CMPS v3.0 RC1 their is only 1 change between the two files.

in vBa CMPS v3.0 RC2 the following was removed.


define('NO_REGISTER_GLOBALS', 1);


so to fix the problem locate define('NO_REGISTER_GLOBALS', 1); and enter define('NO_REGISTER_GLOBALS', 1); underneath it.


Problem solved.

mrjefferson75
11-04-2007, 07:16 PM
what file or template are you looking in?