Jump to content

NAdams

Members
  • Posts

    32
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

NAdams's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. good to know! All the airports that I would be deleting haven't had any Pireps filed on them. Thanks for all's ya'lls help! - Nick
  2. yea, that's the problem i'm having i can't seem to find where to delete them from the admin panel
  3. what if i delete them from the actual database, will this delete them from the admin panel?
  4. You can enable/disable the fleet and the airlines, but not the airports Even though the fleet and airlines and disabled, they still show up with the Schedule Search module.
  5. Hey, I thought i was blind and couldn't figure it out, but I searched here and saw someone else was having the same problem and never got their answer http://forum.phpvms.net/topic/3829-removing-an-added-airline/page__p__25932__hl__%2Bdeleting+%2Bairports__fromsearch__1#entry25932 So, my question is.....is there a way to delete the Airports, Fleet, and Airlines from the admin panel that were added. We are switching some of our destination airports and fleet around and I would like to delete some of it so it doesn't show up in our airports list. - Nick
  6. alright, now i cleaned it up now the top one is the new, the bottom is the old it's a lot cleaner lined now thanks for the input! - Nick
  7. Cool, glad you liked! i think what i did is i had the tolerance set too high when i used the color bucket to fill in the background color. if setting the tolerance lower doesn't fix it, i'll try the resolution thing you suggested, thanks! - Nick
  8. by asking lots of questions...lol here is the thread http://forum.phpvms.net/topic/3995-pilots-in-individual-hubs-solved/page__p__26921__hl__%2Bpilots+%2Bin+%2Bindividual+%2Bhubs__fromsearch__1#entry26921
  9. yea, when changing the background color for the page, that got kind of blurred in photoshop, something i need to go back and work on
  10. and let me know what you think of the site!
  11. X - US Airways is now open. We are a x-plane exclusive VA. Check it out! x-usairways.com
  12. NAdams

    Acars Map

    yea, it displays correctly with va central i have removed those fields in our live map until i could get them to work x-usairways.com is our site
  13. NAdams

    Acars Map

    i just checked the database and the information is not being populated in the database. anyway i can fix it so the information starts populating in the database?
  14. nevermind....i got it figured out, i had the sql loaded wrong...
  15. alright, i got everything working like it should in addition to controlling the categories, i just used the same code and changed it for the downloads, now i can control the individual downloads based in rank also thanks so much for the help guys - nick <div class="mcright"> <br> <p><img alt="" src="http://x-usairways.com/images/downloads.png" /></p> <br> <br> <?php if(!$allcategories) { echo 'There are no downloads available!'; return; } foreach($allcategories as $category) { // If this is the category scenery, and their rank level is less than 2, then don't show this if ($category->name == 'Scenery' && Auth::$userinfo->ranklevel < 2) { continue; } // If this is the category add-ons, and their rank level is less than 2, then don't show this if ($category->name == 'Add-Ons' && Auth::$userinfo->ranklevel < 2) { continue; } ?> <p><h2><strong><?php echo $category->name?></strong></h2></p> <ul> <?php # This loops through every download available in the category $alldownloads = DownloadData::GetDownloads($category->id); if(!$alldownloads) { echo 'There are no downloads under this category'; $alldownloads = array(); } foreach($alldownloads as $download) { // If this is the download a319, and their rank level is less than 2, then don't show this if ($download->name == 'A319' && Auth::$userinfo->ranklevel < 4) { continue; } ?> <li> <a href="<?php echo url('/downloads/dl/'.$download->id);?>"> <?php echo $download->name?></a><br /> <?php echo $download->description?><br /> </li> <?php } ?><br /> </ul> <?php } ?> </div>
×
×
  • Create New...