PDA

View Full Version : Please Hellppsss No score arcade forum.php


memomemo
09-19-2006, 12:39 PM
Hello

I am setup CMS portal in http://www.forumsitesi.info

forum index.php renname > forum.php = ok
vb configiration > index change > forum = ok
Arcade game
http://www.forumsitesi.info/forum/upload/arcade.php = ok
but
This page Score send >> index.php = BAD

I am cant find change.
This score send how forum.php


Ok well i know what the problem is the portal of my forum is index.php and the actual forum is forum.php. The arcade keeps trying to submit it to: index.php?act=Arcade&do=newscore when it should submit it to forum.php?act=Arcade&do=newscore. Ive looked through the source code and didnt find where it says to do it in index. It must be their sumwhere and i missed it can anyone help?

Please hepll

stangger5
09-20-2006, 07:38 AM
If you are using vbAdvanced Portal and your /index.php is not the original one from vBulletin,
you have to edit your alternate index.php:

open index.php

At the very beginning of the File, right after:
----------------------------------------------------------
<?php
----------------------------------------------------------

you have to insert:
----------------------------------------------------------
// 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
----------------------------------------------------------


Otherwise your Scores won't be recorded :)

Our Sponsors
 

ninni
10-10-2006, 01:12 PM
I did the modification, but I still have the same problem. No scores are being saved.

Cocko
11-18-2006, 09:08 AM
I did the modification, but I still have the same problem. No scores are being saved.

me too :(
any hints about ?

vb 3.6.3, cmps 2.2.1, ibproarcade 2.5.7

Our Sponsors
 

angeljs
12-25-2006, 03:07 PM
I'm having the same problem and am using all of the latest versions of each script/addon

Edit: My mistake...I made the modifications above on the new index page and now the scores are submitting...thanks! :)

FlipMode
01-13-2007, 09:26 AM
Very helpfull post.

Thanks

Hyjinx30
01-16-2007, 01:31 PM
This worked for me on my board. its 3.6.4. You can test it out at consiglioenterprises.com. Note the cmps page is index.php and the forum is forum.php

dj chico
01-17-2007, 06:58 PM
they are saving for me but now its sayin i have an error in forum.php when i try to click forum index, so annoying

rickie3
01-17-2007, 08:13 PM
did it say you have a snyntx error on line 2?

djstorm
04-03-2007, 11:28 PM
thx alot worked for me :P

AuroraStorm
05-10-2007, 10:37 AM
making note...

xfuryx
05-16-2007, 10:44 AM
Thanks SOO much!

hansimglück
05-23-2007, 06:53 PM
yes, it works... thx....
(bulletin 3.6.7 & VBadvanced3.0)

rexxxy
12-31-2008, 05:27 PM
it work just fine thank you