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)

Hippy 02-10-2011 01:01 AM

Quote:

Originally Posted by Amiga Harrison (Post 2160520)
I'm sad to say I've finally given up on this arcade. I'd been running it successfully on my forums since 2006, but since upgrading to vB4 it just hasn't worked well and I've never been able to get the hiscores to save since vB4, regardless of what I've tried.

It was becoming a bit of a joke that a supposedly supported product hasn't been updated since Dec 2009!

I've therefore switched over to v3 Arcade, and all I can say is its a real eye opener and I wish I had switched a long time ago. Upload a few files (and I mean a few, not like the bloated load you get with this one), and import the product. No manual template edits, no editing to fix errors or issues. It just works out of the box and very well.

I highly recommend everyone considers switching to v3 Arcade because it really shows what a well supported product should be like. This ibProArcade has obviously not been developed or properly supported for over 2 years now, and only a half hearted effort to update it for vB4.

Works flawlessly if you want to do a few things..


you never asked for help in the support forum or anywheres from what I can see other wise it would of been working that very same day
to each it's own..

Juggernaut 02-10-2011 01:06 AM

No problems reported for me on vb 4.1.1 :D

Amiga Harrison 02-10-2011 10:23 AM

Quote:

Originally Posted by Hippy (Post 2160822)
you never asked for help in the support forum or anywheres from what I can see other wise it would of been working that very same day
to each it's own..

Umm...

https://vborg.vbsupport.ru/showthread.php?t=244726

You even replied in my thread, although not directly to me... and as can be seen others have the same issue running the same configuration. (vB index.php file outside of the forum dir so the CMS is running in the domain and the forums below in /forum/ dir).

I'm not arguing that with a lot of work this product probably could be made to function.

But it wasn't just that which made me switch. ibProArcade is broken. No one can download the product offered on this page, install it and have it working out of the box. They have to edit files to fix a lot of bugs. Things like the arcade's template loading messed up in vB4 after the default install, no native support for adding a new arcade tab in vB4 (requires someone elses plugin), hiscores not saving.. etc. If this product was supported by its developer they surely would have taken all these fixes from the community by now and built a fully working and fixed new version of this product. They haven't, therefore it isn't supported and is broken.

Another is the need to still manually edit forum template files. These should all be auto edited by the product these days. The need to manually edit files should be long gone.

I do commend you Hippy for your personal dedication to this product and all the help you seem to now be giving to members with problems. Why don't you do exactly what I suggest? Fix the product and offer an updated fixed version that actually works with vB4? I would even suggest you offer to take over this project from the developer as you are supporting it 100 times better than he ever did.

Another huge thing that V3 Arcade is doing, which this product really needs to do, is ditching custom templates within its own product and moving over to using vB4's own template structure. This means the product uses the forums custom templates and will automatically look right.

Hippy 02-12-2011 02:44 AM

I see my post, It was directed to you
since I posted after all those people I allways reply to the first post first ...
then the others come next ..
I should of quoted you
but some times I hit and run so much to read in a short time.

anyway I see your point...

I just can't give it up since I have ran/ worked/ etc since day 1.. on so may forums..
and now I try to help many keep it alive..
Search my posts I asked a few things and 99.9% of the time it was not answered so I figure I would learn how it ticks and fix it my self..
so I try and share the info I learned..

it needs to be updated big time and I have it all worked out ATM, if it was my mod I would release it

but since it's not mine, I don't have permission to I can't. I can just help..

sorry it didn't work out
But if you ever want to install it again I can help you get it looking /working as it should

regards
Hippy

NoLuckNeeded 02-12-2011 04:11 AM

When i try to import the xml i am getting error: XML Error: mismatched tag at Line 46

using 4.1.1

Fantasy_aquatic 02-15-2011 05:52 AM

Dear Guys
i can't find admincp -> arcade in my admincp
could anyone advice why..?
in my forum, arcade already available but i cannot set the permission since, arcade in my admincp is missing
your advice will be very helpful

regards
Andree

OK- done - the reason is, i put the includes/xml file only to includes
lol

Silver44 02-18-2011 06:18 AM

Tournament winner jumbled

hello

I have started tournaments yesterday everything went well so far only
that the tournament really does not end when all the other

The users are in there twice

I need to change somewhere because what??

Thanks in advance for the help

lg.silver

credenscel 02-19-2011 04:47 AM

hi guys,
i'm having a REAL hard time with my site i installed it as was told but now my forum is completely gone :( instead i have this message

Sorry, no access granted here


But you may want to donate for this fantastic Arcade-Hack

i tried disabling the hack and enabling but nothing is helping! i would very much appreciate your help!

TheShanka 02-20-2011 12:20 PM

Scores not saving, oh dear.

Sw0rDz 02-22-2011 10:05 PM

Arcade is logging people out. Few users have been getting logged out when they visit/play the arcade game. I've been using the following code so users are able to submit scores.

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

Vbulletin Version: 4.1.1


All times are GMT. The time now is 03:08 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.08244 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
  • (1)bbcode_code_printable
  • (2)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