Jump to content

flyalaska

Members
  • Posts

    1943
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by flyalaska

  1. Something is up with the forums there. My password stopped working. I reset, got on fine. Locked out next time I tried to get on.
  2. flyalaska

    BlueIce

    Open fronpage_main.php and you can change the social media icons too.
  3. css files, vendor/bootstrap/bootstrap/min.css and css/styles.css
  4. flyalaska

    BlueIce

    Look in vendor/bootstrap/css/bootstrap.min.css
  5. This is a separate ACARS. Nothing to do with smartCARS.
  6. 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.
  7. Just do flight number only. (464) for example. Leave out the airline code.
  8. 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; }
  9. You will get a faster response if you post on there forums.
  10. <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)
  11. Try this. I have this on my pilots list. <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM'); ?>
  12. Looks awesome! Good job.
  13. Your hover buttons and menu are still blue. Site looks awesome!!
  14. I see the map working now
  15. You need the updated 5..5.2 for php 7.2 https://github.com/ProAviaAZ/phpvms_5.5.2.72
  16. 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.
  17. What php and phpVMS version are you running?
  18. URL please
  19. 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.
  20. 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)
  21. 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
  22. 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.
  23. phpvms_pireps
  24. Shoot me a PM, I can install this for you.
×
×
  • Create New...