Jump to content

[Complete Skin] Pacific | Free


magicflyer

Recommended Posts

pacific%20skin.png

We are proud to present Pacific Skin, designed by Zumeweb.com

Pacific Skin is a 98% free skin, meaning that it is available for download free and you may use it on any site, in condition that the 'Designed by Zumeweb.com' footer at the bottom of each page remains.

Features

  • Animated Menu (Compatible with Chrome/Firefox/Explorer 9+)
  • Customized Background
  • New Pilot Center
  • New Flight Info Page
  • Schedule System Redesigned
  • Easy-to-add Navigation(For icons click here)
  • Bootstrap 2.3.2 Integrated
  • QuickFacts Module
  • Current Flights on frontpage
  • Easy to use Pilot Panel(Top of each page)

Demo

To demo/preview the skin -

[D
emo account]
Pilot ID:
JohnDoe@zumeweb.com
| Password:
demo1234

Download

Click here to download the skin:

Woo this is awesome! How can I get a custom skin for my VA?

Check out our Virtual Airline Design website:
to learn more of Zumeweb's Services for VAs
  • Like 3
Link to comment
Share on other sites

where is the acars download information?

Hi! I am not too sure I understand your question. The ACARS needs to be purchased directly from the author(not me). Check the "Payed Services" section of this forum. As for the downloads section(index.php/downloads), it is the default phpvms template and is unedited.

Link to comment
Share on other sites

Hi! I am not too sure I understand your question. The ACARS needs to be purchased directly from the author(not me). Check the "Payed Services" section of this forum. As for the downloads section(index.php/downloads), it is the default phpvms template and is unedited.

I think he means the template files for ACARS which are originally in the pilot centre.

Mac... :ph34r:

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

Thanks for this brilliant skin, just one issue if you could help please (image attached)

My frontpage_main.tpl

<style>

#innerwrapper{

background:none;

border:none;

padding:0px;

}

</style>

<img style="border:1px solid lightgrey;"src="<?php echo SITE_URL;?>/lib/skins/Zumeweb.Pacific.V1/images/default/web_banner.png"/>

<div class="row-fluid">

<div class="span9">

<h3>Welcome Aboard</h3>

<div class="box">

<p>Welcome to Charter Virtual Airlines! We are a virtual airline that strives on serving Virtual Pilots dreams of making virtual flying feel real! We operate mainly Low Cost and charter airlines that operate across America and Europe at this present moment in time and we hope to spread world wide brining all low cost flying to our airline. At the moment we currently operate the following American low cost and charter airlines: AirTran Airways, Allegiant Air, Frontier Airlines, JetBlue, Southwest Airlines, Spirit Airlines, Sun Country Airlines, Virgin America and UPS. Our European low cost and charter are Aegean AIrlines, Aer Arann, Aer Lingus, Air Baltic, Air Berlin, Air Malta, Arkefly, Avro (charter), blu express, Blue Air, Brussels Airlines, Condor, Corendon, easyJet, Flybe, Thomas Cook, Germania Express, Germanwings, Jet2, Meridiana, Monarch, Norwegian, Onur Air, Pegasus Airlines, Ryanair, Smartwings, SunExpress, Thomson, Transavia, TUIfly, Volotea, Vueling Airlines, Wizzair, WOW air. We hoep you like our site and wish to see you in our skies soon! Charter Virtual Staff! </p>

</div>

</div>

<div class="span3">

<h3>Newest Pilots</h3>

<div class="box">

<?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>

</div>

</div>

<div class="span3">

<h3>Newest Pilots</h3>

<div class="box">

<?php MainController::Run('Pilots', 'RecentFrontPage', 5); ?>

</div>

</div>

<div class="span3">

<h3><strong>Quick</strong>Facts</h3>

<div class="box">

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::PilotCount(); ?></div></b></td>

<td>Pilots</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalAircraftInFleet(); ?></div></b></td>

<td>Aircraft</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalSchedules(); ?></div></b></td>

<td>Schedules</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalFlights(); ?></div></b></td>

<td>Completed Flights</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalFlightsToday(); ?></div></b></td>

<td>Flight(s) today</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalFuelBurned(); ?></div></b></td>

<td>Fuel burned</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalHours(); ?></div></b></td>

<td>Hours Flown</td>

</tr>

<tr>

