Jump to content

freshJet

Members
  • Posts

    1470
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by freshJet

  1. That was my next suggestion, add them
  2. Looks like it doesn't like the PHP version, likely 5. Try removing 'static' from 'static function' in the core/common/EventsData.class.php
  3. It was a question, not so much a suggestion haha. Never mind, I don't see any errors on your site. Use simpilot's update for 5.5.
  4. Has your host upgraded to PHP 5.5? Have you upgraded phpVMS?
  5. Add $allaircraft = OperationsData::getAllAircraft();
  6. So...do you not need the file anymore?
  7. I wouldn't have thought it was an encoding issue. Leaving spaces before the PHP tag at the top can cause issues. What is the second line? My original quesiton should have been what is the first line after the PHP tag...
  8. What's your first line in Mission.php?
  9. In your address bar
  10. I also have a tutorial if you're trying to convert non-phpVMS templates http://forum.phpvms.net/topic/16736-tutorial-using-htmlcss-templates-with-phpvms/
  11. Was wondering if anyone else was having the issue first.
  12. This isn't fivedev, hence why I put it in Off Topic
  13. I logged into cPanel the other day and noticed there was the option to change theme that wasn't there before. So, naturally curious, I tried it, only for it to result in this: Invalid license Main IP Address: 37.26.106.4 CPanel Version: 11.44.1.15 RVskin Version: Note: Server administrator can run perl /root/rvadmin/convert_theme.pl to switch users to other skin such as X skin while waiting for the resolution. - This happens every time I try to access it now.
  14. Can you send us an example PIREP? Maybe manual PIREPs are being submitted with the fuel quantity in pounds instead of kilograms.
  15. Your code will overwrite each time. Have a look here and see what works best, including the solution using the fseek() solution.
  16. That's only for pilot pay. There are other expenses too.
  17. Not a fan of the site to be honest, I'd lose the shadows and add some clarity to the navbar
  18. For future reference, you get this error if you miss out the 'www.' in your URL
  19. Find Expenses under the Finance menu on the Admin Panel.
  20. That or your prices are too low. Try and match real EY prices as closely as possible and it should do better.
  21. Progress is being made. Slowly. It's one of those projects you don't realise the complexity of until you try to code it. Yesterday, I started to develop it using VB 2010 as well to see which is easiest. In the end, there might be a web and desktop based version.
  22. I think you could've used a better subject title than that...
  23. Add it where you want it. If it's the briefing put the function at the top of the page: function getMETAR($icao){ $data = "http://metar.vatsim.net/$icao"; $metar = file_get_contents($data); return $metar; } And then: getMETAR($schedule->depicao); getMETAR($schedule->arricao); Where you want them displayed.
  24. <?php getMETAR($schedule->depicao); getMETAR($schedule->arricao); function getMETAR($icao){ $data = "http://metar.vatsim.net/$icao"; $metar = file_get_contents($data); return $metar; } ?>
  25. What have you edited recently? Are you sure your $page_content is there on your layout.tpl?
×
×
  • Create New...