Log in

View Full Version : Have any body know y this problem after i install arcade there is on the pics


didim
03-20-2007, 05:56 PM
Have any body know y this problem after i install arcade there is on the pics
thanx:confused:

MrZeropage
03-20-2007, 07:26 PM
there is some additional stuff on the left side, I guess this is confusing the layout - nothing about ibProArcade ...

didim
03-20-2007, 08:29 PM
my all other pages ok but only arcade page like this

MrZeropage
03-20-2007, 09:27 PM
seems it does manipulate the header or anything - no idea ...

maybe ask the coder of the sidebar-thing if he has any idea ?

didim
03-20-2007, 09:33 PM
i dont know any coder to help me. if u have any coder friend can u ask them pls
thanx very much.

Kacela
03-21-2007, 02:48 PM
The problem looks to be with the way you implemented the Arcade with an existing vBadvanced CMPS portal. When using a portal system, your index.php usually becomes the portal page, and the main forum page gets renamed to something else - in my case, it's homeindex.php. Double check your edits that were specified in the INFO file that accompanied the Arcade:
If you are using vbAdvanced Portal and your /index.php is not the original one from vBulletin,
you have to edit your alternate index.php:

open index.php (Or whatever the new alternate name is)

At the very beginning of the File, right after:
----------------------------------------------------------
<?php
----------------------------------------------------------

you have to insert:
----------------------------------------------------------
// 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
----------------------------------------------------------