-
Notifications
You must be signed in to change notification settings - Fork 16
Troubleshooting
Sage Russell edited this page Jun 25, 2018
·
7 revisions
$ git fetch --all
$ git reset --hard HEAD~
$ git pull
$ namei -om /www/phparcade/
You need to set your precedence, since Digital Ocean doesn't support IPv6 SMTP. Here are the steps for CentOS7 (but should be very similar for other *nix systems)
Fedora
$ cp /usr/share/doc/glibc-common/gai.conf /etc/gai.conf
echo "precedence ::ffff:0:0/96 100" >> /etc/gai.conf
Post a bug report and I'll do my best to help.
-- Scores in the champs table for which there are no matching scores in the scores table
SELECT * FROM phparcade.games_champs gc
WHERE nameid NOT IN (SELECT nameid FROM phparcade.games_score);
-- Games which have scores, but there is no champ in the champs table
SELECT * FROM phparcade.games_score
WHERE nameid NOT IN (SELECT nameid FROM phparcade.games_champs);
-- Scores for players who don't exist
SELECT gs.*
FROM games_score gs
WHERE player NOT IN (SELECT m.id FROM members m);
-- Champs for players who don't exist
SELECT gc.*
FROM games_champs gc
WHERE player NOT IN (SELECT m.id FROM members m);
-- Scores for games which don't exist
SELECT gs.*
FROM games_score gs
WHERE nameid NOT IN (SELECT g.id FROM games g);
DELETE FROM games_score
WHERE nameid NOT IN (SELECT g.id FROM games g);
-- Champs for games which don't exist
SELECT gc.*
FROM games_champs gc
WHERE nameid NOT IN (SELECT g.id FROM games g);
DELETE FROM games_champs WHERE nameid NOT IN (SELECT g.id FROM games g);