View Full Version : CMPS & IbProArcade problems
Skaterscafe.com
01-09-2005, 02:43 PM
I had the CMPS installed here and after the install we had a problem, anytime a game would be clicked on it would go to the CMPS main page (index) and not play the game. I made the old index page the index again and the games worked again.
Any ideas???
Brian
01-09-2005, 04:28 PM
You probably need to apply the changes you made to your forum's index.php file to the CMPS index.php file.
Skaterscafe.com
01-18-2005, 08:44 PM
Hummm, that seems to do the trick!
Thanks Brian.
last time
02-23-2005, 12:00 AM
I have the same problem, except after that fix it still does the "return to frontpage" when submitting highscores and doesnt record them. Any clue where to edit that?
Brian
02-23-2005, 10:34 AM
Just below the <?php code in the file.
last time
02-23-2005, 10:43 AM
Actually I just fixed it a couple of minutes ago. I added the portion of the arcade hack back into the index.php (the cmps_index.php renamed to index.php) and it works like a charm
mindfrost82
06-16-2005, 10:36 PM
I'm having this issue.
I don't actually use the portal index.php, but I modified my forums index.php to display the left column.
Here's the top of my index.php:
<?php
define('VBA_PORTAL', true);
define('VBA_PAGE', 'forums_home');
// ibproarcade modification
if(isset($act) && $act == "Arcade") {
include "arcade.php";
exit();
}
if(isset($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET['u'] = $showuser;
include "member.php";
exit();
}
// end of ibproarcade modification
untold4you
06-17-2005, 12:23 PM
First remove previous hack from ibpro
Open:
/forum/index.php
Find:
// ######################## START MAIN SCRIPT ############################
Below add:
// ibproarcade modification
globalize($_REQUEST, array(
'act' => STR_NOHTML,
'showuser' => INT
));
if(isset($act) && $act == 'Arcade') {
include "arcade.php";
exit();
}
if(isset($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET['u'] = $showuser;
include "member.php";
exit();
}
// end of ibproarcade modification
Siemens
09-13-2005, 05:23 AM
First remove previous hack from ibpro
Open:
/forum/index.php
Find:
// ######################## START MAIN SCRIPT ############################
Below add:
// ibproarcade modification
globalize($_REQUEST, array(
'act' => STR_NOHTML,
'showuser' => INT
));
if(isset($act) && $act == 'Arcade') {
include "arcade.php";
exit();
}
if(isset($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET['u'] = $showuser;
include "member.php";
exit();
}
// end of ibproarcade modification
you are my hero guy, thx a lot for this it works fine... ;) :D :)
spetactical
02-03-2006, 03:42 PM
Just below the <?php code in the file.
Which file? And what exactly should I change?
sscrash
05-11-2006, 06:35 AM
Can anyone help...my high scores dont submit...it goes to my home page
Thx
ss
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.