To fix the URL fopen error:
In notamdep.tpl, replace:
if (!$xml = simplexml_load_file ($stream)) {
die("Fehler beim Einlesen der XML Datei");
}
With:
$file = new CodonWebService();
$contents = @$file->get($stream);
$xml = @simplexml_load_string($contents);
And then in notamarr.tpl do the same thing. This uses the CodonWebService class to pull the stream via cURL, and load it that way. This is the safer way since alot of hosts (including mine) disable url_fopen.
There currently isn't because it's not a persistent system, so it's difficult to keep track. It's on my list, though, and I'm trying to figure out a good way to do this
Then from 2.0 to 2.1 I'm assuming. Well, check the changelog, there were template changes which have to be made. Also, run the install/checkinstall.php script to make sure there's no corrupted or missing files
vaCentral has been updated, and still ongoing with improvements (I've got a pretty long list, but this is a start!). Let me know if you have any trouble or issues.
This exists, check the app.config.php and copy the line into local.config.php. I forget the name but I thnk it's EMAIL_REPLY_ADDRESS or something like that. There are comments in there explaning