Jump to content

Benny

Members
  • Posts

    5
  • Joined

  • Last visited

Benny's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. In file NavData.class.php following should be inserted, to include DCT (Direct), used if no SID or STAR exists. // Remove any SID/STAR text $route_string = str_replace('SID', '', $route_string); $route_string = str_replace('STAR', '', $route_string); /*New*/ $route_string = str_replace('DCT', '', $route_string); /BR Benny
  2. When I add a route I get wrong image when looking at it on a map. I get 'fix' img for a VOR and 'vor' img for a FIX. In file app.config.php following is stated: define('NAV_NDB', 2); define('NAV_VOR', 3); define('NAV_DME', 4); define('NAV_FIX', 5); define('NAV_TRACK', 6); But in the navdata table in MySQL a lot of fixes has type 3 defined and some VORs has mixed type 3 and 5 depending on airway. Is the definition in app.config.php correct or is the fault in the MySQL table navdata? Is this navdata.sql keept up to date? /BR Benny
  3. Ok, I'll keep my fix for the time being. /Benny
  4. I have tested with 1.0.0.8 and 1.0.0.9 but no difference. The problem is use of the function iconv() which is causing the problem on my server. My version of PHP (5.2.9) is not having the function iconv() compiled into it. I havan't compiled my php version myself, it is a distributed version of PHP. Is it possible to do samething without using iconv()? /BR Benny
  5. Hi all, After installing the latest release of phpvms, Version 2.1.946, I got this error message in kACARS: Call to undefined function iconv() ... (see attatchment). I'm using php version 5.2.9 before update of phpvms following was used in kACARS_Free.php: $rec_xml = trim(utf8_encode(file_get_contents('php://input'))); after update following was used in kACARS_Free.php: $rec_xml = trim(iconv($encoding, "UTF-8", $postText)); Anybody else having this problem? I fixed it by reinserting the line from an older kACARS_Free.php, $rec_xml = trim(utf8_encode(file_get_contents('php://input'))); /BR Benny
×
×
  • Create New...