PDA

View Full Version : Redirecting/Scores not saving


amagazi
02-03-2007, 02:28 PM
I have a problem.

Installed the latest version.

When the game is completed: I am redirected to the index.php and my scores are not saved.

Using the lasest vbAdvanced.

Any suggestions?

I'm sure this has been answered, but hell, I'm not even sure what to search for.

- Team Amagazi

da420
02-03-2007, 03:21 PM
Use the readme and make the edit specific for vBAdvanced users.

Robru
02-03-2007, 07:13 PM
Put in the index.php of your vBAdvanced:

After

<?php

This

// 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];
$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 modification

amagazi
02-04-2007, 03:18 AM
Tried using this code.. I get this error:


Warning: main(arcade2.php) [function.main]: failed to open stream: No such file or directory in /data/12/1/3/68/1166068/user/1239319/htdocs/forums/index.php on line 20

Warning: main() [function.include]: Failed opening 'arcade2.php' for inclusion (include_path='.:/usr/services/vux/lib/php') in /data/12/1/3/68/1166068/user/1239319/htdocs/forums/index.php on line 20


edit: Tried changing line 20 to arcade.php from arcade2.php
Got this error:

This score was not submitted from the game. Your score will not be saved.

Fixed.. needed some AdminCP changes.

Cybershaolin
02-11-2007, 01:01 AM
Fixed or nor fixed?? What do you mean by needed some admincp changes??? I have the same problem so I'd like to know.