<td><b><span class="badge badge-info"><?php echo StatsData::TotalMilesFlown(); ?></div></b></td>

<td>Miles flown</td>

</tr>

</table>

</div>

</div>

<div class="row-fluid">

<div class="span9"><h3>Current Flights</h3><div class="box">

<?php

$q = "SELECT * FROM phpvms_acarsdata";

$l = DB::get_results($q);

if($l != null){

?>

<table border="0" width="100%" cellspacing="4" class="acarsmap">

<thead>

<tr>

<td><b>Pilot</b></td>

<td><b>Flight Number</b></td>

<td><b>Departure</b></td>

<td><b>Arrival</b></td>

<td><b>Status</b></td>

<td><b>Altitude</b></td>

<td><b>Speed</b></td>

<td><b>Time Remaining</b></td>

</tr>

</thead>

<tbody id="pilotlist">

<?

foreach($l as $fl) {

$lu = strtotime($fl->lastupdate);

$min_u = strtotime(date("Y-m-d") - 900);

if($lu > $min_u) {

echo("<tr>");

echo("<td>".$fl->pilotname."</td>");

echo("<td>".$fl->flightnum."</td>");

echo("<td>".$fl->depicao."</td>");

echo("<td>".$fl->arricao."</td>");

echo("<td>".$fl->phasedetail."</td>");

echo("<td>".$fl->alt." feet</td>");

echo("<td>".$fl->gs." knots</td>");

echo("<td>".$fl->timeremaining."</td>");

echo("</tr>");

}

}

}else{ ?>

<div class="alert alert-danger">

<strong>Looks Like our Pilots are taking a rest!</strong> There is no current flights online.

</div>

<?php

}

?>

</tbody>

</table>

</div>

</div>

<div class="row-fluid">

<div class="span9"><h3>Latest Arrivals</h3><div class="box">

<?php

$count = 5;

$pireps = PIREPData::getRecentReportsByCount($count);

?>

<table width="100%">

<tdead>

<tr>

<td>Flight No</td>

<td">Departure</td>

<td>Arrival</td>

<td>Duration</td>

<td>Pilot</td>

<td>Status</td>

</tr>

</tdead>

<tbody>

<?php

if(count($pireps) > 0)

{

foreach ($pireps as $pirep)

{

{

$pilotinfo = PilotData::getPilotData($pirep->pilotid);

$pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid);

if($pirep->accepted == '0') $status = 'REJECTED';

if($pirep->accepted == '1') $status = 'ACCEPTED';

else $status = 'PENDING';

}

?>

<tr>

<td><?php echo $pirep->code.$pirep->flightnum; ?></td>

<td><?php echo $pirep->depicao; ?></td>

<td><?php echo $pirep->arricao; ?></td>

<td><?php echo $pirep->flighttime; ?></td>

<td><?php echo $pilotinfo->firstname.' '.$pilotinfo->lastname; ?></td>

<td><?php

if($pirep->accepted == PIREP_ACCEPTED)

echo 'Accepted';

elseif($pirep->accepted == PIREP_REJECTED)

echo 'Rejected';

elseif($pirep->accepted == PIREP_PENDING)

echo 'Approval Pending';

elseif($pirep->accepted == PIREP_INPROGRESS)

echo 'Flight in Progress';

?>

</td>

</tr>

<?php

}}

else

{

echo '<tr><td>There are no recent flights!</td></tr>';

}

?>

</tbody>

</table>

</div>

</div>

<div class="row-fluid">

<div class="span9">

<h3>Partners</h3>

<div class="box">

<center>

<div class="partners" >

<a href="#" target="_blank">

<img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo.png" class="partnerimg">

</a>

<a href="#" target="_blank">

<img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo.png" class="partnerimg">

</a>

<a href="#" target="_blank">

<img src="<?php echo SITE_URL; ?>/lib/skins/Zumeweb.Pacific.V1/images/default/partner_logo.png" class="partnerimg">

</a>

</div>

</center>

</div>

</div>

</div>

website.png

Link to comment
Share on other sites

Huge quote about an issue with the skin

Here is the fixed version:

http://pastebin.com/ywEsa6q2

The issue is that you had the <div class="row-fluid> inside another, the proper format is:

<div class="row-fluid">
 <div class="span4"></div>
 <div class="span4"></div>
 <div class="span4"></div>
</div>

Replace span4 with whatever span# for as long as # + # + # is equal to 12.

