Jump to content

gio1961

Members
  • Posts

    252
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by gio1961

  1. Some files need to be changed, I can't remember from memory. In practice, when the pilot accesses the registration, the "form" points to the exam page and not to the pilot registration page. I do not know how to explain it to you. Greetings p.s. The paid form is no longer available You can find a similar one here https://www.crazycreatives.com/downloads/crew-test/ (Requirements: phpVMS v2.x or phpVMS v5.x) Be careful because, after having seen several posts, there is no assistance.
  2. Yes. The pilot had to take a "small" exam before being admitted to the Virtual Airline. Greetings
  3. If you are using phpvms version 5.5 you can download this module and do what you ask. https://github.com/KJRDev/phpVMS_vAwards Sure you will have to make some changes in the various files, from "tpl" to "php". Here the discussion https://forum.phpvms.net/topic/7351-vawards/
  4. Try to see here if it can help you or https://github.com/web541/phpVMS-FltbookSystem-v2 (free module) **** Fleet module only https://github.com/web541/phpVMS-Advanced_Fleet-master
  5. Hello, see here if it can be useful for you: https://lancedesign.weebly.com/blog/category/all Greetings
  6. See also here if it can be useful https://forum.phpvms.net/topic/21335-header-and-footer-error-solved/
  7. I have installed at least 8-10 of Crewcenter skins and never had problems. I also use it on my test site. David phpvms 5.5 version. on the php5.6 server
  8. What version of phpvms is installed? if version 5.5 of David is installed try to install the php version skin https://github.com/web541/CrewCenter/tree/master/php_templates
  9. To my friend "djtiger76", who made the post and uses the "Crewcenter" skin, I made the change and it works perfectly. I also use the same skin and the results are placed on the page. I do not know what to say. Regards
  10. change your link with http://www. ***************/index.php/Simbrief or https://www. ***************/index.php/Simbrief
  11. I have tried it now. I state that I do not use the form "Fltbook" but other. I haven't edited any files You can see it here. It is not free. https://www.tfdidesign.com/smartCARS.php
  12. However the map, without this last code (eliminates the zoon buttons+/-) was set to the desired max zoom P.S. I see that you still have the old codes, both the map in the home and the live do not work ...
  13. <script type="text/javascript"> var options = { disableDefaultUI :true, mapTypeId: google.maps.MapTypeId.SATELLITE } var map = new google.maps.Map(document.getElementById("currentlocation"), options); var flightMarkers = []; map.setOptions({ minZoom: 4, maxZoom: 15 }); current_location = new google.maps.LatLng(<?php echo $airport->lat?>, <?php echo $airport->lng?>); flightMarkers[flightMarkers.length] = new google.maps.Marker({ position: current_location, map: map, title: "<?php echo "$airport->name ($airport->icao)";?>" }); if(flightMarkers.length > 0) { var bounds = new google.maps.LatLngBounds(); for(var i = 0; i < flightMarkers.length; i++) { bounds.extend(flightMarkers.position); map.fitBounds(bounds); } } </script>
  14. you can change even the minimum .. ex. 2,3,4,5,6, etc. etc. <script type="text/javascript"> var options = { mapTypeId: google.maps.MapTypeId.SATELLITE } var map = new google.maps.Map(document.getElementById("currentlocation"), options); var flightMarkers = []; map.setOptions({ minZoom: 4, maxZoom: 17 }); current_location = new google.maps.LatLng(<?php echo $airport->lat?>, <?php echo $airport->lng?>); flightMarkers[flightMarkers.length] = new google.maps.Marker({ position: current_location, map: map, title: "<?php echo "$airport->name ($airport->icao)";?>" }); if(flightMarkers.length > 0) { var bounds = new google.maps.LatLngBounds(); for(var i = 0; i < flightMarkers.length; i++) { bounds.extend(flightMarkers[i].position); map.fitBounds(bounds); } } </script> file view.php
  15. Rather than from 5 to 15 (MIN-MAX) with these settings, the zoom does not go beyond 15
  16. Sorry eh what file are you editing? if still the old code is still there? <!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <meta charset="utf-8"> <title>Welcome - Charter Flights Virtual Airline</title> <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width"> <!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <link rel="shortcut icon" type="image/png" href="http://cfva.freehostia.com/lib/skins/sky_Blue/images/favicon.png"/> <link rel="stylesheet" media="all" type="text/css" href="http://cfva.freehostia.com/lib/skins/sky_Blue/css/style.css" /> <link rel="stylesheet" media="all" type="text/css" href="http://cfva.freehostia.com/lib/skins/sky_Blue/css/bootstrap.css" /> <!-- Fonts --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Oxygen:400,700,300' rel='stylesheet' type='text/css'> <!--[if lte IE 7]><link rel="stylesheet" href="css/style.ie7.css" media="screen" /><![endif]--> <link rel="stylesheet" media="all" type="text/css" href="http://cfva.freehostia.com/lib/skins/sky_Blue/css/style.responsive.css" /> <style>.sky-content .sky-postcontent-0 .layout-item-0 { border-left-style:solid;border-left-width:1px;border-left-color:#A6A6A6; color: #D6D6D6; background: #050829; padding: 10px; } .sky-content .sky-postcontent-0 .layout-item-1 { color: #E0E0E0; background: #314872; padding: 10px; } .sky-content .sky-postcontent-0 .layout-item-2 { color: #D6D6D6; background: #050B31; padding: 10px; } .sky-content .sky-postcontent-0 .layout-item-3 { color: #E0E0E0; background: #2D4778; padding: 10px; } .sky-content .sky-postcontent-0 .layout-item-4 { border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-width:2px;border-color:#E0E0E0; } .sky-content .sky-postcontent-0 .layout-item-5 { border-top-style:solid;border-right-style:solid;border-top-width:0px;border-right-width:1px;border-top-color:#E0E0E0;border-right-color:#E0E0E0; padding: 20px; } .sky-content .sky-postcontent-0 .layout-item-6 { border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-width:0px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#E0E0E0; padding: 20px; } .sky-content .sky-postcontent-0 .layout-item-7 { border-top-style:solid;border-left-style:solid;border-top-width:0px;border-left-width:1px;border-top-color:#E0E0E0;border-left-color:#E0E0E0; padding: 20px; } .sky-content .sky-postcontent-0 .layout-item-8 { border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-width:2px;border-color:#E0E0E0;border-top:none !important; } .sky-content .sky-postcontent-0 .layout-item-9 { border-top-style:solid;border-top-width:0px;border-top-color:#E0E0E0;border-top:none !important; padding: 20px; } .ie7 .sky-post .sky-layout-cell {border:none !important; padding:0 !important; } .ie6 .sky-post .sky-layout-cell {border:none !important; padding:0 !important; } </style> <script type="text/javascript"> var baseurl = "http://cfva.freehostia.com"; var geourl = "GEONAME_URL"; </script> <link rel="stylesheet" media="all" type="text/css" href="http://cfva.freehostia.com/lib/css/phpvms.css" /> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/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="http://cfva.freehostia.com/lib/js/jquery.form.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/phpvms.js"></script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDNz0LGNP3QqZJwR_Kjm8C5ERKCXrEULsE"type="text/javascript"></script> </head> <body> <div class="jqmWindow" id="jqmdialog"></div><div id="sky-main"> <div id="sky-hmenu-bg" class="sky-bar sky-nav"> </div> <header class="sky-header"> <nav class="sky-nav"> <div class="sky-nav-inner"> <ul class="sky-hmenu"> <li><a href="http://cfva.freehostia.com/index.php"><i class="fa fa-home"></i> Home</a></li> <!-- Start Corporate --> <li><a href="http://cfva.freehostia.com/index.php/"><i class="fa fa-briefcase"></i> HR</a><ul> <li><a href="http://cfva.freehostia.com/index.php/Pilots">Pilots</a></li> <li><a href="http://cfva.freehostia.com/index.php/Rank">Ranks</a></li> <li><a href="http://cfva.freehostia.com/index.php/Awards/">Awards</a></li> <li><a href="http://cfva.freehostia.com/index.php/TouchdownStats/top_landings/10/">Top Landing Rates</a></li> <li><a href="http://cfva.freehostia.com/index.php/downloads">Downloads</a></li> </ul></li> <!-- End Corporate --> <li><a href="https://www.facebook.com/charterflightsva/" target="_blank"><i class="fa fa-book"></i> Facebook</a></li><ul> </ul></li> <!-- Start Operations --> <li><a href="http://cfva.freehostia.com/index.php/"><i class="fa fa-book"></i> Operations</a><ul> <li><a href="http://cfva.freehostia.com/index.php/rfinder/">Route Finder</a></li> <li><a href="http://cfva.freehostia.com/index.php/vFleetTracker/">Where is our Fleet</a></li> </ul></li> <!-- End Operations --> <!-- Start Live Map --> <li><a href="http://cfva.freehostia.com/index.php/ACARS"><i class="fa fa-globe"></i> Live Map</a></li> <!-- End Live Map --> <!-- Start Crew Center --> <!-- End Crew Center --> <!-- Start Admin --> <!-- End Admin --> <!-- Start Sign In --> <li><a data-toggle="modal" href="#login"><i class="fa fa-sign-in "></i> Sign in</a></li> <!-- End Sign In --> <!-- Start Logout --> <!-- End Logout --> </div> </nav> </header> <div class="sky-sheet clearfix"> <div class="sky-layout-wrapper"> <div class="sky-content-layout"> <div class="sky-content-layout-row"> <div class="sky-layout-cell sky-content"><article class="sky-post sky-article"> <!-- Begin Sub Menu Logged Out --> <div class="sky-postcontent sky-postcontent-0 clearfix"><div class="sky-content-layout"> <div class="sky-content-layout-row"> <div class="sky-layout-cell layout-item-0" style="width: 25%" > <p> <p><i class="fa fa-users fa-5x" aria-hidden="true" style="float:left; margin-right:10px; margin-bottom:20px;" class=""></i></p> <h4>Join CFVA</h4> <p><span style="color: rgb(255, 255, 255);">Start your virtual career today. Join CFVA!</span></p> <p style="text-align:center;"><a href="http://cfva.freehostia.com/index.php/Registration/" class="sky-button">Apply Today!</a></p> </div><div class="sky-layout-cell layout-item-3" style="width: 25%" > <p><i class="fa fa-facebook fa-5x" aria-hidden="true" style="float:left; margin-right:10px; margin-bottom:20px;" class=""></i></p> <h4>Facebook</h4> <p><span style="color: rgb(255, 255, 255);">Visit our Facebook page to keep updated on current events, etc.</span></p> <p style="text-align:center;"><a href="https://www.facebook.com/charterflightsva/" target="_blank" class="sky-button">Visit</a></p> </div><div class="sky-layout-cell layout-item-2" style="width: 25%" > <p><i class="fa fa-road fa-5x" aria-hidden="true" style="float:left; margin-right:10px; margin-bottom:20px;" class=""></i></p> <h4>Average Landing</h4> <p><span style="color: rgb(255, 255, 255);">Also don't forget to check out more top landings.</span></p> <p style="text-align:center;"><a href="http://cfva.freehostia.com/index.php/TouchdownStats/top_landings/10/" class="sky-button">Avg Landing: -805 FPM</a></p> </div><div class="sky-layout-cell layout-item-3" style="width: 25%" > <p><i class="fa fa-plane fa-5x" aria-hidden="true" style="float:left; margin-right:10px; margin-bottom:20px;" class=""></i></p> <h4>Our Planes</h4> <p><span style="color: rgb(255, 255, 255);">View the entire fleet of planes from CFVA.</span></p> <p style="text-align:center;"><a href="http://cfva.freehostia.com/index.php/vFleetTracker/" class="sky-button">View Planes!</a></p> </div> </div> </div> <!-- End Sub Menu Logged Out --> <!-- Begin Sub Menu Logged In --> <!-- End Sub Menu Logged In --> <div class="sky-layout-cell layout-item-6" style="width: 50%" > <!-- Begin Company News --> <h1><i class="fa fa-newspaper-o fa-lg"></i> Latest Company News</h1> <p><div class="status_box"> Posted by Gary Welland on 22/03/2020</div> <h3>Gatwick Midweek Madness</strong></h3> <p><p> VATSIM UK is happy to invite you back to our staff up of Gatwick! Home to some of Europe's largest airlines, including British Airways, easyJet, Ryanair, TUI, Virgin, and Norwegian - there's something for everyone. Whether you'll be doing a 30 minute hop to Jersey or an 8 hour flight from the Caribbean, you can expect nothing but the best from our air traffic controllers. Expect plenty of land-after clearances and be hard on the brakes, as Gatwick's only runway is pushed to capacity. The event will take place from 1700-2000z every 1st, 2nd and 3rd Wednesday of each month, and it always proves to be a hit with pilots and ATC alike! We hope to see plenty of you joining us on the localiser.</p> <p> Check the Events Page <a href="http://cfva.freehostia.com/index.php/Events/" target="_self">here</a></p> </p> <hr> <div class="status_box"> Posted by Gary Welland on 22/03/2020</div> <h3>Birmingham Midweek Madness</strong></h3> <p><p> VATSIM UK is happy to welcome you back to another Midweek Madness! Join us on the last Wednesday of each month, for our Midweek Madness Feature Week! Due to popular demand, we’ll be taking you to Birmingham for 3 hours of ATC on the 29th of April, at the usual times of 1700-2000z. Expect nothing from the best from our controllers - come and join us on the localiser!</p> <p> Check the Events Page <a href="http://cfva.freehostia.com/index.php/Events/" target="_self">here</a></p> </p> <hr> <div class="status_box"> Posted by CFVA Admin on 09/01/2020</div> <h3>Welcome to Charter Flights VA!</strong></h3> <p><p> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">Thanks for stopping by!<br /> </span></span></p> <p> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">This is YOUR type of Virtual Airline!!</span></span></p> <ul> <li> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">Fly from ANYWHERE to ANYWHERE!</span></span></li> <li> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">Fly ANY air frame you want!</span></span></li> <li> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">Fly ANY livery you want!</span></span></li> </ul> <p> <span style="font-family:verdana,geneva,sans-serif;"><span style="font-size:12px;">JOIN TODAY</span></span></p> </p> <hr> </p> <!-- End Company News --> <!-- Begin Live Flights --> <h1><i class="fa fa-paper-plane fa-lg"></i> Current Flights</h1> <!-- Nav tabs --> <script type="text/javascript"> var acars_map_defaults = { autozoom: false, styles: [{"elementType":"labels.icon","stylers":[{"color":"#365779"},{"visibility":"off"}]},{"featureType":"landscape","stylers":[{"color":"#042E58"}]},{"featureType":"road.highway","stylers":[{"color":"#A51A1D"}]},{"featureType":"road.local","stylers":[{"color":"#808080"},{"visibility":"off"}]},{"featureType":"road.arterial","stylers":[{"color":"#808080"},{"visibility":"off"}]},{"elementType":"labels.text","stylers":[{"color":"#ffffff"},{"weight":0.1}]},{"featureType":"poi","stylers":[{"color":"#365779"}]},{"featureType":"poi","elementType":"labels.text","stylers":[{"color":"#ffffff"}]},{"featureType":"water"},{"featureType":"transit","stylers":[{"color":"#365779"}]}], // <-- ADD THIS zoom: 2, center: new google.maps.LatLng("51.509865", "-0.118092"), mapTypeId: google.maps.MapTypeId.HYBRID, refreshTime: 10000 }; </script> <div class="mapcenter" align="center"> <div id="acarsmap" style="width:855px; height: 500px"></div> </div> <br/> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="sky_table"> <thead> <tr> <th><b>Pilot</b></th> <th><b>Flight Number</b></th> <th><b>Departure</b></th> <th><b>Arrival</b></th> <th><b>Aircraft</b></th> <th><b>Status</b></th> <th><b>Heading</b></th> <th><b>Altitude</b></th> <th><b>Ground Speed</b></th> <th><b>Distance/Time Remain</b></th> </tr> </thead> <tbody id="pilotlist"></tbody> </table> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/acarsmap.js"></script> <script type="text/html" id="acars_map_row"> <tr class="<%=flight.trclass%>"> <td width="180"><a href="http://cfva.freehostia.com/index.php/profile/view/<%=flight.pilotid%>"><%=flight.pilotname%></a></td> <td width="80">CF<%=flight.flightnum%></td> <td width="20"><%=flight.depicao%></td> <td width="20"><%=flight.arricao%></td> <td width="40"><%=flight.aircraftname%></td> <td width="180"><%=flight.phasedetail%></td> <td width="80"><%=flight.heading%></td> <td width="40"><%=flight.alt%></td> <td width="40"><%=flight.gs%></td> <td width="90"><%=flight.distremaining%> nm / <%=flight.timeremaining%></td> </tr> </script> <script type="text/html" id="acars_map_bubble"> <span style="font-size: 10px; text-align:left; width: 100%" align="left"> <a href="http://cfva.freehostia.com/index.php/profile/view/<%=flight.pilotid%>"><%=flight.pilotid%> - <%=flight.pilotname%></a><br /> <strong>Flight <%=flight.flightnum%></strong> (<%=flight.depicao%> to <%=flight.arricao%>)<br /> <strong>Status: </strong><%=flight.phasedetail%><br /> <strong>Dist/Time Remain: </strong><%=flight.distremaining%> nm / <%=flight.timeremaining%><br /> </span> </script> <script type="text/html" id="navpoint_bubble"> <span style="font-size: 10px; text-align:left; width: 100%" align="left"> <strong>Name: </strong><%=nav.title%> (<%=nav.name%>)<br /> <strong>Type: </strong> <% if(nav.type == 2) { %> NDB <% } %> <% if(nav.type == 3) { %> VOR <% } %> <% if(nav.type == 4) { %> DME <% } %> <% if(nav.type == 5) { %> FIX <% } %> <% if(nav.type == 6) { %> TRACK <% } %> <br /> <% if(nav.freq != 0) { %> <strong>Frequency: </strong><%=nav.freq%> <% } %> </span> </script> <br><br> <!-- End Live FLights --> <!-- Begin Latest Flights --> <h1><i class="fa fa-paper-plane fa-lg"></i> Latest Flights</h1> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="sky_table"> <tr> <th>Flight</th> <th>Pilot</th> <th>Departure</th> <th>Arrival</th> <th>Aircraft</th> <th>Duration</th> <th>Landing Rate</th> <th>Info</th> </tr> <tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/40">CF451</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/1">Gary Welland</a></td><td>EGKK</td><td>LEPA</td><td>A320</td><td>02.22</td><td>-540 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/39">CF164</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/6">Curtis Mayhew</a></td><td>EGGP</td><td>EGMC</td><td>A320</td><td>01.24</td><td>-551 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/38">CF117</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/4">Chang Oo</a></td><td>EGGD</td><td>EGGP</td><td>A320</td><td>00.58</td><td>-601 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/37">CF2554</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/1">Gary Welland</a></td><td>EGGW</td><td>LPPT</td><td>E175</td><td>02.38</td><td>-518 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/36">CF2251</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/3">Domenic Armaghanian</a></td><td>LIRN</td><td>LIRA</td><td>CRJ700</td><td>01.31</td><td>-553 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/35">CF221</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/1">Gary Welland</a></td><td>EGLL</td><td>KJFK</td><td>CONCORDE</td><td>3.25</td><td>-533 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/34">CF155</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/1">Gary Welland</a></td><td>EGGW</td><td>EPKT</td><td>E170</td><td>2.20</td><td>-467 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/33">CF5241</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/3">Domenic Armaghanian</a></td><td>EGNX</td><td>EGMH</td><td>CRJ9</td><td>00.49</td><td>-854 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/32">CF244</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/6">Curtis Mayhew</a></td><td>EFHK</td><td>ESSA</td><td>MD-90</td><td>01.13</td><td>-637 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr><tr><td><a href="http://cfva.freehostia.com/index.php/pireps/viewreport/31">CF004</a></td><td><a href="http://cfva.freehostia.com/index.php/profile/view/1">Gary Welland</a></td><td>VHHH</td><td>ZGGG</td><td>L-1011</td><td>01.18</td><td>-494 ft/m</td><td><span class="label label-important"><font color="green">Accepted</font></span></td></tr></tbody> </table> <div class="clear"></div> <div class="clear"></div> <!-- End Latest Flights --> </div> <div class="sky-layout-cell layout-item-7" style="width: 33%" > <!--Begin Pilots Online --> <h1><i class="fa fa-users fa-lg"></i> Pilots Online</h1> <table class="aka_table" width="100%" cellspacing="0" cellpadding="1px"><tr><td>Gary Welland</td><td><img src="http://cfva.freehostia.com/lib/images/countries/gb.png" alt="United Kingdom"width="16:height="16"/></td></tr></table> <center> </center><br> <!-- End Pilots Online --> <!-- Begin Statistics --> <h1><i class="fa fa-bar-chart fa-lg"></i> Statistics</h1> <!--Begin Stats --> <table class="sky_table" width="100%" cellspacing="0" border="0"> <!-- Begin Pilot Stats --> <tr> <td>Pilots:</td> <td><span class="counter">6</span> </td> </tr> <!-- End Pilot Stats --> <!-- Begin Airline Hours Stats --> <td>Total Airline Hours:</td> <td><span class="counter">39</span> </td> </tr> <!-- End Airline Hours Stats --> <!-- Begin Flights Stats --> <td>Flights:</td> <td><span class="counter">39</span> </td> <tr> <!-- End Flights Stats --> <!-- Begin Flights Today Stats --> <td>Flights Today:</td> <td><span class="counter">0</span> </td> </tr> <!-- End Flights Today Stats --> <!-- Begin Miles Flown Stats --> <td>Miles Flown:</td> <td><span class="counter">13,436</span> </td> </tr> <!-- End Miles Flown Stats --> <!-- Begin Aircraft Stats --> <tr> <td>Aircraft:</td> <td><span class="counter">45</span> </td> </tr> <!-- End Aircraft Stats --> <!-- Begin Passengers Stats --> <tr> </td> </tr> <!-- End Passengers Stats --> <!-- Begin Routes Stats --> <tr> </tr> <!-- End Routes Stats --> </table> <center> <!-- End Stats --> <br><br> <h1><i class="fa fa-user-times fa-lg"></i> Newest Pilots</h1> <table class="tablesorter"width="100%" cellspacing="0" cellpadding="1px"> <tbody> <tr> <td><a href="http://cfva.freehostia.com/index.php/profile/view/6">CFS0006 <a href="http://cfva.freehostia.com/index.php/profile/view/6"><b>Curtis Mayhew</b></a> </td> <td> <img src="http://cfva.freehostia.com/lib/images/countries/us.png" alt="" /> </td> </tr> <tr> <td><a href="http://cfva.freehostia.com/index.php/profile/view/5">CFS0005 <a href="http://cfva.freehostia.com/index.php/profile/view/5"><b>Daniel Lau</b></a> </td> <td> <img src="http://cfva.freehostia.com/lib/images/countries/my.png" alt="" /> </td> </tr> <tr> <td><a href="http://cfva.freehostia.com/index.php/profile/view/4">CFS0004 <a href="http://cfva.freehostia.com/index.php/profile/view/4"><b>Chang Oo</b></a> </td> <td> <img src="http://cfva.freehostia.com/lib/images/countries/gb.png" alt="" /> </td> </tr> <tr> <td><a href="http://cfva.freehostia.com/index.php/profile/view/3">CFS0003 <a href="http://cfva.freehostia.com/index.php/profile/view/3"><b>Domenic Armaghanian</b></a> </td> <td> <img src="http://cfva.freehostia.com/lib/images/countries/am.png" alt="" /> </td> </tr> <tr> <td><a href="http://cfva.freehostia.com/index.php/profile/view/2">CFS0002 <a href="http://cfva.freehostia.com/index.php/profile/view/2"><b>Hammy Stokes</b></a> </td> <td> <img src="http://cfva.freehostia.com/lib/images/countries/us.png" alt="" /> </td> </tr> </tbody> </table><br> </div> <div class="sky-content-layout layout-item-8"> <div class="sky-content-layout-row"> <div class="sky-layout-cell layout-item-9" style="width: 100%" > <!-- Begin Banner --> <!-- End Banner --> </div> </div></div></article> </div> </div> </div> </div> </div> <footer class="sky-footer"> <div class="sky-footer-inner"> <div class="sky-content-layout layout-item-0"> <div class="sky-content-layout-row"> <div class="sky-layout-cell layout-item-1" style="width: 24%"> <p><span style="color: rgb(238, 238, 238); font-size: 18px;"><i class="fa fa-info-circle"></i> About CFVA</span><br><br></p> <p>Flying with a virtual airline is fun. But you are limited to the routes and aircraft of that airline.</p> <p>Here at Charter Flights VA that is not the case!</p> <p>You can fly from <strong>ANYWHERE</strong> to <strong>ANYWHERE</strong>!</p> <p>Fly <strong>ANY</strong> air frame you want!</p> <p>Fly<strong> ANY</strong> livery you want!</p> <p>Have fun!</p> <p> </p> </div><div class="sky-layout-cell layout-item-2" style="width: 24%"> <p><span style="color: rgb(238, 238, 238); font-size: 18px;"><i class="fa fa-paper-plane"></i> Recent Activity</span><br><br></p> <p> <a href="http://cfva.freehostia.com/index.php/profile/view/1"> CFS0001 Gary Welland </a> has filed a PIREP from EGKK to LEPA <a href="http://cfva.freehostia.com/index.php/pireps/view/40">View Flight Report</a> </p> <p> <a href="http://cfva.freehostia.com/index.php/profile/view/6"> CFS0006 Curtis Mayhew </a> has filed a PIREP from EGGP to EGMC <a href="http://cfva.freehostia.com/index.php/pireps/view/39">View Flight Report</a> </p> <p> <a href="http://cfva.freehostia.com/index.php/profile/view/4"> CFS0004 Chang Oo </a> has filed a PIREP from EGGD to EGGP <a href="http://cfva.freehostia.com/index.php/pireps/view/38">View Flight Report</a> </p> </div><div class="sky-layout-cell layout-item-3" style="width: 22%"> <p><span style="color: rgb(238, 238, 238); font-size: 18px;"><i class="fa fa-paper-plane"></i> Simulators</span><br><br></p> <p><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/fs9.jpg"width="103" height="30"border="0" alt="0"></a><br></p> <p><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/fsx.jpg"width="103" height="30"border="0" alt="0"></a><br></p> <p><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/fsx-se.png"width="103" height="30"border="0" alt="0"></a><br></p> <p><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/p3d.jpg"width="103" height="30"border="0" alt="0"></a><br></p> <p><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/p3dv4.jpg"width="103" height="30"border="0" alt="0"></a><br></p> </div><div class="sky-layout-cell layout-item-4" style="width: 30%"> <p style="text-align: right;"><a href="http://www.vatsim.net" target="new"><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/vatsim.png"class="sky-lightbox"width="120" height="36"border="0" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px;"></a> <p style="text-align: right;"><a href="https://www.simbrief.com/home/" target="new"><img src="http://cfva.freehostia.com/lib/skins/sky_Blue/images/simbrieflogo.png"class="sky-lightbox"width="120" height="36"border="0" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px;"></a> </p> <br> © 2019-2020, All Rights Reserved.<br> skyBlue v1.0.4 by <a href="http://www.phpvms.209studios.com" target="_blank" title="209Studios">209Studios</a><br> CMS by <a href="http://www.phpvms.net" target="_blank" title="phpVMS">phpVMS</a><br> Your IP address is logged as : 79.23.157.155<br> ----------------------------------------------<br> <script> var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec") function countup(yr,m,d){ var today=new Date() var todayy=today.getYear() if (todayy < 1000) todayy+=1900 var todaym=today.getMonth() var todayd=today.getDate() var todaystring=montharray[todaym]+" "+todayd+", "+todayy var paststring=montharray[m-1]+" "+d+", "+yr var difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1) years=parseInt(difference/365) difference=difference%365 difference+=" days" document.write("It\'s been "+years+" years and "+difference+" since the launch of Chater Flights Virtual Airline. We have been flying in the sky since January 1, 2020") } //enter the count up date using the format year/month/day countup(2020,01,01) </script> <br> ----------------------------------------------<br> Charter Flights VA is in no way affiliated with any real world Airline. The Logos and Trademarks displayed on this site remain property of their respective owners. </div> </div> </div> </div> </footer> </div> <script type="text/javascript" src="http://cfva.freehostia.com/lib/skins/sky_Blue/js/script.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/skins/sky_Blue/js/script.responsive.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/skins/sky_Blue/js/bootstrap.min.js"></script> <!-- Modal --> <div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="login"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title"><i class="fa fa-sign-in"></i> Crew Login</h4> </div> <div class="modal-body"> <form name="loginform" action="http://cfva.freehostia.com/index.php/login" method="post"> <div class="container center_div"> <label>Email Address or Pilot ID</label> <input class="form-control input-sm" type="text" name="email" value=""/> </div> <br> <div class="container center_div"> <label>Password</label> <input class="form-control input-sm" type="password" name="password" value="" /> <br> </div> <div style="text-align:center;"> <div> <input type="checkbox" name="remember"/><span> Remember Me</span> </div> <div> </div> <a href="http://cfva.freehostia.com/index.php/Login/forgotpassword">I forgot my password</a> </div> <div class="modal-footer"> <span class="pull-left"><a href="http://cfva.freehostia.com/index.php/Login/forgotpassword">Having Trouble Logging In?</a></span> <button type="submit" name="submit" class="sky-button" value="Log In" /><i class="fa fa-sign-in fa-lg"></i> Login</button> <input type="hidden" name="redir" value="index.php/Profile" /> <input type="hidden" name="action" value="login" /> <button type="button" class="sky-button" data-dismiss="modal"><i class="fa fa-times fa-lg"></i> Close</button> </form> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Login Modal End--> </body> </html>
  17. yes.. folded core/templates... rename core_htmlhead.php? to core_htmlhead_old.php? to skin folder. Text
  18. These are the codes that you have to insert instead of the originals. da <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/jquery.form.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/phpvms.js"></script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDNz0LGNP3QqZJwR_Kjm8C5ERKCXrEULsE"type="text/javascript"></script> to <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/jquery.form.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/phpvms.js"></script> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDNz0LGNP3QqZJwR_Kjm8C5ERKCXrEULsE&callback=initMap" type="text/javascript"></script>
  19. Why don't you try to make the change I told you? I see that there are still those codes ...
  20. The live map does not work. http://cfva.freehostia.com/index.php/ACARS
  21. Did you make corrections? I do not think so... The codes are still there. <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/jquery.form.js"></script> <script type="text/javascript" src="http://cfva.freehostia.com/lib/js/phpvms.js"></script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDNz0LGNP3QqZJwR_Kjm8C5ERKCXrEULsE"type="text/javascript"></script>
  22. core/templates... ***** I have seen now that inside the skin there is the same file. (core_htmlhead.php) Try as I said and rename the file that is inside the skin. (core_htmlhead_old.php)
×
×
  • Create New...