Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > ibProArcade Archive
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ibProArcade Fixes Details »»
ibProArcade Fixes
Version: , by Hippy Hippy is offline
Developer Last Online: Apr 2018 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 08-22-2010 Last Update: Never Installs: 0
 
No support by the author.

  • layout fix & store css as files fix
Quote:
Originally Posted by Hippy View Post
today is your lucky day then

over write your ARCADE template with this

Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
  <head>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
    <title>{vb:raw ibprotitle}</title>
    {vb:raw headinclude}
    {vb:raw headinclude_bottom}
    {vb:cssfile ARCADE.css}
  </head>
  <body>
    {vb:raw header}
    {vb:raw navbar}

  {vb:raw arcadeheader}
  {vb:raw maincontent}     


    {vb:raw footer}
</div>
  </body>
</html>
Click save


No longer needed with the above template..
[s]Now open up the ARCADE.css and copy it completely
close it out, no need to save.

now paste it into the additional.css
click save...[/s]

next go to
Plugins & products > plugin manager > Product : ibProArcade for vBulletin click open ibProArcade: ARCADE CSS
and select no for "Plugin is Active" ...
save
thats it
you can turn store css as a file back on

enjoy
for those that are just trying to fix there log / banner
or Full width Forum logo mod
the above ARCADE template will work alone
this template should be changed anyway..
the arcade is so out of date. it's calling the old template ARCADE instead of ARCADEVB4
I just copied the ARCADEVB4 template and added it to the ARCADE template with a couple small changes
If you are still using the stock ARCADE template soon or later it's going to stop working.

  • Spacing between icon and title fix
Quote:
Originally Posted by Hippy View Post
ok
I had a litte time so I found a fix for this
open /arcade/functions/functions.php
search for // we are on vB 4 or later WHOHOOO
Just under it on line 1380 you'll see
Code:
$navbits = $output_array['NAV'];
move it under
Code:
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
enjoy
If you don't want to edit it yourself I attached it here


  • leaderbord issue closing <form> code
  • Score Not Saving / Missing token
vb suite users
if adding this code to your index.php don't work below as stated in your arcade zip file you downloaded
Code:
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 :)

If the Above edit does not work

Pitman posted a rewrite that does the same things with out editing the index.php or of you don't have one

https://vborg.vbsupport.ru/showpost....6&postcount=83

I also have a version of this from
stangger5
Posted in the new updated Ibproarcade fixes



Fatal error: Allowed memory / uploading in bulk

Quote:
Originally Posted by Harley D View Post
If you run into this memory issue, you need to increase the size of the Memory in your php.ini file, normally found in your /public_html/.

First make a COPY of the PHP.INI file, so you can RESTORE it.

Open "EDIT" the file and do a search for MEMORY, you should see the max allowed, increase it to handle a bit more than the error states it needs. Save it and re-upload the file. Should work fine now.

EXAMPLE:
Code:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 600     ; Maximum execution time of each script, in seconds
max_input_time = 600    ; Maximum amount of time each script may spend parsing request data
memory_limit = 96M      ; Maximum amount of memory a script may consume (16MB)
Go back to the PHP.INI file and put it back the way it was. Shared servers don't like you to have this over 64mb I believe.


I tried to add all the bug fixes in one thread to make it easy for people to find them..
If I forgot any feel free to post them here..
Hope this helps out

enjoy

Download Now

