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
This score was not submitted from the game. Your score will not be saved. Details »»
This score was not submitted from the game. Your score will not be saved.
Version: , by Chadi Chadi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 02-25-2008 Last Update: Never Installs: 0
 
No support by the author.

My members and myself get this message on dozens of games. Its rather annoying and hopefully there is a way to override this problem.

"This score was not submitted from the game. Your score will not be saved."

I cannot duplicate exactly *when* it happens, but it seems it happens when you beat the high score perhaps more than once per day. I could be wrong, but either way I'd like to override this.

I'm not using any portal at all. My site is Talk Jesus Forums / www.talkjesus.com

Show Your Support

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

Comments
  #92  
Old 08-15-2009, 03:48 AM
Hannan Hannan is offline
 
Join Date: Jan 2008
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Pitman View Post
My problem is due to my .htaccess file. I have /index.php redirected to / and when it tries to save the score, it redirects to /?act=Arcade&do=newscore rather than /index.php?act=Arcade&do=newscore which causes it not to save the score.

Is there anyway to either change something where it saves the score to /?act=Arcade&do=newscore (no index.php) or a RewriteCond I can use in the .htaccess file to work around this problem?

Here is basically what I'm using in my .htaccess file, if I remove this part, the scores save. I need the scores to save and the functionality of this to remain the same.

Code:
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]
RewriteCond %{THE_REQUEST} ^.*\/index\.php?
RewriteRule ^(.*)index\.php?$ http://www.example.com/$1 [R=301,L]
--------------- Added [DATE]1235340190[/DATE] at [TIME]1235340190[/TIME] ---------------

Adding:

Code:
RewriteCond %{QUERY_STRING} !act=Arcade&do=newscore
RewriteCond %{QUERY_STRING} !autocom=arcade&do=savescore
Has seem to have worked.
This one works great!! thanks for that:up:
Reply With Quote
  #93  
Old 08-26-2009, 02:00 AM
yeshoward yeshoward is offline
 
Join Date: Mar 2007
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This score was not submitted from the game. Your score will not be saved.

Transmission Timeout (0 sec)

many players have met these errors, any fix?

ipro3.6.8 +VB3.8.2

Server-Timeout (seconds) for Score-Submission is set to 30 already
Reply With Quote
  #94  
Old 08-29-2009, 10:20 AM
oldlock oldlock is offline
 
Join Date: Jul 2009
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Latest version of VB + the arcade. Seems like lots of people are asking the same question and getting no answers ? I am not running VBSEO. Timeout is 30 mins. I have debug on are the error code is 1. Does anyone have any input to make ?

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

Found a sort of solution. Games installed from .tar files were fine. So I deleted all games that were not installed from .tar files and replaced them.
Reply With Quote
  #95  
Old 10-22-2009, 11:44 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm new to all this stuff, and I don't claim to understand most of what the arcade code does. But I was tracking down a problem with scores not saving in IE and I found that the problem was related to the code around line 3375, which seems to be some sort of fix for a problem with IE. Around line 3439 or so there's a check that looks like it determines if the amount of time the game was played is reasonable, but I was finding that the time was 0 and so I was getting an "Error #005" 'your score will not be saved' message. This seems to be related to the fix at 3375 which sets the game start time to the current time. The problem is that the game end time is also the current time. I "fixed" this by subtracting 1 from the game start time around line 3375, so the code in that area now reads:

Code:
	$vs['sessd'] = 1;
	$vs['start'] = $gametime - 1.0;
	$vs['randchar1'] = $randomchar;
	$vs['randchar2'] = $randomchar2;
	$genscore = $player_score * $vs['randchar1'] ^ $vs['randchar2'];
Maybe this is server-dependent so that it doesn't happen for everyone.

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

