PDA

View Full Version : Can't get it to save score


talenak
03-25-2007, 11:23 PM
OK, I have a portal. My forum is on forum.php and index.php displays the portal.

So when I add the code in the pop up of the admin panel > arcade > Information I get this error:

Parse error: syntax error, unexpected T_DO, expecting ']' in path/forum.php on line 13


When I add the code from this thread (https://vborg.vbsupport.ru/showthread.php?t=142617&highlight=vbadvanced+other+INFO+Portal) in the archive (I'm not sure where the thread referred to in information is at) it's just like i never added the edit. Doesn't save score and redirects me to home.



The code in the pop up is below. it's the $_GET[do] = "pnFStoreScore"; that is the line the error reports.

// 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_NOHTML);
$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


LOL, i found the text in the zip, I thought it was a thread for some reason. But it doesn't do anything. Same as the link to the other thread in my original post. It just redirects me to index.php and doesn't save the score.

ok, i tried editing index.php and it worked.

The pop-up tells me to edit forum.php

So, I just don't know.

MrZeropage
03-26-2007, 06:20 PM
oh ok, sorry - will fix that information *shame*

mescalin
03-27-2007, 05:33 PM
i have the same problem.. My forum is also located in forum.php and i can not save scores.

I tried inserting the code to forum.php but i got the same error..

plzz help me:)

MrZeropage
03-27-2007, 06:23 PM
it has to be inserted in index.php :)

mescalin
03-27-2007, 06:54 PM
Parse error: parse error, unexpected T_DO, expecting ']' in /big/home/madeintu/public_html/estanbul/index.php on line 14

it gives that error when i insert into index.php :(

anyway i duplicated my forum.php as index.php and inserted the portal codes to that file with just deleting $forumbits etc. it seems working now :)

thanks for ur help..

yetersiz
05-09-2007, 04:35 PM
""Parse error: syntax error, unexpected T_DO, expecting ']' in .../index.php on line 12""

i added code to my portal page but i am giving error too...

I found:
Solution for VBAdvanced is in ibproarcade zip

c u