Jump to content

flyalaska

Members
  • Posts

    1941
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by flyalaska

  1. css files, vendor/bootstrap/bootstrap/min.css and css/styles.css
  2. flyalaska

    BlueIce

    Look in vendor/bootstrap/css/bootstrap.min.css
  3. This is a separate ACARS. Nothing to do with smartCARS.
  4. The issue with the "Schedules doesn't exist" is from you filing manual with flight number with the airline code. File with the flight number with numbers only.
  5. Just do flight number only. (464) for example. Leave out the airline code.
  6. Ignore the post above, wont let me edit it. I forgot to delete something. Edited by moderator.... Replace your code with this: public static function TotalPilotMiles($pilotid) { $key = 'total_miles'; $key .= '_'.$pilotid; $total = CodonCache::read($key); if($total === false) { $total = 0; $sql = "SELECT * FROM ".TABLE_PREFIX."pireps WHERE pilotid='$pilotid' AND accepted=1"; $results = DB::get_results($sql); if($results) { foreach($results as $result) { $total += $result->distance; } } CodonCache::write($key, $total, '15minute'); } return $total; } public static function getpilotsbestlanding($pilotid) { $sql = "SELECT landingrate FROM ".TABLE_PREFIX."pireps WHERE pilotid = '$pilotid' AND landingrate < 0 ORDER BY landingrate DESC LIMIT 1"; $result = DB::get_row($sql); if(!$result) { return 0; } $result = $result->landingrate; return $result; } public static function getpilotsworselanding($pilotid) { $sql = "SELECT landingrate FROM ".TABLE_PREFIX."pireps WHERE pilotid = '$pilotid' AND landingrate < 0 ORDER BY landingrate ASC LIMIT 1"; $result = DB::get_row($sql); if(!$result) { return 0; } $result = $result->landingrate; return $result; }
  7. You will get a faster response if you post on there forums.
  8. <img src="<?php echo SITE_URL; ?>/images/airline/<%=flight.code%>.png"> Its set up to put the image in website.com/images/airline/ Title the image your airline ICAO(AAL for example)
  9. Try this. I have this on my pilots list. <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM'); ?>
  10. Looks awesome! Good job.
  11. Your hover buttons and menu are still blue. Site looks awesome!!
  12. I see the map working now
  13. You need the updated 5..5.2 for php 7.2 https://github.com/ProAviaAZ/phpvms_5.5.2.72
  14. phpvms 5.5.2 from where? There are two. One for php 5.6 and one for php 7.2. You will have have errors with php 7.3.
  15. What php and phpVMS version are you running?
  16. Did you do any edits, besides the css? I tested the hell out of that skin. I never got any no routes passed. Revert back as ProAvia said. See if you get the error still.
  17. flyalaska

    BlueIce V2

    Thank you for looking at my skin.BlueIce v2 is a major update from previous versions. BlueIce is for php skins only and was tested with SimPilots 5.5 base and ProAvia 5.5 update for php 7 . There are two downloads. One for php 5.6 and the other for php 7.2 Whats all included: - Bootstrap v4.1.3 compatible - Font Awesome 5 icons - OpenStreet Map - Custom public profile - Custom Pilot profile/Dashboard - Styled tables Modules Needed (included): You will need to install a few modules for this template to work. (included) AirMail 3 All Awards Ranks Touchdownstats DO NOT install the template files. ***PLEASE READ THE DOCUMENTATION FOR INSTALLATION*** Download - php 5.6 Download - php 7.2 Download - phpVMS for php 7.2 (Thanks ProAvia)
  18. Had to be a glitch. Its says your box is full. Click the Contact Us link under support. https://phpvms.209studios.com/downloads_OceanBlue3.php
  19. Button are boostrap . Edit each button and change the button class to btn-danger.hat will change it to red. The menu drop is in the css.
  20. Shoot me a PM, I can install this for you.
  21. Nice looking site. I wold advertise somewhere else. Everyone here has there own VA, not a great place to find pilots.
×
×
  • Create New...