Another problem I found with scores not saving is that people get logged out while playing, then their browser "hangs" when it tries to save the score (assuming they haven't checked "remember me" when loggin in). I found that the "holdsession.php" file wasn't working to keep the user logged in, for two different reasons. One is that there's an error in the file. On the last line starting with "echo", there's an extra backslash right after 'URL=', so after URL there should be no backslash between the '=' and the double quotes.

Also, at least in version 3.8.3 of vB, the session was still not being held because the 'lastactivity' time was never getting written to the database. I tracked this down to the fact that it's done using "shutdown_query", which doesn't execute the query until the end of the page request, but since "holdsession.php" doesn't use any of the vB output functions, the query never gets executed. I fixed this by adding a call to "exec_shut_down();" as the last line in holdsession.php.
Reply With Quote
  #96  
Old 06-29-2011, 05:37 PM
Eruantien Eruantien is offline
 
Join Date: Jan 2009
Posts: 187
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am having this exact issue but I do not use VBSeo. Was there any resolution to this?
Reply With Quote
  #97  
Old 04-03-2012, 11:14 PM
J19784B5A39B J19784B5A39B is offline
 
Join Date: Jun 2009
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

after updating to v2.7.2+ many games (new and already installed) give me a error like this:

This score was not submitted from the game.

Error #011 -> gid=14569|ui[a_sess_gid]=14569|g[gid]=|vs[mid]=37|vs[gname]=BandItAS3v2DR|gamename=BItAS3v2DR
Reply With Quote
  #98  
Old 04-04-2012, 01:04 PM
Mahoni999 Mahoni999 is offline
 
Join Date: Apr 2009
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by J19784B5A39B View Post
after updating to v2.7.2+ many games (new and already installed) give me a error like this:

This score was not submitted from the game.

Error #011 -> gid=14569|ui[a_sess_gid]=14569|g[gid]=|vs[mid]=37|vs[gname]=BandItAS3v2DR|gamename=BItAS3v2DR

I had same Problem after i manually updated the required Files for Security Reason from v2.7.2

Lots of Games didn`t save Scores anymore. And also my Search Function within the Arcade didn`t work well anymore....

Maybe you got the same Problem like me?

Read this: https://vborg.vbsupport.ru/showthread.php?t=280958

Regards,
Mahoni999
Reply With Quote
  #99  
Old 04-04-2012, 04:34 PM
J19784B5A39B J19784B5A39B is offline
 
Join Date: Jun 2009
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mahoni999 View Post
I had same Problem after i manually updated the required Files for Security Reason from v2.7.2

Lots of Games didn`t save Scores anymore. And also my Search Function within the Arcade didn`t work well anymore....

Maybe you got the same Problem like me?

Read this: https://vborg.vbsupport.ru/showthread.php?t=280958

Regards,
Mahoni999
Mahoni999, thanks for your answer. I read your thread, but i didn't understand how you solved.
Reply With Quote
  #100  
Old 04-06-2012, 07:23 AM
Mahoni999 Mahoni999 is offline
 
Join Date: Apr 2009
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

New Filter of SQL-Keywords is filtering some words that it should not such as "or" . Search-Function hasn`t been able to find Games like Factory Balls.

When Highscore gets saved it takes the game ID as Key, but also other Infos get submitted. So the Guess is, that here this Filter also takes Action and prevendes then the Saving.

Maybe you want to check on this?
Reply With Quote
  #101  
Old 04-07-2012, 01:25 AM
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 Mahoni999 View Post
New Filter of SQL-Keywords is filtering some words that it should not such as "or" . Search-Function hasn`t been able to find Games like Factory Balls.

When Highscore gets saved it takes the game ID as Key, but also other Infos get submitted. So the Guess is, that here this Filter also takes Action and prevendes then the Saving.

Maybe you want to check on this?
I fixed J19784B5A39B arcade the other day..

thanks for the reply
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 04:53 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.04993 seconds
  • Memory Usage 2,316KB
  • 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
  • (3)bbcode_code
  • (4)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
  • (3)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