Jump to content

Map zoom not working


CFVA

Recommended Posts

Is this a duplicate of your issue here

Or related to a different module?

 

If so, what version of phpVMS are you on? Are you still on Google Maps or have you swapped it out for Leaflet or different?

If Google Maps, you should be able to change this value here:

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/map.php#L7

 

Increasing it should zoom in, decreasing should zoom out.

 

If that doesn't work, try going to the page and going into the console and running this (one line at a time):

var m = document.getElementById("routemap");
m.setZoom(12);

 

Link to comment
Share on other sites

Hi

 

I know the zoom= but what ever value it is set to doesn’t change the zoom!

 

it seems I’m zoomed in maximum whatever that is! As I’m zoomed righ in to the runway of the airport. Other pages/modules, like acars map live display works fine.
 

using v5.5.2

 

thanks

 

Edited by CFVA
clarify
Link to comment
Share on other sites

Capture.JPG

1 hour ago, web541 said:

Is this a duplicate of your issue here

Or related to a different module?

 

If so, what version of phpVMS are you on? Are you still on Google Maps or have you swapped it out for Leaflet or different?

If Google Maps, you should be able to change this value here:

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/map.php#L7

 

Increasing it should zoom in, decreasing should zoom out.

 

If that doesn't work, try going to the page and going into the console and running this (one line at a time):


var m = document.getElementById("routemap");
m.setZoom(12);

 

first line returns undefined

second line returns Uncaught TypeError: Cannot read property 'setZoom' of null  at <anonymous>:1:3

 

Here is is a screenshot with console open with some error stuff! No idea as map zoom works on other pages no problems

 

Capture.zip

Edited by CFVA
missed attachment
Link to comment
Share on other sites

6 hours ago, CFVA said:

first line returns undefined

That shouldn't be happening, try this instead:

map.setZoom(12);

and check what the id="" tag is on the map div, it should look like this

<div id="routemap" style="width: 960px; height: 520px;"></div>

Are you sure it's a zoom issue? So in that image, if you manually zoom out it shows imagery or still nothing no matter how far you zoom? The first two console messages could have something to do with it (linked google maps api .js more than once on the page, check your page source).

It could be it's being overwritten somewhere else on the page or in another file.

 

Link to comment
Share on other sites

4 hours ago, web541 said:

That shouldn't be happening, try this instead:


map.setZoom(12);

That changed the zoom.

 

and check what the id="" tag is

 

on the map div, it should look like this


<div id="routemap" style="width: 960px; height: 520px;"></div>

That line is exactly the same.

 

Are you sure it's a zoom issue? So in that image, if you manually zoom out it shows imagery or still nothing no matter how far you zoom? The first two console messages could have something to do with it (linked google maps api .js more than once on the page, check your page source).

It could be it's being overwritten somewhere else on the page or in another file.

 

Sure it's a zoom issue. The imagery issue was just the location I was using.

Yes I can "manually" zoom in and out.

 

The module wasn't made by me. I've no idea, it's vFleetTracker Module Created By Vansers

 

These screenshots probably better

Capture1.JPG

 

Capture2.JPG

 

Can zoom in & out using scroll or +/- buttons, it's just the zoom level it starts at. All other pages that use maps are fine, just this one

 

Quote

 

Thanks for the help so far

 

 

Edited by CFVA
.
Link to comment
Share on other sites

Oh I see I was looking at the wrong file for that page, it should've been the view.php.

 

Have you tried changing the zoom on this line?

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/view.php#L81

 

then try removing these lines temporarily and test

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/view.php#L94-L102

 

And if still nothing, try this in the console and PM me your url:

var m = document.getElementById("currentlocation");
m.setZoom(12);

 

Edited by web541
Link to comment
Share on other sites

3 hours ago, web541 said:

Oh I see I was looking at the wrong file for that page, it should've been the view.php.

 

Have you tried changing the zoom on this line?

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/view.php#L81

 

No change

 

