
02-12-2006, 03:26 PM
|
|
|
Join Date: Sep 2005
Location: Canada
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by utw-Mephisto
Add this to your index.php right after <?php:
PHP Code:
// ibproarcade modification
if($_POST['module'] == "pnFlashGames"){
$_GET[act] = "Arcade";
$_GET['module'] = "arcade";
}
if($_POST['func'] == "storeScore"){
$_GET['do'] = "pnFStoreScore";
}
if($_POST['func'] == "saveGame"){
$_GET['do'] = "pnFSaveGame";
}
if($_POST['func'] == "loadGame"){
$_GET['do'] = "pnFLoadGame";
}
$act = $_GET[act];
$showuser= $_GET[showuser];
if($act == "Arcade") {
include "arcade.php";
exit();
}
if(!empty($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET[u] = $showuser;
include "member.php";
exit();
}
// end of ibproarcade modification
So your index should look something like
PHP Code:
<?php
// ++=========================================================================++
// || vBadvanced CMPS v2.0.0 (vB 3.5) - 9656
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 03:54, Fri Dec 9th 2005
// ||
// ++ ========================================================================++
// ibproarcade modification
if($_POST['module'] == "pnFlashGames"){
$_GET[act] = "Arcade";
$_GET['module'] = "arcade";
}
if($_POST['func'] == "storeScore"){
$_GET['do'] = "pnFStoreScore";
}
if($_POST['func'] == "saveGame"){
$_GET['do'] = "pnFSaveGame";
}
if($_POST['func'] == "loadGame"){
$_GET['do'] = "pnFLoadGame";
}
$act = $_GET[act];
$showuser= $_GET[showuser];
if($act == "Arcade") {
include "arcade.php";
exit();
}
if(!empty($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET[u] = $showuser;
include "member.php";
exit();
}
// end of ibproarcade modification
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'adv_index');
define('VBA_PORTAL', true);
define('VBA_SCRIPT', 'CMPS');
// ============================================
// Enter the full path to your forum here
// Example: /home/vbadvanced/public_html/forum
// ============================================
chdir(xxxxxx);
// ============================================
// No Further Editing Necessary!
// ============================================
$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();
require_once('./global.php');
print_portal_output($home);
?>
@MrZeropage: Cant you add that to the readme, I guess it must have been answered already a gazillion time but the thread is just tooo huge 
|
For me for some reason it's not working I get this error
Quote:
Notice: Undefined index: module in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 12
Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 16
Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 19
Notice: Undefined index: func in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 22
Notice: Use of undefined constant act - assumed 'act' in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 25
Notice: Undefined index: act in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 25
Notice: Use of undefined constant showuser - assumed 'showuser' in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 26
Notice: Undefined index: showuser in /var/www/vhosts/mywebsite.com/httpdocs/index.php on line 26[/PHP]
|
|