Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeff

  1. That's not 100% true Kyle. All my members type their routes in kACARS for every flight. The only routes that show are the path traveled in the view pirep. It never shows on the live map on mine.
  2. It sounds like a problem with the way you added the link in your navigation menu. Check to make sure that the link code is closed <li>Your link</li>
  3. The best advise which I can give you, is to take your time. Do not start construction on a VA, throw a couple of schedules, add a 777 and open up for business. This is a hobby. You will soon find out that you need tons of patience and free time to start your VA. Don't use free hosting, as you might not see it in the beginning, but you will definitely run into problems in the long run if you do. If you start a VA for a real airline counterpart, get your permissions before starting so that you don't waste time building it, then getting shut down. Do your homework on what you would like to offer your pilots. If you only offer a few things, they probably won't stick around too long.
  4. Place this at the very top of any page you don't want non-members to see. <?php if(Auth::LoggedIn() == false) { echo 'We're sorry! You must be a registered member in order to view this page'; return; } ?>
  5. Re-fresh your browser (F5). Also try to click RESET SIGNATURES in your Admin Center (under Maintenance Options).
  6. Edited...Sorry, I misread this post.
  7. This should be in your skins layout.tpl then change the name in your Admin Center to show your websites name. Then the tab will show the page title then your website name. For example if you are viewing my Pilot List page, the tab on the browser shows Pilots - Virtual Flight Zone <title><?php echo $page_title; ?></title>
  8. The way I have mine setup is that you must be logged in to view the page (code can be removed to have public access). It also shows if the pilot has a Skype account, that it shows if they are online (on Skype) at the moment (can also be removed). You can change the colors to match your site. <?php if(Auth::LoggedIn() == false) { echo 'You have found a restricted area. You must log in as a pilot in order to view!'; return; } ?> <h3><?php echo $title?></h3> <?php if(!$allpilots) { echo 'There are no pilots!'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th width="10%">Pilot ID</th> <th width="35%">Name</th> <th width="15%">Rank</th> <th width="20%">Flights</th> <th width="20%">Hours</th> <th width="30%">Skype</th> </tr> </thead> <tbody> <?php foreach($allpilots as $pilot) { /* To include a custom field, use the following example: <td> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ // To skip a retired pilot, uncomment the next line: //if($pilot->retired == 1) { continue; } ?> <tr> <td width="20px" nowrap><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </td> <td width="35%"> <img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" title="<?php echo Countries::getCountryName($pilot->location);?>" /> <?php echo $pilot->firstname.' '.$pilot->lastname?> </td> <td width="15%"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" title="<?php echo $pilot->rank;?>" /></td> <td width="20%"><?php echo $pilot->totalflights?></td> <td width="20%"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></td> <td><div align="center"><?php $fieldvalue = PilotData :: GetFieldValue ( $pilot -> pilotid , 'Skype'); if( $fieldvalue != '' ) { echo ' <script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script> <a href="skype:' . $fieldvalue . '?call"><img src="http://mystatus.skype.com/bigclassic/' . $fieldvalue . '" style="border: none;" width="100" height="30" alt="My status" /></a></a>' ; } ?></div></td> <?php } ?> </tbody> </table>
  9. Jeff

    Spots by TFDi

    I love the shadow effects.
  10. I can create you a fully customized search page if you want. I have it where you can search by airline, since I have over 20 airlines at the moment.
  11. If phpVMS requires an update, you will receive a notice in your Admin Center (main page). It will tell you that there is one available for you to install. You will have to come back here to get it and upload it into your current install and run the update. Nabeel is currently working on one at the moment (I believe) and will be available once he gets done with it.
  12. I have Kobus' kAcars, and mine isn't doing that.
  13. That is truly interesting. I'd be interested in knowing that as well since there are some members that fly more props than jets (and vice versa).
  14. I brought this subject up 2 years ago as well, but never could get it fixed.
  15. Jeff

    vAwards

    Yeah! As you have them now, it looks like it groups them separately, but in the same table. I would like to have separate tables...each table calling its own award.
  16. Jeff

    vAwards

    Can you make it so that you can show them by a single category instead of them grouped together? I want to show them in separate tables. Is it possible?
  17. Jeff

    vAwards

    Ah great. Haven't been on in a few months (been taking a break from my VA for a while). Glad to see you have it released. I will put it to the test right away. Thanks Kyle.
  18. You'll need to create the table for it.
  19. You can manually enter it there.
  20. Is the phpvms_pireps missing from your database? It shouldn't be unless you deleted it.
  21. Do not use free hosting alongside phpVMS. As phpVMS progresses with updates and other upgrades, free hosting doesn't work correctly and can just really leave your VA in a heap of problems. It might not happen right away for some people, but it will sooner or later. When I was operating One World Virtual back in 2010, I, too used x10hosting to run my VA with phpVMS. I came across a lot of scripts and modules that were coming up with errors. It just happened to be that free hosting was not supplying me with the correct scripts that would allow me to operate correctly. It's best to go to paid, and Nabeel can work with you with some really good hosting plans that are very well priced for what you receive.
  22. Go to "Maintenance Options" from your Admin Center www.yoursite.com/admin Click the "Reset Hours" link then go back in and reset the hours, enter once again and click the clear cache.
  23. Go to phpMyAdmin Click phpvms_pilots Click "Edit" next to the pilot's name that has the flight that you are wanting to remove Change totalflights to 0 Change totalhours to 0 Change totalpay to 0 Then click the "GO" button or Save (which ever you have)
×
×
  • Create New...