Possible solution to highscore issue

edmwsg

Cadet
Do you have a problem with your xf arcade recording high score?

Check if you can access your site arcade.php
eg.
http://domain.com/arcade.php

If it doesn't work, and you are using Nginx, try the following solution.

Add

Code:
rewrite /arcade.php /arcade;

as in

Code:
server {
server_name domain.com;
root /var/www/domain.com;
include /etc/nginx/fastcgi_php;
rewrite /arcade.php /arcade;
 
location / {
try_files $uri $uri/ /index.php?$uri&$args;
index index.php index.html;
}
 
location /internal_data/ {
internal;
}
location /library/ {
internal;
}
 
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
 
}
 
Back
Top