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)

RobbieZ 11-10-2010 02:30 PM

@Hippy

Was there ever an add on to show tournaments active on FORUMHOME like V3Arcade mod?

Hippy 11-10-2010 07:52 PM

for ibproarcade stangger5 made this one Top ibProArcade Champs on Forum Home and a scrolling one .. but i never seen one that displays tournaments you might want to check out stangger5's forum next-level-arcade.com

microlight 11-11-2010 11:03 AM

I have this installed on my forum and I have just upgraded to version 4.0.8 and am having an issue that the games don't save.

I have re-edited the 3 templates but am still having the issue. Ideas anyone?

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

Hippy 11-11-2010 08:45 PM

microlight you need to so the portal / index edit.. directions are found in the zip file..

Gueldenstern 11-12-2010 02:36 PM

its installed. thanks.

Harley D 11-13-2010 04:22 PM

Quote:

Originally Posted by Hippy (Post 2120023)
I never had a problem but If it's ok I would like to add this to the bug fix thread so other can benefit from it..

Go right ahead.:)

txsbmw 11-16-2010 11:38 AM

Just upgraded to 4.0.8 from 4.0.6 (have vbadvanced installed) as long as the code from this mod is inserted into the index.php file (so games will save) I get errors as well as a database error

Notice: Undefined index: module in *******/public_html/portal/index.php on line 3

Notice: Use of undefined constant act - assumed 'act' in *****/public_html/portal/index.php on line 42

Notice: Undefined index: act in ******/public_html/portal/index.php on line 42

Notice: Use of undefined constant autocom - assumed 'autocom' in *****/public_html/portal/index.php on line 43

Notice: Undefined index: autocom in ****/public_html/portal/index.php on line 43

Notice: Use of undefined constant showuser - assumed 'showuser' in *****/public_html/portal/index.php on line 44

Notice: Undefined index: showuser in *****/public_html/portal/index.php on line 44

I've never had this problem before. Anyone know what might be the issue? If I delete the code everything is fine.

Site in question is http://www.militarylifenetwork.com/portal

txsbmw 11-16-2010 11:52 AM

Never mind about my last post. I found the fix for it in the forums.

revmitchell 11-16-2010 06:55 PM

Quote:

Your submission could not be processed because a security token was missing.
This is the response I am getting at the end of a game. What is the fix

defragc 11-20-2010 12:14 AM

Three errors:

1) Security token missing for score submit on a lot of games
2) A lot of games won't play normally and have to play in a new window
3) Cannot add any new games via zip - was working fine, but now it won't install anything

Hippy 11-20-2010 12:53 AM

Quote:

Originally Posted by revmitchell (Post 2122558)
This is the response I am getting at the end of a game. What is the fix

do the portal / index edit found in the zip file.
Quote:

Originally Posted by defragc (Post 2123715)
Three errors:

1) Security token missing for score submit on a lot of games
2) A lot of games won't play normally and have to play in a new window
3) Cannot add any new games via zip - was working fine, but now it won't install anything

start with the portal / index edit ..

zip files .. lots are not compatible I found but check the permissions of the zip folder

2) A lot of games won't play normally and have to play in a new window
I never heard of this.. I will have to ponder this one

Cplkaos 11-20-2010 04:45 AM

Hippy cheers for the Arcade fix last night.

Cant thank you enough.

Ladies/Gents, Hippy is a great asset to this thread. Give him time and he will help!!!!

Hippy THANKS!!!!!!

Dutch_Boy 11-21-2010 07:24 PM

If got a problem with the arcade mod. Some of my members cant open a game. They only see a white screen and nothing more.

I can play the games but when i submit a score it gose to a white screen...

Any idea how to fix this?

Running the new update of vbulletin.

Edit:

