Jump to content

Nabeel

Administrators
  • Posts

    8148
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Thanks. At least there's some errors there I can work with. And no airports... interesting. No errors reported with that.
  2. There's a lastpirep column in a pilot's information, you can use that
  3. Revision 812: fixed #67, fixed #68, refs #70 added search schedules for admin5 December 2009, 9:00 pmfixed #67, fixed #68, refs #70 added search schedules for adminSource: Revisions of /Download from http://downloads.phpvms.net/phpvms.beta.zip
  4. If it's minor differences, you might be able to just do it in one module, and have settings within the file (like: <?php class ACARS_Remote extends CodonModule{ public $parse_vatsim = true; public $parse_ivao = false; public function index() { if($this->parse_vatsim == true) { $this->parse_vatsim_list(); } // etc } } Then different functions with each parsing. What are the differences? Maybe they can be compensated for within the code? But that would be the cleaner option in the end, IMO. Also, did you see my sample for adding the data to the live map?
  5. Are you on 700? I think a few bugs with that were fixed as well
  6. You don't need to do all that. Just call: include '/path/to/core/codon.config.php'; $allpilots = PilotData::GetAllPilots(); foreach($allpilots as $pilot) { // do stuff } Assuming you're not creating a module. Watch the API tutorial video too
  7. Would you mind putting DEBUG_MODE to true in the local.config, and rerunning the import, see if there are error in the core/logs/log.txt (send that to me). Also, if you don't mind, sending me your import file. I'm sure there's something I'm missing somewhere which happens with larger imports
  8. Try the hour reset under maintenance, maybe that'll give the full time.
  9. Hey, 1 - are you entering the aircraft registration? And the registrations are correct? 2 - it will only show routes from the current day, maybe that's why? I'm looking at bugs currently with this. 3 - It should be updating on its own, when you accept a pirep. I'll take a look 4 - There are some bugs with this, that have been fixed for the next version
  10. What peeves me is that XML is a standardized format, but they all refuse to use it... instead we have to do this inane parsing and picking apart data because it's in a dumb proprietary format. If XML is too verbose, they can use JSON, but they're both standardized and all languages have build in libraries to parse them... blah /End rant
  11. In local.config.php, add this line: Config::Set('AIRPORT_LOOKUP_SERVER', 'phpvms'); Then give it a shot
  12. Thanks for reminding me. Can you add a request into the bug tracker? So I don't forget yet again
  13. Just do <?php echo FinanceData::FormatMoney(Auth::$userinfo->totalpay) ?>
  14. I convert them all to HH.mm format (I'll convert if you do HH:mm)
  15. Are you on the beta? It could be that the api server for geonames was down
  16. The name that's entered in the admin
  17. Yeah, add it into the requests, thanks, so I remember
  18. Yeah the instruction is wrong, it should be the aircraft's registration. If you add one route manually, do an export, you'll see what's in there, then you can fill everything back up and then import it
  19. Nabeel

    question

    Yeah, I haven't implemented the pictures showing yet, but for that PIREP can you link me to it so I can see the log. I was just verifying that the image upload worked
  20. Revision 811: vacentral options admin panel fix2 December 2009, 9:16 amvacentral options admin panel fixSource: Revisions of /Download from http://downloads.phpvms.net/phpvms.beta.zip
  21. I'm committing the fix now so don't worry about it
×
×
  • Create New...