The GFLCore server list is stuck and not updating any game server information.
Example(s)
To determine the cause to this issue, it's best to take a look at the IPS 4 System Logs and see if the GFLCore application is throwing any errors.
Situation #1
Error: Class 'GameQ_Protocols_Sandbox' not found (0)
#0 /var/www/sites/gflclan/public/applications/gflcore/interface/GameQ/GameQ.php(391): GameQ->addServer(Array)
#1 /var/www/sites/gflclan/public/applications/gflcore/tasks/queryservers.php(68): GameQ->addServers(Array)
#2 /var/www/sites/gflclan/public/system/Task/Task.php(248): IPS\gflcore\tasks\_queryservers->execute()
#3 /var/www/sites/gflclan/public/system/Task/Task.php(217): IPS\_Task->run()
#4 /var/www/sites/gflclan/public/applications/core/interface/task/task.php(60): IPS\_Task->runAndLog()
#5 {main}
Cause(s)
Situation #1
A new game was added recently and the file containing query protocol information, etc. is nonexistent.
Solution(s)
Situation #1
You must create a file in the applications/gflcore/interface/GameQ/gameq/protocols/ directory. The file name should be the same as the game name with having .php at the end. In our example situation, the file name should be sandbox.php.
You may copy the contents of another file with similar query protocol code along with edit it to suite the new game. For example here:
<?php /** * This file is part of GameQ. * * GameQ is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * GameQ is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ /** * Terraria Protocol Class * */ class GameQ_Protocols_Sandbox extends GameQ_Protocols_Source { protected $name = "sandbox"; protected $name_long = "Terraria"; }
Additional Information
As of right now, this is the only common error the GFLCore application runs into.

Recommended Comments
There are no comments to display.