Jump to content

ProAvia

Administrators
  • Posts

    1741
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by ProAvia

  1. Free or paid hosting? Did you set up the database first?
  2. Glad you got it working
  3. With my host, there is a menu item in CPanel under Advanced called Cron jobs. This is where you would set up the cron job. The command to enter there is the one in your first post --- php -f /home/canadaai/public_html/admin/maintenance.php In local.config.php you have to have Config::Set('USE_CRON', true); That should work - but you will have to find how to enter the cron job with your host if you don't have CPanel access
  4. If all times are already in UTC, there is no need to change the times. UTC stays the same year round and is not predicated on summer/winter time changes.
  5. You probably haven't received a response because VA owners are using customized skins for their phpVMS install - and each skin would likely include different options. So having a basic video to help your pilots navigate your site would be something you would need to put together yourself - and be based on the skin you are using. Are you using an automated ACARS system to allow your pilots to log their flights? Site navigation should be pretty easy and most members will figure it out quickly.
  6. VACentral - where the look up data was located - has been down for quite some time. No telling when it will be back. My guess is it won't be available until sometime after phpVMS 7 is released. As I mentioned, Skyvector or maybe one of the other aviation sites is the easiest place to look up lat/long for now. The geonames.org server is still available, but now you have to pay to access the data there.
  7. The airport look up server is unavailable at this time. You can look up the lat/long at sites like Skyvector and enter them manually.
  8. Looks great in Chrome - doesn't show map in IE11
  9. File/folder read/write permissions?
  10. File permissions issue? Host settings issue? - I'm leaning to your host. It worked on old host and now doesn't on new host. I have no idea what to search for or what to ask them though.
  11. Have you tried installing a fresh copy along side your existing one? Maybe make a copy of the DB and tie that copy to the new install - after making sure the new install works with a fresh DB.
  12. phpVMS version? SimPilot 5.5.2 or something else? I'm not sure why it is submitting the PIREP (email of submittal being received) and not showing in the DB. I'm using 5.5.2, kACARSII custom, php 5.6.18 and haven't had any issues. Maybe something with the DB or possibly one of the associated files.
  13. I'm guessing you fixed the first error by changing CodonEvent.class.php line 104 (for version 5.5.2) from public function to public static function.... What version of phpVMS are you using? Have you tried using kACARS_Free to see if the same issue occurs? Anything in the error log on the Admin side?
  14. Glad you got it working!
  15. Sorry, I messed up the copy/paste in my previous response. Here's the correct one.... href="<?php echo url('/schedules/addbid/?id='.$schedule->id);?>">Add to Bid</a> Notice the "id" after ".$schedule->" Hopefully that works for you
  16. I believe we are using an addon module for schedule search. And that is why my schedule_results.php file has more lines. In any case, in both your code snippets, make the href= line after "if (Auth: :LoggedIn( ) )" the same as my last code snippet - and see if that fixes the issue. From if(Auth::LoggedIn()) {  ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } To if (Auth::LoggedIn()) { ?><a id="<?php echo $schedule->id; ?>" class="addbid"  href="<?php echo url('/schedules/addbid/?id='.$schedule->);?>">Add to Bid</a> <?php  } EDIT - see 2 posts down for correct code
  17. This worked for me - but YMMV..... Look in schedule_results.php on about line 103. Edit the file in your chosen skin folder - if it's not in your chosen skin folder, use the file in core/templates and place in your chosen skin folder. If yours is href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> Change it to href="<?php echo url('/schedules/addbid/?id='.$schedule->id);?>">Add to Bid</a> Back up your original file first......
  18. If you access the database, phpvms_settings table (default table name) - you should be able to change the skin name there. Installed skin names are in lib/skins.
  19. In local.config there is a setting under acars - i think the default is set to 720 minutes (12 hours). Reduce this to 15 minutes or so and see if that better suits your needs.
  20. Go here and have a look around: http://fs-products.net/ . You will need the kACARS site files installed on your site and the client to install on each users system.
  21. http://fs-products.net/ is back up
  22. Stand by - I will attempt to contact him. Edit: He's out of the office (day job) until 8/1. Hopefully he will fix the site after his return.
  23. "You have reached a domain that was pending verification by ICANN rules but has been verified. It can take 24 to 48 hours for the website to come back online." Should be back up within 24-48 hours according to the message posted there.
  24. Windows or Mac computer? If Mac, I think XACARS is the only one that will work. If on Windows have a look at kACARS (there is a freeware as well as a payware option), SmartCARS (payware). There are a few others I've seen mentioned on the site, but I have no personal knowledge of them. From personal experience, X-Plane 10 and 11 work with kACARS and kACARSII on Windows based computers. XPUIPC is required to be installed in XP for either to work.
  25. I don't believe phpVMS will delete the pilot record in the database. If it did, it would delete the pilot's hpurs as well. This would affect the VA's total hours (and possibly the financials as well) - so best to leave "retired" pilots in the database. As for the pilot's status changing to a "3"(LOA) instead of a "1"(Retired), i have no idea how to fix that.
×
×
  • Create New...