File Type: (21.4 KB, 145 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #242  
Old 10-01-2011, 04:50 PM
infnity8x3 infnity8x3 is offline
 
Join Date: Apr 2009
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have been getting this since the update
Quote:
Warning: Missing argument 3 for skin_v3Arcade::copyright(), called in [path]/arcade/modules/mod_modcp.php on line 567 and defined in [path]/arcade/skins/skin_v3Arcade.php on line 1880
IDK cause i never messed with the copyright.
Reply With Quote
  #243  
Old 10-01-2011, 04:55 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HeLLCiTo View Post
thanks very much :up:


welcome

--------------- Added [DATE]1317491826[/DATE] at [TIME]1317491826[/TIME] ---------------

Quote:
Originally Posted by infnity8x3 View Post
I have been getting this since the update

IDK cause i never messed with the copyright.

you may of missed a file replacing them .. try and reupload ALL files .. then re import the xml file in the admincp and allow over wirte..
should fix ya up..
Reply With Quote
  #244  
Old 10-01-2011, 05:28 PM
infnity8x3 infnity8x3 is offline
 
Join Date: Apr 2009
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Fresh re-install still same problem made no file edits what so ever. I get this error when I got to the arcademodcp and try to edit score comments. That is the msg that pops up when i click the edit button.

Quote:
Warning: Missing argument 3 for skin_v3Arcade::copyright(), called in [path]/arcade/modules/mod_modcp.php on line 567 and defined in [path]/arcade/skins/skin_v3Arcade.php on line 1880
This is my line 567 in mo_modcp.php
PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']); 
and here is line 1880 in skin_v3Arcade.php well the whole function.
PHP Code:
function copyright($version,$country,$BFL) {
//
// if you had BRANDING FREE before ibProArcade v2.7.1+
// please contact me via mail -> ibproarcade@gmail.com
// to get the new instructions for BRANDING FREE - more easy now!
// !! DO NOT CHANGE THE CODE IN HERE ANYMORE !!
//
$text "
    <div align='center' style='font-size: 8pt;'>
        ibProArcade v
{$version}<br />";
if (
$country == "de") { $text $text "Erweiterte vBulletin-Version &copy; MrZeropage (<a href='http://www.vbulletin-germany.org/forumdisplay.php?f=28' target='_blank' title='www.vbulletin-germany.org'>www.vbulletin-germany.org</a>)<br />"; }
else { 
$text $text "Extended vBulletin-Version &copy; MrZeropage (<a href='https://vborg.vbsupport.ru/forumdisplay.php?f=170' target='_blank' title='www.vbulletin.org'>www.vbulletin.org</a>)<br />"; }
$text $text "</div><br />";
return (
$BFL "" $text);

Ok... nice I figured it out. Commenting out line 567 in mod_modcp.php
PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']); 
Fixed the error as a side effect it also removed branding. I don't think it really matters much because it only effects an area moderators can see. But if this bug effects other sections of the hack then the dev may want to look into it.
Reply With Quote
  #245  
Old 10-01-2011, 07:03 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I still think some files are not getting over writen'

does it do the same thing for the other skin ?
skin_arcade.php? it must

because the line in your mod_modcp.php file should be

PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1'],$main->BFL); 
instead of commenting this line out
PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1']); 
change it to

PHP Code:
$this->html .= $main->html->copyright($main->version,$ibforums->lang['timeformat1'],$main->BFL); 
Reply With Quote
  #246  
Old 10-01-2011, 08:55 PM
infnity8x3 infnity8x3 is offline
 
Join Date: Apr 2009
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That is a proper working fix thanks. I for the sake of trying to save my sanity re re downloaded the mod from the release thread. Opened it and went right to mod_modcp.php and the edit has to be done there to. So I know i overwrote everything this is actually a small bug in the code.

https://vborg.vbsupport.ru/showthread.php?t=101554
Reply With Quote
  #247  
Old 10-01-2011, 09:01 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it didnt over write if thats the line in the file you posted...
Reply With Quote
  #248  
Old 10-01-2011, 09:31 PM
infnity8x3 infnity8x3 is offline
 
Join Date: Apr 2009
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you for your help. And I guess this problem only pertains to me... But.

http://www.youtube.com/watch?v=mxMHZSNxybs
Reply With Quote
  #249  
Old 10-01-2011, 09:50 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

dude sorry I did PM zeropage about that I found that the day released ...
and I fixed my file and pmed him about it ...

your 100% correct that line should of been the same as the otehr line .. simply change it to the above , whatI posted and your fixed ...
Reply With Quote
  #250  
Old 10-13-2011, 12:27 AM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

been doing some testing .. with this issue of being logged out if you don't have remember me checked when logging to the forum.

A little info on what I did

I completely removed holdesession.php
and anything and everything to do with holdsession.php in the files, skins etc and also in one of the ibProArcade plugins

I logged to the board with remember me not checked..

I played alot of games.. paused for few min, finished the game, submitted score .. no issues

played long games..10 15 min. played short games..

worked 100% and the best part is no errors in the apache log file..
and you don't get logged out of the arcade /forum

works with or with out remember me checked..

I think now after this testing that the holdsession is no longer needed with vb4.08 and newer.

tested on vb4.1.7

going to test some more and consult with a few..
will keep ya posted
Reply With Quote
  #251  
Old 10-16-2011, 11:16 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

still working with out a hitch..
with out editing every file .. just delete everything in your holdsession.php and upload it ..
yes it will be blank..
but it's just about the same this is how I stumbled across this..

anyone wants to help test this out let me know..


Quote:
Originally Posted by Hippy View Post
been doing some testing .. with this issue of being logged out if you don't have remember me checked when logging to the forum.

A little info on what I did

I completely removed holdesession.php
and anything and everything to do with holdsession.php in the files, skins etc and also in one of the ibProArcade plugins

I logged to the board with remember me not checked..

I played alot of games.. paused for few min, finished the game, submitted score .. no issues

played long games..10 15 min. played short games..

worked 100% and the best part is no errors in the apache log file..
and you don't get logged out of the arcade /forum

works with or with out remember me checked..

I think now after this testing that the holdsession is no longer needed with vb4.08 and newer.

tested on vb4.1.7

going to test some more and consult with a few..
will keep ya posted
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:31 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05429 seconds
  • Memory Usage 2,373KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_code
  • (6)bbcode_php
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete