Jump to content

Kyle

Moderators
  • Posts

    2282
  • Joined

  • Last visited

Everything posted by Kyle

  1. Do you have the NavData in your database? I'm not sure, but I'm pretty sure I have the routes populated on my ACARS Map before. Maybe, or not with one of my DeJaVu's.
  2. It did for me when I was running SCXVA. Maybe that's in the Beta Version I think. We are talking about the Flight Route, not path traveled.
  3. The Pilot will have to enter their route in the ACARS in order to get the route plotted on the map.
  4. (talking to self - Alright buttwise Kyle, get to that project!)
  5. Kyle

    vStatsCenter

    http://forum.phpvms.net/topic/7353-vstatscenter/page__st__100#entry51140 And Line 59 in core/common/VAStatsData.class.php $query = "SELECT * FROM " . TABLE_PREFIX . "awardsgranted WHERE MONTH(dateissued) = {$month} AND YEAR(dateissued) = {$year} LIMIT 2"; Cheers!
  6. I don't really think that's really true. Logo Designers who ever made the airline logos, can still catch on people. (That's what I think)
  7. Jeff, found a mistake. You'll get the error if you don't back slash the '. Cheers! <?php if(Auth::LoggedIn() == false) { echo 'We\'re sorry! You must be a registered member in order to view this page'; return; } ?>
  8. You just need the basic <p> and <br /> tags for the spaces. <div> <div> <p>Nacho Lopez,</p> <br /> <br /> <p>Bienvenido a IberiaVA! Tu solicitud para formar parte de Iberia VA ha sido aprobada. Su licencia es (IBE1002), y su contraseña es la que determinó en la Solicitud de Alta. Desde IberiaVA le recomendamos que lea la Guia de Bienvenida disponible en <a href="http://iberiava.com/lib/manuales/guia_bienvenida.pdf" title="External link" rel="nofollow external">http://iberiava.com/..._bienvenida.pdf</a></p> <br /> <br /> <p>Atentamente, </p> <br /> <p>El Departamento de Recursos Humanos</p> </div> </div>
  9. I give up, it's out my skill levels. Anyone have ideas?
  10. I made some modifications to the xplane script, so it would update the whole navdata. Hopefully it will work.
  11. I'm working on it. I'll let you know how it comes out.
  12. I have been looking at this... https://github.com/nshahzad/phpvms_navdata
  13. Your not the only one. I had that for a long time, but I have been looking for a way of getting our NavData updated aswell.
  14. I can list them out here... Phoneix Virtual Airways - http://www.phoenixva.org/ Fly Star Alliance - http://www.flystaralliance.net/ Well, that's all I know, I seen other poor Alliance Virtual Airlines out there and these are the only ones I know that they're active.
  15. Kyle

    vStatsCenter

    Just remove that part. Nice work on the desgin!
  16. The first one is what I'm wondering how. The Second Part, Your lucky Day/Night, I'll share mine. <?php if($pirep->route != '') { ?> <h3>Flight Route</h3> <?php $params->deplat = $schedule->deplat; $params->deplng = $schedule->deplng; $params->route = $schedule->route; $routedata = NavData::parseRoute($params); ?> <table> <thead> <tr> <th>Flight Route Data</th> </tr> </thead> </table> <div align="center"><a href="#" onclick="$('#routedata').toggle(); return false;">View Route Data</a></div> <div id="routedata" style="display: none;"> <table> <thead> <tr> <th>Name</th> <th>Title</th> <th>Airway</th> <th>Airway Type</th> <th>Frequency</th> <th>Type</th> <th>Latitude</th> <th>Longitude</th> </tr> </thead> <tbody> <?php $rowclass = 0; foreach($routedata as $routeline) { ?> <tr class="row<?php echo $rowclass ?>"> <td align="center"><?php echo $routeline->name;?></td> <td align="center"><?php echo $routeline->title;?></td> <td align="center"><?php echo $routeline->airway;?></td> <td align="center"><?php echo $routeline->airway_type;?></td> <td align="center"><?php echo $routeline->freq;?></td> <td align="center"><?php echo $routeline->type;?></td> <td align="center"><?php echo $routeline->lat;?></td> <td align="center"><?php echo $routeline->lng;?></td> </tr> <?php } ?> </tbody> </table> </div> </div> <?php } ?>
  17. There are planes at TNCM. Look at the area where it says You Are Here, and you'll see on the left.
  18. No one's ever going to make this free. You have to learn the facts that people spent hours building a great module, and they wanted the price for what they made to the community.
  19. You have to set the 777 permissions to the following folders on what the installer is saying. You can set the permissions in the FTP or your webfiles.
  20. Kyle

    FSFK Log

    whoops, sorry. I meant core/FSFK/FSFK.php
  21. simpilot is able to pull a random flights from each airports, that's the way how we are going to use it.
  22. Now I'm getting a 404 Not Found.
  23. I got one error in my console. It tells me that the menu.css is not found. That might fix the issue? <link href="/lib/skins/virgin/css/menu.css" rel="stylesheet" type="text/css" />
  24. Okay, fair enough. Sorry about that. I'm not sure, you will have to ask someone who made the site desgin. I don't know much about your custom skins. But for the thing, be sure you have the CSS Style linked up properly in the header.tpl or layout.tpl.
×
×
  • Create New...