Jump to content

Nabeel

Administrators
  • Posts

    8147
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. There's a lastpirep column in a pilot's information, you can use that
  2. 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
  3. 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?
  4. Are you on 700? I think a few bugs with that were fixed as well
  5. 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
  6. 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
  7. Try the hour reset under maintenance, maybe that'll give the full time.
  8. 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
  9. 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
  10. In local.config.php, add this line: Config::Set('AIRPORT_LOOKUP_SERVER', 'phpvms'); Then give it a shot
  11. Thanks for reminding me. Can you add a request into the bug tracker? So I don't forget yet again
  12. Just do <?php echo FinanceData::FormatMoney(Auth::$userinfo->totalpay) ?>
  13. I convert them all to HH.mm format (I'll convert if you do HH:mm)
  14. Are you on the beta? It could be that the api server for geonames was down
  15. The name that's entered in the admin
  16. Yeah, add it into the requests, thanks, so I remember
  17. 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
  18. 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
  19. 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
  20. I'm committing the fix now so don't worry about it
  21. Nabeel

    question

    When you first login to your FTP, what's the initial folder? The path would be from that folder to the lib/fsfk. So if you have to go into public_html first, and then the phpvms folder, then lib it would be ftp://..../public_html/phpvms/lib/fsfk
×
×
  • Create New...