Since Combu is no more in development, we have disabled the subdomain "services.skaredcreations.com" that is called internally in the administration console pages to check for new updates (that will probably not be released any time soon), so it may happen to encounter the error "504 Gateway Timeout" while navigating the administration console.
To fix this error you can just edit the file "/lib/constants.php" and replace "https://services.skaredcreations.com" with "https://www.skaredcreations.com" in the constant definitions COMBU_UPDATE and COMBU_UPDATER.
Even better, you can also completely disable the check for updates by editing the file "/admin/lib/includes/common_functions.php" and replace the content of both functions "checkUpgradeAvailable" and "checkUpgradeUpdaterAvailable" with the following, so it will not even make a call to our updater and your server will save traffic and resources usage:
function checkUpgradeAvailable() { return array( "version" => COMBU_VERSION, "release_notes" => "", "updater_version" => null, "sql" => array(), "files" => array(), "delete" => array(), "scripts" => array(), "beta" => FALSE, "upgrade_required" => FALSE ); } function checkUpgradeUpdaterAvailable() { return array( "version" => UPDATER_VERSION, "release_notes" => "", "updater_version" => null, "sql" => array(), "files" => array(), "delete" => array(), "scripts" => array(), "beta" => FALSE, "upgrade_required" => FALSE ); }
FRANCESCO CROCETTI @ SKARED CREATIONS