View Full Version : Modify swf's to work with php5 extension
PeZzy
08-26-2007, 08:36 PM
I installed my forum as php5 files to force the server to use PHP 5. Unfortunately the SWF's that come with the ibProArcade are protected and designed for a site with index.php and not index.php5 . Is there a way to get these swf's changed? Has anyone dealt with the arcade and php5 file extensions?
MrZeropage
08-26-2007, 09:02 PM
no way to change, it is hardcoded in .swf
PeZzy
08-26-2007, 09:20 PM
I created an index.php file and put the following code into it. Hopefully it wont cause any problems for my board.
<?php
// ibProArcade
if($_POST['module'] == "pnFlashGames")
{
require_once('./global.php5');
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_INT);
$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.php5";
exit();
}
if(!empty($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET[u] = $showuser;
include "member.php5";
exit();
}
// end of ibProArcade
header( 'Location: ./index.php5' ) ;
?>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.