Jump to content

tobyrice01

Members
  • Posts

    85
  • Joined

  • Last visited

Posts posted by tobyrice01

  1. Here I am again...pleading for help! :D

    On my site: http://bluehawkvirtual.net/index.php/

    The slide show has 3 problems.

    1. It does not start automaticly, you have to press the next button, and then it goes on by itself.

    2. When it ends, it does not go back to the start. It just "disappears" from the site except for a small line about 10px tall. Fixed that myself.

    3. Not important, but how can I make the slideshow smaller?

    Here is the layout.tpl file code that I have:

    <?php
    /**
    *
    * STOP!!!!!!!!
    *
    * Are you editing the crystal skin directly?
    * DON'T
    *
    * Copy and rename the crystal folder. Otherwise it'll get
    * overwritten in an update.
    *
    * Also, READ THE DOCS
    *
    * http://www.phpvms.net/docs/skinning
    *
    */
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
    <head>
    <link rel="icon" href="http://www.bluehawkvirtual.net/favicon.ico" type="image/x-icon">
    <link rel="shortcut icon" href="http://www.bluehawkvirtual.net/favicon.ico" type="image/x-icon">
    <meta http-equiv="X-UA-Compatible" content="IE=7">
    <title><?php echo $page_title; ?></title>
    <link rel="stylesheet" media="all" type="text/css" href="<?php echo SITE_URL?>/lib/skins/Arctic/dist/css/bootstrap.css" />
    <link rel="stylesheet" media="all" type="text/css" href="<?php echo SITE_URL?>/lib/skins/Arctic/styles.css" />
    <script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
    <script type="text/javascript" src="<?php echo fileurl('lib/skins/Arctic/dist/js/bootstrap.js');?>"></script>
    <style>
    
    </style>
    <?php
    /* This is required, so phpVMS can output the necessary libraries it needs */
    echo $page_htmlhead;
    ?>
    
    <?php /*Any custom Javascript should be placed below this line, after the above call */ ?>
    
    
    
    </head>
    
    <body>
    <?php
    /* This should be the first thing you place after a <body> tag
    This is also required by phpVMS */
    echo $page_htmlreq;
    ?>
    <?php
    
    Template::Show('core_navigation.tpl');
    ?>
    <div id="carousel-example-generic" class="carousel slide">
    <!-- Indicators -->
    <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"></li>
    <li data-target="#carousel-example-generic" data-slide-to="3"></li>
    </ol>
    
    <!-- Wrapper for slides -->
    <div class="carousel-inner">
    
    
    <div class="item active">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide1.png">
    
    </div>
     <div class="item">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide2.png" alt="">
     </div>
    <div class="item">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide3.png" alt="">
     </div>
    <div class="item">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide4.png" alt="">
     </div>
    <div class="item">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide5.png" alt="">
     </div>
    </div>
    
    <!-- Controls -->
    <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
    <span class="icon-prev"></span>
    </a>
    <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
    <span class="icon-next"></span>
    </a>
    </div>
    <div id="body">
    <div class="item">
     <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/under slide banner.png" alt="">
     </div>
    
    
    
    
    <div class="alert alert-info">
    
    <?php
    if(!Auth::LoggedIn())
    {
    echo "<i style='font-size:14px;'>You are not logged in. <a href='".url('/login')."'>Click here to login</a></i>";
    }else{
    ?>
    <i style='font-size:14px;' >Welcome back, <?php echo Auth::$userinfo->firstname; ?>!</i>
    <div style="float:right;"><a class="btn btn-default btn-xs" style="text-decoration:none;" href="<?php echo url('/profile'); ?>" >Pilot Panel</a> <a style="text-decoration:none;" class="btn btn-default btn-xs" href="<?php echo url('/logout'); ?>">Log Out</a></div>
    <?php
    }
    ?>
    
    </div>
    <div id="bodytext">
    
    <?php
    /* This will insert all of the "meat" of the page in there - the template
    which is generated, depending on which page you're on. To change these
    templates, check out the docs on the site. They're under the /core/templates
    folder, and to change them, copy them into the folder of your skin (the
    folder this file is in right now.
    */
    
    echo $page_content;
    
    ?>
    
    </div>
    </div>
    <div id="footer">
    <p>copyright © 2013 - 2014 <?php echo date('Y') ?> - <?php echo SITE_NAME; ?><br />
    <!-- Please retain this!! It's part of the phpVMS license. You must display a
    "powered by phpVMS" somewhere on your page. Thanks! -->
    <a href="http://www.phpvms.net" target="_blank">Powered by phpVMS</a> | Designed by <a href="http://www.zumeweb.com" target="_blank">Zumeweb.com</a></p>
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">
    
    </div>
    
    </body>
    </html>
    

  2. If you go to my site: http://bluehawkvirtual.net/index.php/

    You will see, that beside "Operations", the "Flights" box is blue and messed up.

    Here is the entire code from my core_navigation.tpl file

    Any ideas on how to make the Flights bar be like the others?

    <nav class="navbar navbar-default" role="navigation">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
     <span class="sr-only">Toggle navigation</span>
     <span class="icon-bar"></span>
     <span class="icon-bar"></span>
     <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="#"><?php echo SITE_NAME; ?></a>
    </div>
    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
    <ul class="nav navbar-nav">
     <li><a href="<?php echo url(''); ?>">Home</a></li>
     <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Corporate<b class="caret"></b></a>
     <ul class="dropdown-menu">
    	 <li><a href="<?php echo url('/about'); ?>">About us</a></li>
    	 <li><a href="<?php echo url('/staff'); ?>">Staff</a></li>
    	 <li><a href="<?php echo url('/pilots'); ?>">Pilot Roster</a></li>
    	 <li class="divider"></li>
    <li><a href="<?php echo url('/pages/termsandconditionsregulations'); ?>">Terms,Conditions and SOP</a></li>
    <li><a href="<?php echo url('/contact'); ?>">Contact Us</a></li>
     </ul>
     </li>
    <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Operations<b class="caret"></b></a>
     <ul class="dropdown-menu">
    	 <li><a href="<?php echo url('/fleet'); ?>">Fleet</a></li>
    	 <li><a href="<?php echo url('/pages/divisions'); ?>">Divisions</a></li>
    	 <li><a href="<?php echo url('/pages/gallery'); ?>">Fleet Gallery</a></li>
    	 </ul>
    
    
    
    </li>
    </ul>
    
    <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">Flights<b class="caret"></b></a>
     <ul class="dropdown-menu">
    	 <li><a href="<?php echo url('/schedules'); ?>">Schedules</a></li>
    	 <li><a href="<?php echo url('/schedule/bids'); ?>">Bookings</a></li>
    	 <li><a href="<?php echo url('/pireps/filepirep'); ?>">File Pirep</a></li>
    	 <li><a href="<?php echo url('/acars'); ?>">Live Flights</a></li>
    </ul>
    
    
    
    </li>
    </ul>
    <ul class="nav navbar-nav navbar-right">
    <?php
    if(Auth::LoggedIn() == false){
    ?>
     <li><a href="<?php echo url('/login'); ?>">Login</a></li>
     <li><a href="<?php echo url('/pages/pilotapplication'); ?>">Register</a></li>
    
     <?php
     }else{
     ?>
     <li><a href="<?php echo url('/logout'); ?>">Logout</a></li>
    
     <li class="dropdown">
     <a class="dropdown-toggle" data-toggle="dropdown">Pilot Center <b class="caret"></b></a>
     <ul class="dropdown-menu">
    	 <li><a href="<?php echo url('/profile'); ?>">Profile</a></li>
    	 <li><a href="<?php echo url('/downloads'); ?>">Downloads/Repaints</a></li>
    	 <li><a href="<?php echo url('/pages/comingsoon'); ?>">Training</a></li>
    
     </ul>
     </li>
     <?php
     }
     ?>
    </ul>
    </div><!-- /.navbar-collapse -->
    </nav>
    

  3. Here is my fleet page: http://bluehawkvirtual.net/index.php/fleet

    I'm making a new site btw, so it's all pretty crummy :mellow:

    I added the Piper Cub, Cicada and other aircraft to the fleet a while back, but now I want to get rid of them, or at least remove them from the fleet page.

    How can I do this? I've searched and searched, but nothing worked.

    I know people say that I can go to the phpvms_fleet of my site, but I do not know where that is located.

    Any help is appreciated!

  4. I've installed about 5 skins into my FTP so I can see which ones I like the best.

    The default phpVMS one works, and so do two others. But this new one (Zumeweb's Pacific) will not work correctly!

    Here is the error I get:

    Notice: The template file "/home/bluehawk/public_html//lib/skins/Pacific/header.tpl" doesn't exist in /home/bluehawk/public_html/core/classes/TemplateSet.class.php on line 248

    And then the site is all messed up, showing only some old news info from the other skin, and what not.

    I'm trying to find a skin that works for me, since my old one (Skyline Green) isn't doing it for me :P

  5. Hey Friends,

    I'm CEO of BlueHawk Virtual Airways and I am looking for a willing and eager person to take the airline's position of VPS (Vice President of Schedules).

    A VPS:

    • Manages worldwide schedules for the VA
    • Creates Schedules to fly
    • Oversees the Schedule Managers (By region)
    • Has a high position in the VA, ranking a tie for #4 in the VA next to VP of Fleet and Human Resources Manager.
    • Creates and manages airports of the VA, making sure that all of the airports have correct lat/lon, fuel prices and codes.

    It's very straight forward, and I would be very grateful to anyone willing to take this job.

    Requirements:

    · Must Complete a minimum of 5 flights per month.

    · Must be able to utilize TeamSpeak 3 using Voice (Microphone).

    · Must be active on TS and be online for a substantial amount of time each month.

    · Must attend EVERY Staff meeting (Certain Exceptions Apply)

    · Must be a Pilot in Good standing

    · Must not be with another VA (Exception: Flying Club, FSEconomy)

    · Must be able be flexible, and be able to do as the CEO requests (or orders).

    Other positions available:

    VP of Operations

    VP of Fleet

    Human Resources Manager

    Operations Manager -Reports to VPO

    Fleet Manager - Reports to VPF

    Europe Schedule Manager

    Asia Schedule Manager - Reports to VPS

    North America Schedule Manager - Reports to VPS

    South America Schedule Manager - Reports to VPS

    Oceania Schedule Manager (Australia, New Zeland, etc) - Reports to VPS

    See more on our site.

    PM me if you are interested.

×
×
  • Create New...