vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - ibProArcade - professional Arcade System (https://vborg.vbsupport.ru/showthread.php?t=101554)

MortysTW 02-22-2010 12:08 PM

SOOOO much support given in this NON-support thread.

People, use the SUPPORT forum for this Arcade. You guys are helping each other so nicely but we need to keep all of the help in the proper location.

I love this Arcade and have been using it for years. But this particular thread should be nothing more than post after post saying THANKS, JUST INSTALLED IT! and other things like that.

GO HERE PEOPLE FOR SUPPORT of the Arcade!
https://vborg.vbsupport.ru/forumdisplay.php?f=170

MrZero has put so much effort into this Arcade over the years and everyone jumping the gun that he's not responding in a timely manner to a FREE product should back the hell off of him. He does have a life. And other people are here to help.

Use the proper support forum for this Arcade and relax.

For support go here- https://vborg.vbsupport.ru/forumdisplay.php?f=170

kapii 02-24-2010 04:22 AM

Hello,
I'm running vB 4.0.2 PL1 and ibPro Arcade 2.7.0+ and it won't record the scores... Is says this...

vBulletin Message
Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

Anyone who plays it gets the same message, and it is a clean install on everything... Any ideas? It's not my first install, and it was installed correctly...

:confused:

tazattitude 02-24-2010 09:03 AM

I had the same problem
There is a previous post on this.

You need to add some code to your forum index page and this will take care of it.

I believe this was it

HerrBomba 02-24-2010 09:24 AM

Hi, i got a problem with the tournament-mode...

sometimes they crash, so no one cn play any longer... then i have to restart the cup ....

can anyone help me?

I am using vBulletin™ Version 4.0.1 (Deutsch)

Michael Tsai 02-24-2010 10:51 AM

Installed and works fine, thanks!

MustangLisa 02-25-2010 09:45 PM

I got the error message, too ... Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

Rob F 02-25-2010 10:08 PM

Quote:

Originally Posted by MustangLisa (Post 1991570)
I got the error message, too ... Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

Have a read of the readme file in the zip folder you downloaded. There's a full explaination in it about the coding you need to add to the index.php to sort the security token issue ;)

Michael Tsai 02-25-2010 10:57 PM

How could I install more games on it?:up::up::up::up:

MustangLisa 02-25-2010 11:00 PM

Quote:

Originally Posted by Rob F (Post 1991588)
Have a read of the readme file in the zip folder you downloaded. There's a full explaination in it about the coding you need to add to the index.php to sort the security token issue ;)

Hmm, I don't have a readme file.

Rob F 02-26-2010 05:39 AM

Quote:

Originally Posted by MustangLisa (Post 1991617)
Hmm, I don't have a readme file.

Sorry - my mistake - its an INFO file.

Contents below ...

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:
----------------------------------------------------------
Code:

<?php
----------------------------------------------------------

you have to insert:
----------------------------------------------------------
Code:

// ibProArcade
if($_POST['module'] == "pnFlashGames")
{
        require_once('./global.php');

        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.php";
exit();
}
if(!empty($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET[u] = $showuser;
include "member.php";
exit();
}

// end of ibProArcade

----------------------------------------------------------

Save and reupload to root

Otherwise your scores won't be recorded :)


All times are GMT. The time now is 05:24 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07391 seconds
  • Memory Usage 1,757KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (7)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete