Quote:
Originally Posted by Darkwaltz4
Yes, the arcade needs the .htaccess file for scoring to work.
Nothing in there is related to access permissions though, just some rewrite rules.
Can you send your host the .htaccess file that vbarcade generated? They can verify if they disabled any of the directives listed within it for your site in particular.
|
Code:
<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 pnf+ipa scores to arcade instead
RewriteCond %{QUERY_STRING} func=storeScore [OR]
RewriteCond %{QUERY_STRING} autocom=arcade [OR]
RewriteCond %{QUERY_STRING} act=Arcade
RewriteRule .* 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>
Just to note..
VB is in the main directory of my site...
Currently still using /admincp & /modcp
To make sure the game posted scores I grabbed one that was on your site... Still nothing..