View Full Version : Arcade Score issues
hammondfra
07-09-2006, 12:19 PM
I searched and didn't find anything about this, so I will ask. The arcade has been working great through testing and on the live server. But, as of yesterday no scores are being saved. When the game is finished and it does the redirect to submit a score, it takes the user back to the main forum area. I have not added any new games still the original 9 that come with the mod, the only thing I have added was the module for the arcade that was created to put on the Vbadvanced page. I was thinking an uninstall and re-install may be the ticket to fix this redirect issue. I am running the 3.5 VB. Thanks for any help on this issue.
Tyegurl
07-09-2006, 01:00 PM
I searched and didn't find anything about this, so I will ask. The arcade has been working great through testing and on the live server. But, as of yesterday no scores are being saved. When the game is finished and it does the redirect to submit a score, it takes the user back to the main forum area. I have not added any new games still the original 9 that come with the mod, the only thing I have added was the module for the arcade that was created to put on the Vbadvanced page. I was thinking an uninstall and re-install may be the ticket to fix this redirect issue. I am running the 3.5 VB. Thanks for any help on this issue.
there is a fix on here somewhere lol i am having the same issue and am searching for it....if i find it i will post it here ;)
oh and make sure if you are running vbad you add the code to the top of your index or forum page
hammondfra
07-09-2006, 01:20 PM
Thanks for the input, and am glad to see I am not the only one with this issue. What code are you refering too?
Tyegurl
07-09-2006, 01:31 PM
in your zip folder there is a file that states CMPS or vbad ONLY something to that effect anyway....you have to open it and it will tell you that the code below goes to the top of your alternate index page.....
like my vbulletin index page i changed to forum.php and my vbad page i changed to index.php
the code should go to the top of the vbad/portalindex.php page right under the <php?
mine looks like this....
<php?
// 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
// ++================================================ =========================++
// || vBadvanced CMPS v2.2.0 (vB 3.6) - 30544
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 22:31, Tue Jul 4th 2006
// ||
// ++ ================================================== ======================++
that should work....i realized i had mine on the wrong page lol or at least i think i do....i will check brb
hammondfra
07-09-2006, 01:32 PM
I didn't know we had to do that...Thanks, I guess there are little things I missed when reading up before I did the VBad mod...Thanks again....
Tyegurl
07-09-2006, 01:37 PM
still didn't work for me lol
mr.zeropage can you please help me?
i also have installed v3 arcade...should that make a difference?
3.6.0 beta 4...it worked on one score then stopped working...what have i done wrong?
MrZeropage
07-09-2006, 02:22 PM
provide ACP+FTP-Access via PM and I will look ...
Tyegurl
07-09-2006, 02:28 PM
sent and thanks a bunch!
hammondfra
07-09-2006, 03:41 PM
also sent, thanks for taking a look.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.