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)

TheChaosFactor 05-14-2010 05:08 AM

You must've done something wrong. Worked fine for me.

AfterWorldForum 05-14-2010 01:01 PM

Quote:

Originally Posted by TheChaosFactor (Post 2036751)
You must've done something wrong. Worked fine for me.

I copied and pasted the suggested text into the specified page. Not really rocket science, and while I can see the cosmetic improvements, it also somehow ends up yielding those errors.

Devanand 05-15-2010 05:45 AM

Just installed at 3.8.5 and above logo I get this 3 lines:

Deprecated: Assigning the return value of new by reference is deprecated in ......../public_html/arcade.php on line 3190

Deprecated: Assigning the return value of new by reference is deprecated in ....../public_html/arcade.php on line 4082

Warning: Cannot modify header information - headers already sent by (output started at [path]/arcade.php:3190) in [path]/arcade.php on line 97

axi 05-15-2010 11:42 AM

A few important questions if a few can answer please;
  • How many of you have got this to work successfully on 3.8x and how many haven't?
  • If it's working for your 3.8x did you have to do ALOT of messing around to get it to work or did it work first go?
  • Is/Was your board fully hacked out?

Halfhidden 05-16-2010 06:03 PM

Quote:

Originally Posted by axi (Post 2037329)
A few important questions if a few can answer please;
  • How many of you have got this to work successfully on 3.8x and how many haven't?
  • If it's working for your 3.8x did you have to do ALOT of messing around to get it to work or did it work first go?
  • Is/Was your board fully hacked out?

As far as I know this mod worked well on 3.8... a great deal of the problems seem to be with styles in 4.
Perhaps someone else will say different, but that's how I see it.

TriAxis 05-17-2010 12:47 AM

Quote:

Originally Posted by Halfhidden (Post 2038050)
As far as I know this mod worked well on 3.8... a great deal of the problems seem to be with styles in 4.
Perhaps someone else will say different, but that's how I see it.

This was a great arcade in 3.8. All the problems are from 4.x

The problems I am having are on a clean install with no hacks installed other than this arcade. Even using the default styles.

I am having the security token error not a style error. Mr. Zeropage updated the support thread and stated a new version would be posted "soon".

Datenpapst 05-17-2010 07:46 AM

I got a huge problem with the Tournament System.

Look here:
https://vborg.vbsupport.ru/

First the Score between Yoeman and FC Rene was for each user Zero - I advanced the winner -> Yoeman was in the next round, then I played myself and won, and advanced myself in the next round and so I got this mess...

junaid 05-17-2010 07:54 AM

This is not updated
no support

Datenpapst 05-17-2010 09:18 AM

I also very often get "No Users Matched Your Query" when a game is finished :(

ShawneyJ 05-17-2010 12:35 PM

i'd love to know why this thread was moved to the vb4 section when its full of errors.
i love ibProArcade but if anyone gets tied of waiting, v3arcade for vb4 is out, not even in beta stage and it works great.

x626xblack 05-17-2010 12:39 PM

I have it running on 4.0.3 with no issues.

ShawneyJ 05-17-2010 12:48 PM

Quote:

Originally Posted by jacobsharkey (Post 2025601)
Some reason I got an issue with the style: http://avalane.org/arcade.php

Anyone know how to solve this?

i see you moved to v3arcade, looks nice ;)

ShawneyJ 05-17-2010 12:49 PM

Quote:

Originally Posted by x626xblack (Post 2038484)
I have it running on 4.0.3 with no issues.

any chance of a screen shot?

odln018 05-17-2010 09:26 PM

Where can freeware games be obtained?

TheInsaneManiac 05-18-2010 04:56 AM

The arcade is messing with all my style footers. The footer images end up all over the place whenever I visit the arcade.

bam-met 05-18-2010 07:00 PM

I have tried to find this error in the forum - but do not find as it relates to the new version of 4.0.3PL1... Your submission could not be processed because a security token was missing.

Is there a patch or fix for this? :)

Thank you

Mark

owning_y0u 05-19-2010 03:48 AM

