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)

Rob F 02-15-2010 05:10 PM

Quote:

Originally Posted by x626xblack (Post 1982994)
One would expect the Add-On to be updated and the issues corrected. He has not even updated the original Posting to reflect compatibility except for in 1 place. The Original post is sloppy and you can not deny that, huge gaps, incomplete compatibility list. One would also assume that said Coder would not have to answer to a problem more than once if said problem was corrected in the Add-On.

Secondly he has no posted ANYWHERE since Jan 31st. That includes the Respective support forums.

I commend you on your support for a fellow coder, however none of my statements are incorrect.

One can only really expect such things if they're paying for a service. This is a free modification so the fact that we can use it is plenty.

And so what if he hasn't posted in 2 weeks? Maybe the guy took a holiday? Maybe there's been a family emergency? Either way he doesn't owe it to any of us to live online updating things the second someone reports an issue they've run into.

Sorry if that seems harsh to you - just getting fed up of the amount of posts on here lately where people are whining that coders/designers aren't jumping through every hoop for them instantly when they're all getting these modifications for free.

hardfm 02-15-2010 05:30 PM

Quote:

Originally Posted by DBStattoo (Post 1962297)
Ok i found this on the admincp --- arcade--- information

here we go

Open "/index.php"

Search for: (very top of file)

PHP Code:

<?php

Below that add:

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 

Save and upload your index.php back to your server.


Now its ok for me nice

Which index.php? in the root or an other file? Silly question, but I love specifics, I am encountering the same issue as well. And I am very happy the solution is here!

Jabong82 02-15-2010 07:32 PM

Anyone know how I can remove this screen from my homepage? After installation of this mod I cannot remove it. I even donated a little, but its still there. Any help would be appreciated.

https://vborg.vbsupport.ru/external/2010/02/46.jpg

Jabong82 02-15-2010 11:36 PM

Bump for help. :(

s0lidgr0und 02-15-2010 11:43 PM

Do you guys even know about the support forum? This is the thread for the release of the product. No wonder you guys can't find the answers to your questions, you'd be expected to sift through 55 pages of the same gdfn questions over and over again.

If you have a problem, go there, look for an answer to your question, and if it's not there, start a thread.

Jabong82 02-16-2010 03:23 AM

Anyone know how to fix the postbit_legacy after the Arcade is installed? Now that there are symbols for the games streaming in the legacy, my post count, location, and join date stats are all outta wack. Any help would be appreciated!

jarremachine 02-16-2010 08:11 AM

Quote:

Originally Posted by sinistergaming (Post 1981126)
i was having the same issue but i was able to fix it.
back up your ARCADE_vB4 template. incase this doesnt work for you..

replace entire contents with this:
Code:

{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}">
<head>
    {vb:raw headinclude}
    <title>{vb:rawphrase Arcade} - {vb:raw vboptions.bbtitle}</title>
    {vb:raw headinclude_bottom}
</head>
<body>

{vb:raw header}
{vb:raw navbar}

<div id="pagetitle">
    <h1>{vb:rawphrase Arcade}</h1>
</div>

<vb:if condition="$show['errors']">
<div class="block">
    <h2 class="blockhead">{vb:rawphrase errors_occured_when_submitted}</h2>
    <div class="blockbody">
        <div class="blockrow">
            <ol id="errormessages">
                {vb:raw errormessages}
            </ol>
        </div>
    </div>
</div>
</vb:if>
  <body>
    {vb:raw header}
    {vb:raw navbar}
    <div class="blockbody">
      <div class="blockrow">
  {vb:raw arcadeheader}
  {vb:raw maincontent}
      </div>
    </div>
    {vb:raw footer}
  </body>
</html>


This worked for me in ARCADE template, thank you very much :up:

x626xblack 02-16-2010 01:23 PM

Quote:

Originally Posted by Rob F (Post 1983115)
One can only really expect such things if they're paying for a service. This is a free modification so the fact that we can use it is plenty.

And so what if he hasn't posted in 2 weeks? Maybe the guy took a holiday? Maybe there's been a family emergency? Either way he doesn't owe it to any of us to live online updating things the second someone reports an issue they've run into.

Sorry if that seems harsh to you - just getting fed up of the amount of posts on here lately where people are whining that coders/designers aren't jumping through every hoop for them instantly when they're all getting these modifications for free.

Nice try but profile shows most recent log in. I have yet to post a problem. I have not installed, as I have posted. When the laundry list is a few pages and the coder is on every day and does not address any of them....... There seems to be a number of people who "CAN NOT " use this.

Well again Nice try.

PS says it works with 4.0.x.. Last update was Dec 09... How does he know? There have been two releases since Dec 09

pablete 02-16-2010 01:34 PM

Quote:

Originally Posted by x626xblack (Post 1983755)

Well again Nice try.

PS says it works with 4.0.x.. Last update was Dec 09... How does he know? There have been two releases since Dec 09

Yes, it works full in 4.0.x, i upgrade it release whem i run 3.8.6. and it , and this same release work perfect on vb4.0.1

x626xblack 02-16-2010 04:02 PM

Quote:

Originally Posted by pablete (Post 1983760)
Yes, it works full in 4.0.x, i upgrade it release whem i run 3.8.6. and it , and this same release work perfect on vb4.0.1

So I have to ask. if it works perfectly in 4.0.1 what are all the issues i see above this post? Is it due to personal style conflicts? User error on the install?

Cna you post a url to your site or someone who has installed as per the instructions and made no code changes.


All times are GMT. The time now is 01:07 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.16421 seconds
  • Memory Usage 1,785KB
  • 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_php_printable
  • (6)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