I modified it, to match the edits you made on your website, http://charterairlinesva.com/index.php/

Best wishes ;)

Link to comment
Share on other sites

Here is the fixed version:

http://pastebin.com/ywEsa6q2

The issue is that you had the <div class="row-fluid> inside another, the proper format is:

<div class="row-fluid">
 <div class="span4"></div>
 <div class="span4"></div>
 <div class="span4"></div>
</div>

Replace span4 with whatever span# for as long as # + # + # is equal to 12.

I modified it, to match the edits you made on your website, http://charterairlin....com/index.php/

Best wishes ;)

Thanks ever so much for this I will change when I egt home from school!

Regards :)

Link to comment
Share on other sites

Due to my "newness" my posts are delayed. Hopefully the post I had is still in the queue to be approved, just in case it never went through I am requesting the following assistance.....

For some reason the coding appears to be okay for the }else{ ?> comment that allows for

"<strong>Looks Like our Pilots are taking a rest!</strong> There is no current flights online."

to be pulled when no pilots are online. For some reason that box does not appear for me. As indicated in the img, it is just blank. This is "okay" but I would prefer that empty space be filled if possible. Any assistance is greatly appreciated.

Attached: Image displaying site and coding I am referring to.

post-31958-0-88741200-1384448520_thumb.jpg

Link to comment
Share on other sites

  • 2 weeks later...

PHP Error Message

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/home/a4049077/public_html//lib/skins/Zumeweb.Pacific.V1/<div class="container"> <h3>Registration</h3> <p>Welcome to the registration form for JetStream Aviation. After you register, you will be notified by a staff member about your membership.</p> <form method="post" action="http://jsa.netau.net/index.php/registration"> <dl> <dt>First Name: *</dt> <dd><input type="text" name="firstname" value="" /> </dd> <dt>Last Name: *</dt> <dd><input type="text" name="lastname" value="" /> </dd> <dt>Email Address: *</dt> <dd><input type="text" name="email" value="" /> </dd> <dt>Select Airline: *</dt> <dd> <select name in /home/a4049077/public_html/core/classes/TemplateSet.class.php on line 96

Any idea on what this could be? It's on my registration page.

Link to comment
Share on other sites

Well, looks like I went on vacation for too long. The template file error is fixed, I had the wrong skin selected in recent edits. CTRL+F5 if you don't see it fixed. Ill fix the {else} issue as soon as I can. I think I may have done an edit on a Module file, if so, I need to change it so that I can call the DB locally.

Link to comment
Share on other sites

PHP Error Message

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/home/a4049077/public_html//lib/skins/Zumeweb.Pacific.V1/<div class="container"> <h3>Registration</h3> <p>Welcome to the registration form for JetStream Aviation. After you register, you will be notified by a staff member about your membership.</p> <form method="post" action="http://jsa.netau.net.../registration"> <dl> <dt>First Name: *</dt> <dd><input type="text" name="firstname" value="" /> </dd> <dt>Last Name: *</dt> <dd><input type="text" name="lastname" value="" /> </dd> <dt>Email Address: *</dt> <dd><input type="text" name="email" value="" /> </dd> <dt>Select Airline: *</dt> <dd> <select name in /home/a4049077/public_html/core/classes/TemplateSet.class.php on line 96

Any idea on what this could be? It's on my registration page.

I assume you either (1) No hubs, or (2) No airlines. Let me know, If I am right ;)

Link to comment
Share on other sites

Due to my "newness" my posts are delayed. Hopefully the post I had is still in the queue to be approved, just in case it never went through I am requesting the following assistance.....

For some reason the coding appears to be okay for the }else{ ?> comment that allows for

"<strong>Looks Like our Pilots are taking a rest!</strong> There is no current flights online."

to be pulled when no pilots are online. For some reason that box does not appear for me. As indicated in the img, it is just blank. This is "okay" but I would prefer that empty space be filled if possible. Any assistance is greatly appreciated.

Attached: Image displaying site and coding I am referring to.

Check out Line 60, where the <?php ?> code is right before the table, replace that set of php with this one:

<?php
$q = "SELECT * FROM ". TABLE_PREFIX ."acarsdata";
$l = DB::get_results($q);
if($l != null){
?>

Sorry, these posts are separated. The Questions above keep showing up magically, every time simpilot approves a post :P

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