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
could not access game table error message Details »»
could not access game table error message
Version: , by FreakyG'sMom FreakyG'sMom is offline
Developer Last Online: Jul 2012 Show Printable Version Email this Page

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

I am getting this message "could not access game table" after every game. Any ideas on how to fix it?



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

Can anyone help me?

Show Your Support

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

Comments
  #12  
Old 07-28-2010, 03:55 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
did they ever work ?
did you set chmod to the folders ?
make sure you CHMOD the /arcade directory and all its subfolders to 0777
for starters
did you do the index edit ?
Yes, the 1st time I played the games (other than Space Invaders, it has never worked)
Yes
Not on my host, if 0777 stuff breaks, MUST be 0755
What Index Edit? Maybe that is what I am missing... The install Instructions don't say anything about editing any index, the only edits are a few template edits.
Reply With Quote
  #13  
Old 07-28-2010, 08:40 PM
Amm0 Amm0 is offline
 
Join Date: May 2008
Location: England
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got this error on Vbulletin 3.7.2
Anyone know of a solution?

I have CHMOD the /arcade directory and all its subfolders to 0777
Reply With Quote
  #14  
Old 07-29-2010, 12:53 AM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just tested those games and I get the same error
but the added games I don't get that message..

any of you have any other games installed besides the default ones ?

and as someeone stated the score still saves on those..

the edit Dragonsys
is
Code:
If you are 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:
----------------------------------------------------------
<?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 :)
Reply With Quote
  #15  
Old 07-29-2010, 12:32 PM
nick-harper nick-harper is offline
 
Join Date: Jun 2008
Posts: 163
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am also getting this error

I am using vBulletin 4
Reply With Quote
  #16  
Old 07-30-2010, 02:04 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
Just tested those games and I get the same error
but the added games I don't get that message..

any of you have any other games installed besides the default ones ?

and as someeone stated the score still saves on those..

the edit Dragonsys
is
I only have the games installed.
Thanks for the edit, but...

Code:
If you are using vbAdvanced Portal and your /index.php is not the original one from vBulletin,
My index.php is the original vbulletin one.
Reply With Quote
  #17  
Old 07-30-2010, 08:02 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

again.

People been having problems since vb starting using the forum.php

the index.php is still there as well but its kind of like a redirect..

unless in your admincp you have index set in the option> Forums Home Page Options
(This option allows you to set the script name of the page that acts as your forum home page. By default this will be 'forum' (meaning forum.php but you may want to call it whatever else you like for your own purposes.

If you change this value you must manually rename the forumhome PHP script to match the new value.)

admincp > arcade > information youll see this notice
Notice:
Your forum's mainpage is forum.php - please make sure to adapt your /index.php otherwise scores won't be recorded!
You will find detailed instructions in the ibProArcade-archive: INFO - vbadvanced or other Portal.txt
Reply With Quote
  #18  
Old 07-31-2010, 04:16 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
again.

People been having problems since vb starting using the forum.php

the index.php is still there as well but its kind of like a redirect..

unless in your admincp you have index set in the option> Forums Home Page Options
(This option allows you to set the script name of the page that acts as your forum home page. By default this will be 'forum' (meaning forum.php but you may want to call it whatever else you like for your own purposes.

If you change this value you must manually rename the forumhome PHP script to match the new value.)



admincp > arcade > information youll see this notice
Notice:
Your forum's mainpage is forum.php - please make sure to adapt your /index.php otherwise scores won't be recorded!
You will find detailed instructions in the ibProArcade-archive: INFO - vbadvanced or other Portal.txt
option> Forums Home Page Options - This is set to index (as it has always been)
admincp > arcade > information - No notice
I will try the index edit posted above, but I ask, how was I supposed to know about this edit when it is not in the install procedure document? I would not have looked in any kind of portal related info, since I do not use a portal.
Reply With Quote
  #19  
Old 07-31-2010, 06:23 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you need to test other games then..
Like I said before ..those games I get the same error but any other the ones I install don't .

the edit above it for the score not saving ..
if your score is saving then that will do nothing for you.
and this edit is in the install procedure document.

I use abvanced and I have no issues, never had to use this edit .
I have a test board that is using forum.php and I had to do the edit to save score , unless I change Forums Home Page Options

But my dir's are 777... you stated your dir's are 755, I am guessing this is your problem
Reply With Quote
  #20  
Old 01-15-2011, 02:56 AM
geebee geebee is offline
 
Join Date: Jan 2011
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has there ultimately even been a resolution to this? Just installed 2.7.0 and I am getting this message after my game. The only two tested thus far have been Snake and Asteroids.

the /arcade folder is set to 777 and i have tried the forum.php suggestion with no success..
Reply With Quote
  #21  
Old 01-15-2011, 03:23 AM
Digital Jedi's Avatar
Digital Jedi Digital Jedi is offline
 
Join Date: Oct 2006
Location: PopCulturalReferenceLand
Posts: 5,171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Check to see if you even have a table named _games in your database. If not, you may need to re-import the product.
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 02:02 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.04579 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
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
  • (2)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
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete