I am currently working on upgrading our Arcade to a totally new arcade system. The arcade will be unavailable for a short period.
Thanks for your understanding!
Thanks for your understanding!
# Merge everything after this line into your forum root's .htaccess file so certain games can process scores, then try importing again:
<IfModule mod_rewrite.c>
RewriteEngine on
# If vbulletin is in a subdirectory, add it here
RewriteBase /Forum/
# 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>
rewrite ^/arcade/gamedata/(.*) /dbtech/vbarcade/media/$1 last;
rewrite ^/crossdomain\.xml /dbtech/vbarcade/crossdomain.xml last;
if ($args ~ "act=Arcade"){
set $rule_2 1;
}
if ($args ~ "autocom=arcade"){
set $rule_2 1;
}
if ($rule_2 = "1"){
rewrite ^/index\.php /arcade.php last;
}
if ($request_method ~* "POST"){
set $rule_3 1$rule_3;
}
if ($http_cookie ~ "vbarcade_session"){
set $rule_3 2$rule_3;
}
if ($rule_3 = "21"){
rewrite ^/index\.php /arcade.php last;
}
if ($args ~ "do=liveinstall"){
set $rule_4 1$rule_4;
}
if ($uri ~ "v3arcade_admin\.php"){
set $rule_4 2$rule_4;
}
if ($rule_4 = "21"){
rewrite /.* /$document_root/admincp/arcade_admin.php?$args&do=review&import=browse&system=v3a permanent;
break;
}
Limited time offer