If your site phpVMS based virtual airline is experiencing issues with timeouts and kACARS disconnects during the unfortunate outage of the phpVMS and VaCentral servers you can disable the functions in the framework that is calling back to the api server(s).
In the /core/local.config.php file change the following code;
Config::Set('VACENTRAL_ENABLED', true);
so it looks like this;
Config::Set('VACENTRAL_ENABLED', false);
and also
Config::Set('CHECK_RELEASE_VERSION', true);
Config::Set('CHECK_BETA_VERSION', true);
to
Config::Set('CHECK_RELEASE_VERSION', false);
Config::Set('CHECK_BETA_VERSION', false);
This should bring your site back to normal except for there will be no data sent to VaCentral. Once the phpVMS sites are back online just change those lines back to the original settings and you should be back up and running.
Also, if you have your VaCentral rank shown on your pages anywhere disable the function until phpVMS is restored.






