Jump to content

Edwin

Members
  • Posts

    139
  • Joined

  • Last visited

Everything posted by Edwin

  1. Hi, Tried to download this, but link is dead, can you please reupload it?
  2. He is looking for a webmaster
  3. i would like to bump this thread up as I have the same issue. I registred on friday, but seem to cant send the pireps with a no response from the api server. I Tried pinging with result: Pingen naar www.vacentral.net [66.228.35.101] met 32 bytes aan gegevens: Time-out bij opdracht. Time-out bij opdracht. Time-out bij opdracht. Time-out bij opdracht. Ping-statistieken voor 66.228.35.101: Note that I'm not on a free hosting service.
  4. What happened to just say good luck in your endeavors? It's becoming standard that every time someone presents a VA that the next post is: do you have permission???? Maybe take those permission stuff to PM.
  5. also looks like the attacks are not over yet: Pilots Online Pilots online: 1 Guests online: 302
  6. I got hacked to. I cleaned up everything after 27th september as I did last changes on 26th. I use my site only personal and have no other users. How do they know I use this?
  7. I have the same issue with showing only the first page. I have checked the local.config but did not find and added it, but did not give me more. Anything else need to be done? # Number of routes to show in the route map Config::Set('ROUTE_MAP_SHOW_NUMBER', 25); sorry, forgot to upload the file. It is fixed.
  8. i found another small issue. When 2 aircrafts are located at the same airport, you only see the 1 first listed in the DB. Any idea how i can fix that?
  9. i can reach their website fine from the netherlands. If troubles, might give them a call. 1-888-710-1351
  10. also, are you viewing this on IE or Chrome/Firefox? (I have layout issues using IE, so i mentioned Chrome as preferred to view my page)
  11. that is working You ok with that I adjust the code a bit to match with my website?
  12. I'm having the problem that when I add a second hub into my VA, all pilots are duplicated, so you see every pilot twice. I looked everywhere on the forum, but can't seem to find the correct search keys to find a solution for this. Basically what I would like to have is that my list is sorted by hub without any duplications from other hubs. Hope someone can help me or guide me into the correct direction. Thanks in advance! (note that i tried several codes found on the forum, but they all duplicate the table, so it must be in something else, but no idea where)
  13. Thanks Kyle, that map is looking good. Only issue I have is that it is showing only 3 of my 4 aircrafts. Any idea? (Figured it out) The last flight was PIREP with an aircraft I edited from B707 to B721. This way the program was not able to match the PIREP into the map. I made a new flight with this aircraft to another airport and it is now listed
  14. any new link on this one, all links I tried are dead Update: i found it by google search, so no need for me to link anymore. Now if I want someone blocked by IP, how do I do that? I found this topic http://forum.phpvms.net/topic/6763-block-an-ip-address/ but its not clear for me what to do and where to add. Hope some can help me out here.
  15. Looking great! Thanks!! I think the zoom is a little too close. I tried to adjust it to say 20 instead of 3, but nothing happens. Is there anyway to zoom a little less close to the ground? In my case i'm centered in Europe, so want to overview Europe so i can see where it is located. I tried to add without any luck var options = { autozoom: false, zoom: 20, center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"), mapTypeId: google.maps.MapTypeId.HYBRID }
  16. I also have an idea. Is it possible to create a map view of the last position of the aircraft meaning if you have a map of europe, you see 1 aircraft located at EDDL, one at EHAM, one at LFMN etc.
  17. i've noticed that when using this skin in IE, the menu shifts a bit to the right, i don't see that when using Chrome. Anyone else with this behaviour?
  18. thanks!!! It's working now!
  19. Hi, I've noticed the admin-link is not listed when you login as admin, is there a way to get this shown in the menu only when you login as admin? Thanks!
  20. Found it EAFS 47.648486 10.754299
  21. Hi, I'm about to buy the Andras Field project from Aerosoft and was wondering if anyone has the details to integrate it in my personal VA. Thanks! Best regards, Edwin
  22. I have found out i have the same issue on all items where i want to show the earnings, any way i can change it that the table only creates the 2 decimals behind the comma?
  23. Hi, I just noticed that my pilot payments are not taken in to the list of revenue/expense overview. I do however see that the pilot receives its earning. I tried to look in the tpl files, but can't find anywhere how i can change it so the pilot earnings are taken in the expense overviews. Any help is appreciated. Thanks! Best regards, Edwin *note: i tried to do a search in the forums, but can't get any hits, since some words are less then 4 characters. (it does not pick up pilot pay expense as search)
  24. very nice looking site.. good job you could consider removing the main menu section on the left side of the page, since you also already have it on top of your screen. Also, what i did on my site is change the home into Home (capital H). Small detail, but having it pronounced the same as your other topics could make a difference (have a peak on my site to compare: http://babyair.boellie.net)
  25. I tried the following: <p><strong>Top Touchdown statistics</strong></p> <table width="100%" border="1px"> <tr> <td>Pilot</td> <td>Aircraft</td> <td>Arrival Airport</td> <td>Landing Rate</td> <td>Date Posted</td> </tr> <?php foreach($stats as $stat) { $pilot = PilotData::getPilotData($stat->pilotid); $aircraft = OperationsData::getAircraftInfo($stat->aircraft); echo '<tr>'; echo '<td>'.PilotData::getPilotCode($pilot->code, $pilot->pilotid).' - '.$pilot->firstname.' '.$pilot->lastname.'</td>'; echo '<td>'.$aircraft->fullname.'</td>'; echo '<td>'.$stat->arricao.'</td>'; <?php$font = '<font color="green">;if($stat->landingrate < = -300) $font = '<font color="red">?> <td> <?php echo $font.$stat->landingrate?> ft/m</font></td> echo '<td>'.date(DATE_FORMAT, strtotime($stat->submitdate)).'</td>'; echo '</tr>'; } ?> </table> <p><strong>Top Touchdown statistics</strong></p> <table width="100%" border="1px"> <tr> <td>Pilot</td> <td>Aircraft</td> <td>Arrival Airport</td> <td>Landing Rate</td> <td>Date Posted</td> </tr> <?php foreach($stats as $stat) { $pilot = PilotData::getPilotData($stat->pilotid); $aircraft = OperationsData::getAircraftInfo($stat->aircraft); echo '<tr>'; echo '<td>'.PilotData::getPilotCode($pilot->code, $pilot->pilotid).' - '.$pilot->firstname.' '.$pilot->lastname.'</td>'; echo '<td>'.$aircraft->fullname.'</td>'; echo '<td>'.$stat->arricao.'</td>'; <?phpecho '<td>';if($stat->landingrate > -300) echo '<font color="green">'.$stat->landingrate.' ft/m</font>';else echo '<font color="red">'.$stat->landingrate.' ft/m</font>;echo '</td>';?> echo '<td>'.date(DATE_FORMAT, strtotime($stat->submitdate)).'</td>'; echo '</tr>'; } ?> </table> getting this error: Parse error: syntax error, unexpected '<' in D:\Websites\airwave\core\templates\touchdownstats\touchdownstats_index.tpl on line 30 Note, i used the free module from Simpilot and wanted to tweak it a little to distinct the good landings from the bad landings by coloring them. I thought it was simply adjusting the code to show the colors. When i copy my original code outside the table, all is working ok.
×
×
  • Create New...