Quote:

Originally Posted by bam-met (Post 2039424)
I have tried to find this error in the forum - but do not find as it relates to the new version of 4.0.3PL1... Your submission could not be processed because a security token was missing.

Is there a patch or fix for this? :)

Thank you

Mark

do you have it on all games or just several. in this case there is no solution as i have the same problem but there is no support for it...

if you have it on all games you need to add the following to your index.php (above the comments of Vbulletin)


PHP 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 


odln018 05-20-2010 11:45 AM

Is there a way to designate one specific person who can access the Arcade CPNav panel?

GoBoiano 05-20-2010 08:11 PM

Hi. I'm new to vb and this is probably a dumb question, but I was trying to install this hack and I was wondering how to enter the path to the Product-XML-File: ./includes/xml/product-ibproarcade.xm

I've done everything up until this part in the installation guide and I was wondering if you could assist me on how to do this?

odln018 05-20-2010 11:58 PM

You should be able to just browse to it locally as well to import it.

TriAxis 05-21-2010 04:40 AM

Quote:

Originally Posted by GoBoiano (Post 2040753)
Hi. I'm new to vb and this is probably a dumb question, but I was trying to install this hack and I was wondering how to enter the path to the Product-XML-File: ./includes/xml/product-ibproarcade.xm

I've done everything up until this part in the installation guide and I was wondering if you could assist me on how to do this?

If the upload doesn't work for you... it failed for me... you could upload/FTP the file to the "./includes/xml/" folder in your installation. Then just use what is already there for the import. "./includes/xml/product-ibproarcade.xml"

That was what I had to do to get it to install correctly for me.

GoBoiano 05-21-2010 01:05 PM

Quote:

Originally Posted by odln018 (Post 2040878)
You should be able to just browse to it locally as well to import it.

Quote:

Originally Posted by TriAxis (Post 2040973)
If the upload doesn't work for you... it failed for me... you could upload/FTP the file to the "./includes/xml/" folder in your installation. Then just use what is already there for the import. "./includes/xml/product-ibproarcade.xml"

That was what I had to do to get it to install correctly for me.

Ahh I see. I didn't realize I could do that :o Thanks for all of your help guys. It's up and running now. :D

Matt Lathrop 05-23-2010 10:19 PM

After upgrading to 4.0.3 I can't submit scores it tells me my security token is missing.

Any help is appreciated!

gle041 05-24-2010 07:19 PM

I have installed but now it looks like it is missing the CSS or something. It looks like the picture below. I tried with a few different styles, all are like this. How can I fix it?

http://img88.imageshack.us/img88/6907/arcadeq.png

ShawneyJ 05-24-2010 10:52 PM

Quote:

Originally Posted by gle041 (Post 2042804)
I have installed but now it looks like it is missing the CSS or something. It looks like the picture below. I tried with a few different styles, all are like this. How can I fix it?

http://img88.imageshack.us/img88/6907/arcadeq.png

lol, hope in line for the next version mate....welcome to the group of messed up arcades.

CrosseyedGamer 05-24-2010 11:18 PM

Quote:

Originally Posted by Matt Lathrop (Post 2042418)
After upgrading to 4.0.3 I can't submit scores it tells me my security token is missing.

Any help is appreciated!

Read back over the threads and add the code as it tells you.
Not sure why that hasn't ever been fixed but hey, when you add it, the scores work fine as does the arcade itself. Not sure why so many others have issues but I am going to guess there is some other plug in or mod messing with things.

disable all the plug ins and see if it works then.

stuky4ever 05-25-2010 03:08 AM

Could you make it work with UCash? Get certain points for every game won?

TriAxis 05-25-2010 10:12 PM

Quote:

Originally Posted by CrosseyedGamer (Post 2042898)
Not sure why that hasn't ever been fixed but hey, when you add it, the scores work fine as does the arcade itself. Not sure why so many others have issues but I am going to guess there is some other plug in or mod messing with things. .

This statement is not true for me.