3 hours ago, web541 said:

 

Just get a blank white square and no map!

 

3 hours ago, web541 said:

And if still nothing, try this in the console and PM me your url:


var m = document.getElementById("currentlocation");
m.setZoom(12);

first line still undefined

second line Uncaught TypeError: m.setZoom is not a function at <anonymous>:1:3

thats with lines 94-102 IN or OUT !

 

http://cfva.freehostia.com/index.php/vFleetTracker/view/CF-005

 

Link to comment
Share on other sites

51 minutes ago, ProAvia said:

Isn't freehostia a free host? That could be your issue.

 

It is, but maps in other pages all work. ACARS live map, the vFleetTracker map that shows where all aircraft are, just the 1 map when you view a single plane's information. So it must be the code somewhere!

 

Thanks for the input though

Link to comment
Share on other sites

So in your console, this will work to zoom in/out

map.setZoom(5);

At the end of the file here:

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/view.php#L203

 

Try putting this:

<script>
map.setZoom(5);
</script>

That should overwrite anything that's there.

 

 

Also as a sidenote, to remove one of the google maps console messages, you will want to take your

<script async defer src="https://maps.googleapis.com/maps/api/js?key=KEY"type="text/javascript"></script>

line (I think from your skin) and replace this in your core_htmlhead.php file (either in your skin or copy it from core/templates into your skins folder and edit it there)

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>

 

Edited by web541
Link to comment
Share on other sites

11 hours ago, web541 said:

So in your console, this will work to zoom in/out


map.setZoom(5);

That's works in the console mode

 

At the end of the file here:

https://github.com/KJRDev/phpVMS_vFleetTracker/blob/master/core/templates/vFleetTrack/view.php#L203

 

Try putting this:


<script>
map.setZoom(5);
</script>

That should overwrite anything that's there.

 

Did that but no change

 

11 hours ago, web541 said:

 

Also as a sidenote, to remove one of the google maps console messages, you will want to take your


<script async defer src="https://maps.googleapis.com/maps/api/js?key=KEY"type="text/javascript"></script>

line (I think from your skin) and replace this in your core_htmlhead.php file (either in your skin or copy it from core/templates into your skins folder and edit it there)


<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>

 

 

Did this but now get message This page can't load Google Maps correctly. (I've reversed the changes now)

Link to comment
Share on other sites

Open file core_htmlhead.php  (core/templates folder)

 

search for

 

<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>

 

Edited by gio1961
Link to comment
Share on other sites

3 hours ago, gio1961 said:

Open file core_htmlhead.php  (core/templates folder)

 

search for

 


<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>

 

 

There is a core_htmlhead.php in the skins folder as well as core/templates folder

 

Which one?

Link to comment
Share on other sites

2 minutes ago, CFVA said:

 

Sorry to say that's not made any difference. I may just take the map display off that page and not bother

 

 

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>

 

 

Link to comment
Share on other sites

1 hour ago, gio1961 said:

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>

I reverted to the original code after testing it

 

 

Link to comment
Share on other sites

8 minutes ago, CFVA said:

 

 

8 minutes ago, CFVA said:

 

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>

 

Edited by gio1961
Link to comment
Share on other sites

6 minutes ago, gio1961 said:

 

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>

 

Where are these going? core_htmlhead.php?

Link to comment
Share on other sites

10 minutes ago, CFVA said:

Now I've lost my live ACARS map on frontpage & live acars page!

 

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>



 

Link to comment
Share on other sites

12 minutes ago, gio1961 said:

 

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>



 

 

I've combined the 2 files. Seems to be ok at the moment

Link to comment
Share on other sites

22 minutes ago, CFVA said:

How do I set a fixed zoom level?  Rather than from 5 to 17, if I want about 15 how to do please.

 

Thanks for the help so far, it's been fantastic

 

Gary

Rather than from 5 to 15  (MIN-MAX) with these settings, the zoom does not go beyond 15

Edited by gio1961
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...