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
Blank white page at end of game? Details »»
Blank white page at end of game?
Version: , by Mark Carras Mark Carras is offline
Developer Last Online: Jun 2007 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 10-29-2006 Last Update: Never Installs: 0
 
No support by the author.

Did I mess up on the install or is this a bug? At the end of a game I get a blank white screen. Everything else seems to work great though. When I click the 'forum' tab on Firefox to get back to the board, the score is saved and everything is fine. So what is the blank white page and how do I fix it?

Thanks a ton for this hack, now I won't get anything done.

Show Your Support

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

Comments
  #2  
Old 10-29-2006, 05:34 PM
nitro nitro is offline
 
Join Date: Nov 2001
Posts: 302
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would guess you have a corrupted file during the upload, try replacing them ensuring you overwrite and not resume or skip.
You should not need to re-install.
Reply With Quote
  #3  
Old 10-30-2006, 01:49 AM
Mark Carras Mark Carras is offline
 
Join Date: Oct 2006
Location: Lacey, WA USA
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea which file it might be specifically?

This was my very first vboard hack I did without my tech support guiding my every step, so sorry if I ask stupid questions. I'm a little bit of a noob.
Reply With Quote
  #4  
Old 11-03-2006, 12:30 AM
Mark Carras Mark Carras is offline
 
Join Date: Oct 2006
Location: Lacey, WA USA
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, I am still trying to fix this. The url it sends players to at the end of most games is http://www.rockmymonkey.com/forums/i...de&do=newscore

So why is it sending them to the forum index instead of the arcade index? Does this help anyone know what file is bad or what step I missed in the set up?
Reply With Quote
  #5  
Old 11-03-2006, 01:13 AM
nelstaresthero nelstaresthero is offline
 
Join Date: Oct 2006
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i got the same thing goin on bro, sorta.
if i find a fix ill let you know
Reply With Quote
  #6  
Old 11-03-2006, 04:22 AM
Mark Carras Mark Carras is offline
 
Join Date: Oct 2006
Location: Lacey, WA USA
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by nelstaresthero
i got the same thing goin on bro, sorta.
if i find a fix ill let you know
Glad it ain't just me.
Reply With Quote
  #7  
Old 11-03-2006, 04:11 PM
Gemma's Avatar
Gemma Gemma is offline
 
Join Date: Apr 2004
Location: Scotland
Posts: 1,229
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you're 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:

Code:
<?php
you have to insert:

Code:
// ibProArcade modification
if($_POST['module'] == "pnFlashGames"){
	$_GET[act] = "Arcade";
	$_GET['module'] = "arcade";
}
if($_POST['func'] == "storeScore"){
	$_GET['do'] = "pnFStoreScore";
}
if($_POST['func'] == "saveGame"){
	$_GET['do'] = "pnFSaveGame";
}
if($_POST['func'] == "loadGame"){
	$_GET['do'] = "pnFLoadGame";
}
$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 modification
Reply With Quote
  #8  
Old 11-04-2006, 07:02 PM
Mark Carras Mark Carras is offline
 
Join Date: Oct 2006
Location: Lacey, WA USA
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gemma
If you're 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:

Code:
<?php
you have to insert:

Code:
// ibProArcade modification
if($_POST['module'] == "pnFlashGames"){
	$_GET[act] = "Arcade";
	$_GET['module'] = "arcade";
}
if($_POST['func'] == "storeScore"){
	$_GET['do'] = "pnFStoreScore";
}
if($_POST['func'] == "saveGame"){
	$_GET['do'] = "pnFSaveGame";
}
if($_POST['func'] == "loadGame"){
	$_GET['do'] = "pnFLoadGame";
}
$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 modification
Which Index.php? The one for the board in general or the one for the arcade?
Reply With Quote
  #9  
Old 11-05-2006, 11:46 AM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the index.php in your forum's root

ibProArcade just comes along with arcade.php
Reply With Quote
  #10  
Old 11-12-2006, 06:03 AM
Mark Carras Mark Carras is offline
 
Join Date: Oct 2006
Location: Lacey, WA USA
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage
the index.php in your forum's root


ibProArcade just comes along with arcade.php
Thanks people. That worked great!
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 03:40 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.04942 seconds
  • Memory Usage 2,298KB
  • Queries Executed 23 (?)
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
  • (4)bbcode_code
  • (3)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete