Status
Not open for further replies.

Snafu

New member
In most games, when I send my score do not save and shows a message says "Your submission can not be processed, Security token is missing". :(

Vbulletin 4.1.8 + Vbseo 3.6.0.

I just noticed the problem, worked well before with 4.1.5 :(

Any help?, thanks in advance.

EDIT-

I made a mistake in the description, also occur in the default skin.
 
Last edited:
Did you install vbseo after installing vbarcade? Sounds like vbseo's .htaccess file has overwritten the one generated for vbarcade, which would cause the games to not send their scores to the right places. Can you attach your forum root's .htaccess file here (you probably need to zip it first)
 
The problem is that I have vBSEO since long before vbarcade:

This is the .htaccess with which it has always worked (replacing the name of my site with "xxx" for safety):

Code:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On

# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /

#RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

RewriteCond %{HTTP_HOST} ^xxx.xxx.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xxx.xxx.com$
RewriteRule ^(.*)$ "http\:\/\/www\.xxx\.com$1" [R=301,L]

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.xxx.com$ [NC]
RewriteRule ^(.*)$ http://www.xxx.com/$1 [L,R=301]

#VBARCARDE

<IfModule mod_rewrite.c>
RewriteEngine on

# If vbulletin is in a subdirectory, add it here
RewriteBase /

# Retrieve gamedata requests and send to new dbtech locations
RewriteRule ^arcade/gamedata/(.*) dbtech/vbarcade/media/$1 [L]

# Retrieve crossdomain requests and send to new dbtech location
RewriteRule ^crossdomain\.xml dbtech/vbarcade/crossdomain.xml [L]

# Send hardcoded ipa scores to arcade instead
RewriteCond %{QUERY_STRING} act=Arcade [OR]
RewriteCond %{QUERY_STRING} autocom=arcade
RewriteRule ^index\.php arcade.php [L,QSA]

# Send hardcoded pnf scores to arcade instead
RewriteCond %{REQUEST_METHOD} POST [NC]
RewriteCond %{HTTP_COOKIE} vbarcade_session
RewriteRule ^index\.php arcade.php [L,QSA]

# Reroute v3arcade liveinstaller
RewriteCond %{QUERY_STRING} do=liveinstall
RewriteCond %{REQUEST_URI} v3arcade_admin\.php

# If you renamed your admincp directory, change it here
RewriteRule .* %{DOCUMENT_ROOT}/admincp/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]
</IfModule>

I reinstalled vbarcade but always the same, I reloaded all files but does not work.
 
Move everything after #VBARCADE to below #RewriteBase / and you should be all set!

I left it this way:

Code:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On

# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /

<IfModule mod_rewrite.c>
RewriteEngine On

# If vbulletin is in a subdirectory, add it here
RewriteBase /

# Retrieve gamedata requests and send to new dbtech locations
RewriteRule ^arcade/gamedata/(.*) dbtech/vbarcade/media/$1 [L]

# Retrieve crossdomain requests and send to new dbtech location
RewriteRule ^crossdomain\.xml dbtech/vbarcade/crossdomain.xml [L]

# Send hardcoded ipa scores to arcade instead
RewriteCond %{QUERY_STRING} act=Arcade [OR]
RewriteCond %{QUERY_STRING} autocom=arcade
RewriteRule ^index\.php arcade.php [L,QSA]

# Send hardcoded pnf scores to arcade instead
RewriteCond %{REQUEST_METHOD} POST [NC]
RewriteCond %{HTTP_COOKIE} vbarcade_session
RewriteRule ^index\.php arcade.php [L,QSA]

# Reroute v3arcade liveinstaller
RewriteCond %{QUERY_STRING} do=liveinstall
RewriteCond %{REQUEST_URI} v3arcade_admin\.php

# If you renamed your admincp directory, change it here
RewriteRule .* %{DOCUMENT_ROOT}/admincp/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]
</IfModule>

#RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

RewriteCond %{HTTP_HOST} ^xxx.xxx.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xxx.xxx.com$
RewriteRule ^(.*)$ "http\:\/\/www\.xxx\.com$1" [R=301,L]

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.xxx.com$ [NC]
RewriteRule ^(.*)$ http://www.xxx.com/$1 [L,R=301]

#VBARCARDE

But still get the same error, I also noticed that after the failure of the security token, game box restarts with the legend below the button to start playing

"You appear to be playing a game;
starting this might forfeit that session." :(
 
My apologies for the delay - are you still having this issue?

If so, please PM me an admin login with arcade access and I will check your other settings before diving into possible htaccess issues.
 
Status
Not open for further replies.

Similar threads

Legacy vBArcade

vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
899
Customer rating
0.00 star(s) 0 ratings
Top