Bug Can't submit score

Status
Not open for further replies.
Make sure the games' scoring systems are set properly in the ACP, that they are not Mochi games, and that the .htaccess edits for vBArcade are placed above any DBSEO rewrite rules.
 
No Mochi games, Please let me know.

Is my setting: Forum Manager - Solitary Club - The Place For Clean Amusement ! - vBulletin Admin Control Panel | Awesome Screenshot

my .htaccess

Code:
<IfModule mod_rewrite.c>
  RewriteEngine on
  # Set to vbulletin directory
  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 legacy scores to arcade instead
  RewriteCond %{REQUEST_URI} newscore\.php [OR]
  RewriteCond %{REQUEST_URI} viewgame\.php
  RewriteRule .* arcade.php?sendscore=legacy [L,QSA]

  # Send hardcoded legacy scores to arcade instead
  RewriteCond %{QUERY_STRING} func=storeScore [OR]
  RewriteCond %{QUERY_STRING} autocom=arcade [OR]
  RewriteCond %{QUERY_STRING} act=arcadelib [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}/admincpforum/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]
</IfModule>

<IfModule mod_rewrite.c>
   RewriteEngine On

   # If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
   # RewriteBase /

   # If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
   # Options -MultiViews

   RewriteCond %{REQUEST_URI} !(admincpforum/|dbseocp/|modcpforum/|cron|mobiquo|forumrunner|api\.php|cometchat/|extensions/mobileapp/)
   RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]

   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !/(admincpforum|dbseocp|modcpforum|clientscript|cpstyles|images|cometchat|extensions|mobileapp)/
   RewriteRule ^(.+)$ dbseo.php [L,QSA]
</IfModule>

#Deny attempts to view the Htaccess file.
<Files .htaccess>
Order allow,deny
Deny from all
</Files>
 
Are you receiving any error messages? Have you checked your browser's error console for any error messages there?
 
I'm not seeing the browser's error console anywhere in that video
F12 brings it up in Firefox and Chrome, you'll want to set it up so that it shows you XHR requests.
 
All Scoring System result are same for ibProArcade, Armor, v3 Arcade ... etc. My all game submit score are not working. I am posted one video scene short, That same (Apples) game submit score are working other site (ibProArcade, v3 Arcade site) but only not working on my site with vBArcade Mod. Also i am added Archive File to upload and test your development site. This game scoring systems using ibProArcade. Please can you look into this issue on my site ?

Check here : https://drive.google.com/file/d/0B2u7wGh_C3_LWFZ4TzVrRGFFbkk/view?usp=sharing
 

Attachments

  • game_applesBH.tar
    78.5 KB · Views: 3
Please can you share your .htaccess?

I am using this .htaccess, Please let me know, does my .htaccess are looking good?

Code:
RewriteEngine On
# Set to vbulletin directory
RewriteBase /

#RewriteRule ^(.+)$ maintenance.html [L,QSA]

# 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}/admincpforum/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]

RewriteEngine On
# If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
# Options -MultiViews

RewriteCond %{REQUEST_URI} !(admincpforum/|dbseocp/|modcpforum/|cron|mobiquo|forumrunner|api\.php|cometchat/|extensions/mobileapp/)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincpforum|dbseocp|modcpforum|clientscript|cpstyles|images|cometchat|extensions|mobileapp)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]

#Deny attempts to view the Htaccess file.
<Files .htaccess>
Order allow,deny
Deny from all
</Files>
 
Code:
<IfModule mod_rewrite.c>
	RewriteEngine On

	# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
	RewriteBase /

	# If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
	Options -MultiViews

	RewriteCond %{HTTP_USER_AGENT} libwww-perl.* 
	RewriteRule .* – [F,L]

	# 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]

	RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|vbseo_sitemap|dbseo_sitemap|mobiquo|forumrunner|api\.php|product\.php|branding\.php|arcade_global\.php|401\.shtml|mod_pagespeed_statistics)
	RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]

	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|mod_pagespeed_statistics)/
	RewriteRule ^(.+)$ dbseo.php [L,QSA]
</IfModule>
 
Status
Not open for further replies.

Legacy vBArcade

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