Log in

View Full Version : problem saving scores


aj8690
05-26-2007, 03:50 PM
It didn't used to do this, but now whenever someone trys to save their score in a game instead of going to the highscores page it goes to the homepage.

What could be the problem?

TIA.

stangger5
05-26-2007, 06:46 PM
Read the (INFO - vbadvanced or another Portal.txt) that comes with the arcade...

aj8690
05-26-2007, 10:40 PM
Thank you very much. I didn't realize that that would cause a problem but it works now.

Thanks. :)

peterpigman
05-27-2007, 05:56 PM
I have that already in but using IE a lot os scores are not submitting. Firefox seems to be ok though.

MrZeropage
05-27-2007, 06:35 PM
is it sure and re-producable that only IE has that problem ?

IE6 or IE7 ?

If so, I'd like to add some debug-info to your site and work on a fix for this...

peterpigman
05-27-2007, 07:25 PM
is it sure and re-producable that only IE has that problem ?

IE6 or IE7 ?

If so, I'd like to add some debug-info to your site and work on a fix for this...

Ie 7. If I use firefox the vast majority of scores submit (99%+). But IE 7 it is about 50% at times. Also when using IE and playing a game it is reloading the page every 15 seconds or so. Not sure why. Edit: Actually I just tested it again and it seems the first 3 or 4 scores go in ok but then they stop submitting.

I am willing to let you do whatever to find the problem.

MrZeropage
05-28-2007, 09:08 AM
Ok, I have Firefox and IE7 here, please contact me via PM and provide AdminCP+FTP access so I can hunt down this problem. I also need one additional account being a normal user for testing.

Let me know which games have this problems, thanks

peterpigman
05-28-2007, 08:36 PM
Ok, I have Firefox and IE7 here, please contact me via PM and provide AdminCP+FTP access so I can hunt down this problem. I also need one additional account being a normal user for testing.

Let me know which games have this problems, thanks

ok.

All of the games tbh, IE 7 doesn't like this for some reason.

Nkay
06-12-2007, 12:39 AM
Most of my users always say that their scores dont submit too, any update on this problem?

Our House
06-12-2007, 02:17 PM
Hi, same problem here.

My members and I have done a bunch of testing on the issue, and it's definitely an IE cookies problem. Games are being recorded 99+% of the time (as mentioned above) in FireFox, but a user's second score for any game is not being saved when using IE. The message reads:

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

MrZeropage, here's a link to the bug report thread in my forum:

http://forum.usgamers.net/showthread.php?t=222

...hopefully that helps a little. Also, I believe "Zurvan" (the admin) had sent you a PM with FTP/adminCP access in it.

Thanks,
J

Doallyn
06-12-2007, 06:19 PM
not sure if its the same but i have users who keep having scores not saving. It seems to be losing the session ID

for me the page reloads while you are playing the game i assume to keep the session alive but for some people this method isn't working and they get timedout while still playing the game!

Our House
06-13-2007, 12:00 AM
We originally thought it was a session ID, page reload, or timeout issue as well...

But try using IE. You'll see that the system religiously saves the user's first score of a session and NOT any scores after that (regardless of the time taken to play a game).

peterpigman
06-13-2007, 08:32 PM
We originally thought it was a session ID, page reload, or timeout issue as well...

But try using IE. You'll see that the system religiously saves the user's first score of a session and NOT any scores after that (regardless of the time taken to play a game).

Actually it might be a server issue or something, my arcade suddenly fixed itself without any alterations. It is a bit of a mystery.

Our House
06-19-2007, 02:55 PM
Peter,

What kind of server issue. We've been at this for a while now and still can't get scores to record properly in IE. It sucks big time because that's holding up progress at so many levels. :(

MrZero,

Any update on this? Did you get Zurvan's PM with FTP + Admin access?

aj8690
06-21-2007, 12:21 AM
It didn't used to do this, but now whenever someone trys to save their score in a game instead of going to the highscores page it goes to the homepage.

What could be the problem?

TIA.
For some reason, I'm having the same problem, AGAIN, after it was fixed. I just checked my index.php and it has the arcade code added to it at the top like it says.

What could be wrong now? My members are complaining. :(

I hope there is a simple solution to this problem like the last time.

Oh I did edit my forum.php file (the default vBulletin index.php) to work with a custom hack of mine. Would that affect it or is it unrelated?

Thanks in advanced.

EDIT: I was able to fix it. In my .htaccess file, I had it so index.php redirects to my root, which the arcade apparently doesn't like. I removed that part of my .htaccess and its fine now.

MrZeropage
06-21-2007, 06:33 PM
always realize that games do submit their score to index.php :)

aj8690
06-21-2007, 07:59 PM
Thanks. Is there any way to make it so games use a different file to submit? Or is that too complicated?

Thanks for your help. :)

MrZeropage
06-22-2007, 07:12 AM
this is hardcoded in the converted games, so no chance to change it

aj8690
06-23-2007, 02:16 AM
Ah, ok. Thanks. I was actually able to fix it by tweaking a few things in my .htaccess.

Forumnerds
06-23-2007, 11:16 AM
So how do you fix it then please tell us what you did like in steps cause i get it sometimes

aj8690
06-23-2007, 02:55 PM
If you want index.php to redirect to the domain root like me, but still want your highscores to save, you need to remove anything that redirects your index.php from .htaccess currently, then add:

RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{THE_REQUEST} "T /index.php"
RewriteCond %{QUERY_STRING} ^$
RewriteRule .* http://www.yourdomain.com/ [L,R=301]

This will 301 redirect index.php to your root while still allowing the arcade to use index.php.

AJ

Nkay
06-23-2007, 10:13 PM
If you want index.php to redirect to the domain root like me, but still want your highscores to save, you need to remove anything that redirects your index.php from .htaccess currently, then add:

RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{THE_REQUEST} "T /index.php"
RewriteCond %{QUERY_STRING} ^$
RewriteRule .* http://www.yourdomain.com/ [L,R=301]

This will 301 redirect index.php to your root while still allowing the arcade to use index.php.

AJ
In english. Sorry im a noob?