If reuploaded the mod and the product. Didnt work :(

jagg97 11-23-2010 01:04 AM

What can I do to translate the ARCADE to spanish I´ve tried using the phrase menu I couldn´t any ideas

nacaruncr 11-23-2010 07:20 AM

how i can do it this ibProArcade Shows Game Count + Newest Game and Random Game in your Forum Statistics in vb 4.0.3???
it is posible??

and i like so much know how do it this Arcade Rankings Link in Member Profile too

excuse me for my english...... :P

Hippy 11-23-2010 07:10 PM

they both need to be recoded..
if I get time I will peek at them

topladz 11-26-2010 07:06 PM

Quote:

Originally Posted by desi-boy (Post 2113144)
Sir i got this error msg after evry game

i get the same message

Quote:

Originally Posted by Hippy (Post 2113225)
do the portal / index edit you'll find the instructions in the zip file you downloaded

there is no instructions in the file i downloaded and where do i find portal / index edit

cheers adam

Hippy 11-26-2010 07:11 PM

INFO - vbadvanced or another Portal.txt

Code:

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


Otherwise your scores won't be recorded :)


topladz 11-26-2010 07:23 PM

cheers bud but where do i got ot edit the php

Hippy 11-26-2010 07:30 PM

in your forum index.php on your server

ellinofatsa 11-27-2010 03:40 AM

hi i need help i have vb4,8 and if the game end the score dont safe and i see this mesage
Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.
i have vbadvanced
this is my code can you help my with the code what i doing wrong?
<?php//
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;

SEW810 11-27-2010 04:23 AM

[S]Oh my God , it was workin good but now I've got this error :(
Warning: require(C:\xxxxxxxxxxxx\xxxxxxxx\seusers.com\httpd ocs\foro/arcade.php) [function.require]: failed to open stream: Permission denied in C:\xxxxxxxxxxxxxxxx\xxxxxxxxxxxxxxxx\seusers.com\h ttpdocs\foro\vbseo.php on line 1392
Fatal error: require() [function.require]: Failed opening required 'C:\xxxxxxxxxx\xxxxxxxxxx\seusers.com\httpdocs\for o/arcade.php' (include_path='.;./includes;./pear') in C:\xxxxxxxxxxxxxxxx\xxxxxxxxxxxxxxxx\seusers.com\h ttpdocs\foro\vbseo.php on line 1392

I add this code to my custom rewrite rules: https://vborg.vbsupport.ru/showthread.php?t=190490 but the error doesn't dissapear :(

I turned off vbseo mod but the error still appears :(
What's wrong now? :'([/S]

Never mind. Works perfect.
The error was on arcade.php server permissions :rolleyes:


And his post saved me once again :p
https://vborg.vbsupport.ru/showpost....08&postcount=3

revmitchell 11-27-2010 07:46 AM

Quote:

Originally Posted by Hippy (Post 2123720)
do the portal / index edit found in the zip file.



Many thanks

ellinofatsa 11-27-2010 07:47 AM

i have make the change in INFO - vbadvanced
and i see this code

Parse error: syntax error, unexpected T_DEC, expecting T_STRING or T_VARIABLE or '$' in C:\IIS_WEBSITES\ellinofatsa.www\index.php on line 57

CrosseyedGamer 11-29-2010 10:14 PM

I am thinking this doesn't work with 4.1 beta.
all my links bring up an error
Fatal error: Cannot redeclare ibp_cleansql() (previously declared in /home/crosseye/public_html/arcade.php:5536) in /home/crosseye/public_html/arcade.php on line 5553

anyone else try 4.1 with the arcade?

UPDATE: tried some changes on my own and still nothing. If anyone can assist with a fix so I can get the arcade working again I would appreciate your help big time. Thanks.

Hippy 11-30-2010 10:52 PM

Crosseyedgamer
I justupdated my test forum to 4.1.0 beta.. no issues with the arcade..
I also just noticed that the stable version is out I am going to update the beta..
If you don't hear back from me all still works..

those lines in the arcade.php are
Code:

function ibp_cleansql($value)
I don't know what it means but a line under refers to php version..
I would also optimize my db through phpmyadmin..
check for corrupt tables..

CrosseyedGamer 12-01-2010 01:51 PM

just did all the repair and optimizing on the DB. Still get the same fatal error. Games play on the main page if you hit play game but any other link generates the above mentioned error. Going to do the update here later on so let's see how that goes. I appreciate the help. if you or anyone comes across this, please let me know if you get a fix. Thanks.

Eruantien 12-01-2010 02:45 PM

Getting a security token error with 4.1... anyone know the fix?

CrosseyedGamer 12-01-2010 02:55 PM

Quote:

Originally Posted by Eruantien (Post 2127954)
Getting a security token error with 4.1... anyone know the fix?

Interesting you should ask this beings it is the code that you need to put in your index.php file to fix this that cause the error I had. Seems when I did the beta the other day and asked another admin to update the code in that file they put it in the config.php file and not the index.php file. Anyway, the error has been corrected on my situation.


Somewhere in the description as well as the documentation for this mod the code is noted which you need to add to your INDEX.PHP file.

Getting that fixed so it is not needed would be a cool thing!

Eruantien 12-01-2010 03:06 PM

I'm not seeing it in the documentation. Do you know exactly where?

CrosseyedGamer 12-01-2010 04:49 PM

Quote:

Originally Posted by Eruantien (Post 2127967)
I'm not seeing it in the documentation. Do you know exactly where?

It's in the Portal text file in the original downloaded info for the mod.
And about 6 post above ours someone actually list the text but I could not confirm it is exact so you should pull it from the included text file.

akxt660 12-04-2010 11:53 PM

Anyone can explain to me how this happened?

See the image bellow:

https://vborg.vbsupport.ru/external/2010/12/74.jpg


I use the latest version! 2.7.0
VB 4.03 Version

K!nG 12-06-2010 05:37 AM

Hi m sure it will sound stupid but m new to this whole vbulletin thing.... i installed this hack uploaded the upload folder and installed the plug in aswel but arcade tab won't show up in the navbar or anywhere on my forum... to b honest not sure if i missed any step can someone tell me wat m i missing ????

Infopro 12-06-2010 11:03 AM

Quote:

Originally Posted by Cplkaos (Post 2123771)
Hippy cheers for the Arcade fix last night.

Cant thank you enough.

Ladies/Gents, Hippy is a great asset to this thread. Give him time and he will help!!!!

Hippy THANKS!!!!!!

Hippys Rock! err, wait a sec.


Thanks, Hippy!:p

Hippy 12-06-2010 07:07 PM

Quote:

Originally Posted by K!nG (Post 2129925)
Hi m sure it will sound stupid but m new to this whole vbulletin thing.... i installed this hack uploaded the upload folder and installed the plug in aswel but arcade tab won't show up in the navbar or anywhere on my forum... to b honest not sure if i missed any step can someone tell me wat m i missing ????

running vb4 ? there is no navtab..
install this mod Arcade: Main Nav Tab + Sub Menu + Dropdown Menu
Quote:

Originally Posted by Infopro (Post 2129982)
Hippys Rock! err, wait a sec.


Thanks, Hippy!:p

:):up:

woffie 12-07-2010 10:49 PM

I am running 4.1. When my members play a game after the game submits they get logged out of the forum. Anyone else getting this?

Juggernaut 12-08-2010 12:09 AM

Quote:

Originally Posted by woffie (Post 2130631)
I am running 4.1. When my members play a game after the game submits they get logged out of the forum. Anyone else getting this?

One of my admins has reported the same problem, this happened after the upgrade to 4.1, haven't been able to figure out why it's hapenning. It doesn't happen to everybody, as far as I can tell :/

DustyJoe 12-08-2010 02:45 AM

Quote:

Originally Posted by Destron (Post 2130659)
One of my admins has reported the same problem, this happened after the upgrade to 4.1, haven't been able to figure out why it's hapenning. It doesn't happen to everybody, as far as I can tell :/

I am having the EXACT same issue with 4.1 as well..

Through my searching, I ran across this in the archives..
https://vborg.vbsupport.ru/showthread.php?t=113529

Something about the refresh routine?


**** UPDATE::

I'm using the Vsa log in as user mod to test from my members profiles.. At first for me, under my admin account it would log me off and say score could not be saved.. I then logged into a random users profile with the hack and the score saved with theirs, I then logged out of theirs and into mine through the hack.. and the scores are saving now without logging off..

Cookie monster somewhere?

Juggernaut 12-08-2010 03:37 AM

Yes, mr zeropage refers to a bug that he had fixed for an older version of IbProArcade, I wonder if it somehow reappeared with vB 4.1, how can it be fixed now?

Juggernaut 12-11-2010 06:32 AM

Quote:

Originally Posted by DustyJoe (Post 2130695)
I am having the EXACT same issue with 4.1 as well..

Through my searching, I ran across this in the archives..
https://vborg.vbsupport.ru/showthread.php?t=113529

Something about the refresh routine?


**** UPDATE::

I'm using the Vsa log in as user mod to test from my members profiles.. At first for me, under my admin account it would log me off and say score could not be saved.. I then logged into a random users profile with the hack and the score saved with theirs, I then logged out of theirs and into mine through the hack.. and the scores are saving now without logging off..

Cookie monster somewhere?

Have you had any luck in fixing this? :)


All times are GMT. The time now is 09:37 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.26632 seconds
  • Memory Usage 1,863KB
  • 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
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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