I have made a completely new and fresh install. Fresh database and 100% new install. No style changes or hacks or plug ins installed. The only item installed is this arcade. When I went to create my new site, this was the first thing I wanted running. I have had this arcade running on multiple 3.x sites prior to this 4.0 version without any issues.

But just adding the code to the index.php does not fix this problem. I have posted the things I have tried and my results in the support forum.

As with many others, I continue to wait patiently and hope that the new version that is supposed to be in testing now will address this security token error.

Eric 05-26-2010 07:59 AM

Quote:

Originally Posted by Devanand (Post 2037236)
Just installed at 3.8.5 and above logo I get this 3 lines:


Deprecated: Assigning the return value of new by reference is deprecated in ......../public_html/arcade.php on line 3190

Deprecated: Assigning the return value of new by reference is deprecated in ....../public_html/arcade.php on line 4082

Warning: Cannot modify header information - headers already sent by (output started at [path]/arcade.php:3190) in [path]/arcade.php on line 97

Edit arcade.php, find:
PHP Code:

error_reporting(E_ALL & ~E_NOTICE); 

replace with:
PHP Code:

error_reporting(E_ALL & ~E_NOTICE & ~8192); 


pedroenf 05-27-2010 08:57 PM

Does anyone knows when arcade is going to be VB4 fully compatible without messing templates up? Thanks.

IDUlysses 05-28-2010 05:53 AM

i just installed this MOD and i love it!

but when im trying to submit a score it says Your submission could not be processed because a security token was missing.

I hope there will be an update soon!

x626xblack 05-28-2010 12:53 PM

Quote:

Originally Posted by pedroenf (Post 2044292)
Does anyone knows when arcade is going to be VB4 fully compatible without messing templates up? Thanks.

Works fine for me on VB 4.0.3. No template "mess ups"

Quote:

Originally Posted by IDUlysses (Post 2044459)
i just installed this MOD and i love it!

but when im trying to submit a score it says Your submission could not be processed because a security token was missing.


I hope there will be an update soon!

Read back through this lost or go to the IBpro Arcade support section, that question is answered multiple times. Also read your documentation with this Arcade AND Go to your ACP, Arcade section, Information option. Read.

PirateTinman 06-01-2010 09:03 AM

Hi!
The other forum users and myself love the arcade, its running fine on vB4 with a lot of style changes that is, but one thing that I can't seem to figure out is where the arcade navigation is located (code wise that is), as I would like to remove it all together.
"Arcade · Tournaments · Your Settings · Your Favorites · Your Rankings · Leaderboard · Arcade ModCP"
I have added all these to the sub-navigation on the website/forums, with that I do no longer have the need for the original.

If anyone knows where the navigation for the arcade is stored I would love to know, thanks!

NCJeepin 06-02-2010 01:13 AM

I followed the instructions to a T and am having this issue

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.

I did do the folder chmod... what could be going on?

lubbie 06-02-2010 12:02 PM

U should start to read. Its all written in the Mod "ibProArcade-Support-Forum" there u will find the answers

NCJeepin 06-02-2010 02:16 PM

wow, your a real +++++++. If it was that common of an issue i figured it would be in the readme.

IDUlysses 06-02-2010 06:35 PM

can someone just make a thread about this TOKEN ISSUE?? I dont feel going going thru 400 pages to search for it OMG

TNL_Nick 06-02-2010 06:41 PM

It took me literally five to ten seconds to search on the word "token" in this mod and find the answer:

https://vborg.vbsupport.ru/showthrea...en#post2039603

IDUlysses 06-02-2010 06:53 PM

haha thanks man

QUESTION::: if I update the coding to fix this TOKEN issue.... will this affect the new version that will be released soon?

TNL_Nick 06-02-2010 07:36 PM

If you fix it now, I doubt you'll have to go in for the same issue again anytime soon. Of course, any upgrade can leave you with templates that need to be updated, but I don't think you'll have to mess with this code again.


All times are GMT. The time now is 01:45 PM.

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.09305 seconds
  • Memory Usage 1,857KB
  • 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
  • (3)bbcode_php_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