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.
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.