Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. And make sure both airports have been added with coordinates in the admin panel
  2. Hey, been a while. Well there's this: http://docs.phpvms.net/2.0_upgrade_guide And the all-important changelog: http://www.phpvms.net/changelog.htm
  3. You'll have to edit that html page manually in core/pages/chat.htm (that's what i tmight be called). Then in that file just follow the instructions simple chat gives you to integrate the page (it might be some PHP code)
  4. You want just the active/inactive pilots? Or reading from a group? Active pilots: <?php // Parameters to search by, p.column_name => value $params = array( 'p.retired' => 0 ); $pilots = PilotData::findPilots($params); If you want by group: $pilots = PilotGroups::getUsersInGroup('Group Name');
  5. Nabeel

    Signatures

    Make sure it's a proper JPG/PNG with no alpha layers, I don't think it like transparency layers. Did you try the regenerate link in maintenance?
  6. I can consider it for the next version
  7. Can you give some examples/number? Do you mean the VA total hours? It will only count pirep hours, not transfer
  8. Hey, I have some time today to finally look at FSACARS in detail. I'll get back to you - do poke me a reminder!
  9. Make sure your local.config.php file is completely empty with a size of 0 before you try to install
  10. Try clearing your cache and cookies, and in phpMyAdmin empty the phpvms_sessions table
  11. Excellent, thanks Joeri!
  12. For total hours in a month, you can do: $hours = PIREPData::getIntervalDataByMonth(array(), 1); echo $hours->total; For total flights: $flights = PIREPData::findFlights(array('DATE_SUB(CURDATE(), INTERVAL 1 MONTH) <= p.submitdate')); $total = count($flights);
  13. It will calculate for PIREPs though, and properly - based on the arrival/dep airports, not the scheduled ones
  14. There's an option in local.config.php to now notify about beta updates. See this docs topic: http://docs.phpvms.net/installation#beta_versions This is working from the release version.
      • 1
      • Like
  15. It is supposed to work, d'oh. I forgot to take a look at that. That's what happens when I don't enter it into the database, I forgot to do that.
  16. http://forum.phpvms.net/index.php?topic=134.msg491#msg491 If you PM Roger, he might have the instructions handy.
  17. Did you get this solved?
  18. I agree, I'm overhauling the financials backend for the next release. It was just too close to my release deadline for this version to get to do it properly.
  19. Start with removing templates from your skin's folder and use the default until you figure out which template it is which is causing it
  20. The build log is slow to update at times
  21. Your entire header is duplicated so I'm thinking you've pasted it twice or it's also in one of the core files
  22. Thanks Puzant. That's the procedure that seemed to work for others too. FSACARS isn't smart enough to figure out it has PIREPS waiting in its own queue, the only way to fix that is to completely delete the program
  23. Check the add-ons forum
  24. Look through the template files. Basically your headertpl and footer.tpl files will control the overall locations
×
×
  • Create New...