Web Server Connection
This snippet is what is required for your server to reach out to your web server and verify your users. More on this in the next guide.
Edit the file /opt/atavism_server/bin/auth_server.py on your game server and change the following lines by removing the # in front of them. Change the URL to your verify account script.
sudo nano /opt/atavism_server/bin/auth_server.py |
connector = RemotePhpAccountConnector() connector.setUrl(“http://YourDomainHere/wp-content/plugins/atavism-integration/verify.php”) connector.setPost(1) ms.setRemoteConnector(connector) |