Jump to content

mattsmith

Members
  • Posts

    373
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mattsmith

  1. I am still getting the "oops something went wrong" on my live map after add the api code. <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php /** * STOP! HAMMER TIME! * * ====> READ THIS !!!!! * * I really really, REALLY suggest you don't edit this file. * Why? This is the "main header" file where I put changes for updates. * And you don't want to have to manually go through and figure those out. * * That equals headache for you, and headache for me to figure out what went wrong. * * BUT BUT WAIT, you say... I want to include more javascript, css, etc...! * Well - in your skin's header.tpl file, this file is included as: * * Template::Show('core_htmlhead.tpl'); * * Just add your stuff under that line there. That way, it's in the proper * spot, and this file stays intact for the system (and me) to be able to * make clean updates whenever needed. Less bugs = happy users (and happy me) * * THANKS! */ ?> <script type="text/javascript"> var baseurl = "<?php echo SITE_URL;?>"; </script> <link rel="stylesheet" media="all" type="text/css" href="<?php echo fileurl('lib/css/phpvms.css')?>" /> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo Config::Get('PAGE_ENCODING');?>" /> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBorb_ELH8kXiXxDGpfbz1dgyQk5Gmo7NE&callback=initMap"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/jquery.form.js');?>"></script> <script type="text/javascript" src="<?php echo fileurl('lib/js/phpvms.js');?>"></script> <?php echo $MODULE_HEAD_INC;
  2. I wouldn't think of using anything without permission.
  3. Im just learning coding so i haven,t got any yet I've just been using this and changing things in core/modules/ACARS $allflights = array(); $myairline = ACARSData::GetACARSData(); // If you have multiple airlines, you could also loop this through $another_airline = json_decode(file_get_contents('va_url_here'), true); // specify true for an array conversion $allflights = array_merge($myairline, $another_airline); foreach($allflights as $flight) { ...
  4. Do you know how i would show this info on the ACARS map
  5. For the ranks it is not showing the image, just the word of the rank. http://libertyairva.com/index.php/Hub/HubView/EGKK Also i still can't get the Hub Manager to show uop.
  6. What if they were on different hosts i.e If someone asks to join the alliance, like Aeolus do with there site.
  7. If i was to make an alliance airline with each airline having a different site how would i pull the info from each site? I.e Live Map, Pireps, Total schedules etc
  8. <?php //simpilotgroup addon module for phpVMS virtual airline system // //simpilotgroup addon modules are licenced under the following license: //Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) //To view full license text visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // //@author David Clark (simpilot) //@copyright Copyright (c) 2009-2010, David Clark //@license http://creativecommons.org/licenses/by-nc-sa/3.0/ $offset = 0; $total = 1; $page = 1; while($offset < $numschedules) { ?> <center> <h3><?php echo SITE_NAME; ?> Timetable</h3> </center> <table width="100%" frame="box"> <tr align="center"> <?php $count = 1; while($count <= 4) { ?> <td width="25%" valign="top"> <table width="100%"> <tr bgcolor="#cccccc"> <td>Arr</td> <td>Flight</td> <td>Type</td> <td width="30%">Freq</td> <td>Time</td> </tr> <?php $schedules = TimetableData::get_schedules($offset); foreach($schedules as $schedule) { if($departure <> $schedule->depicao) { $field = OperationsData::getAirportInfo($schedule->depicao); echo '<tr>'; echo '<td bgcolor="#cccccc" colspan="5"><b>'.$schedule->depicao.' - '.$field->name.'</b></td>'; echo '</tr>'; } $departure = $schedule->depicao; echo '<tr>'; echo '<td>'.$schedule->arricao.'</td>'; echo '<td>'.$schedule->flightnum.'</td>'; $aircraft = OperationsData::getAircraftInfo($schedule->aircraft); echo '<td>'.$aircraft->icao.'</td>'; echo '<td>'.Util::GetDaysCompact($schedule->daysofweek).'</td>'; echo '<td>'.$schedule->deptime.'</td>'; echo '</tr>'; $total++; } $offset = $offset + 30; ?> </table> </td> <?php $count++; if($offset >= $numschedules) { while($count <= 4) { echo '<td width="25%" valign="top"> <table width="100%"> <tr bgcolor="#cccccc"> <td>Arr</td> <td>Flight</td> <td>Type</td> <td width="30%">Freq</td> <td>Dur</td> </tr> </table>'; $count++; } } } ?> </tr> </table> <center> <br /> <h5>Page <?php echo $page; $page++; ?></h5> </center> <hr /> <br /> <?php } ?> Total Flights: <?php echo $total; ?> <br /><br />
  9. Is there anything like the Timetable module that shows flights only from the Hubs?
  10. On my skin i'm editing wen you click on Register, Login, Live flights etc how do you make it go to a new page rather than just opening at the bottom of the page?
  11. Yeah basically just so they can add there IVAO or VATSIM number if they have one, So i know if there registered then i can apply for vatisim or ivao membership once i have enough pilots listed.
  12. No just encase they don't have one to start with.
  13. How do i add IVAO and VATSIM fields to the login form?
  14. In your "core navigation" if that's where you want it to show up.
  15. Update to this one. https://github.com/DavidJClark/phpvms_5.5.x
  16. mattsmith

    blueIce

    How do get the Profile page and the Downloads page the same as these?
  17. Once i have bid on a flight if i don't fly it , it automatically cancels and i need to bid on it again. Is there a way to stop this?
  18. Got an API key from google and added it to local config.php
  19. Could someone please help me with my map.
×
×
  • Create New...