Jump to content

NAdams

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by NAdams

  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>
  16. i got one question... i got everything set up and in the proper places...any everything looks the way it should.....i upload the screenshot and when i go to approve it, it says that none are waiting to be approved the file size is small on the one i'm uploading, the pics folder is writable
  17. quick question.... i almost got this thing working...is the "rank level" based on hrs that the pilot has, or is that the ranks that i have, i.e., i have 8 ranks, so the rank level would be 1 - 8?
  18. yep, that's exactly what i'm trying to do I want to control what downloads they can get at certain ranks. so pilots don't sign up for the VA and download all the stuff and then jump ship i'm not sure how it works in the FS world, but we all run xplane and it happens pretty often, pilots just see what they can get and then leave we maintain our own fleet and design our own scenery, so we only want to make that available to pilots who are commited to the VA and actually have to "fly" to rank up and get more stuff
  19. here is my code for the downloads_list.tpl, where would be the best place to insert the code above? or does it go somewhere else also, for the numerical value of the ranking list, if i had 8 ranks, then it would be rank level - 1, rank level-2, and so on.... <div class="mcright"> <br> <p><img alt="" src="http://x-usairways.com/images/downloads.png" /></p> <?php if(!$allcategories) { echo 'There are no downloads available!'; return; } foreach($allcategories as $category) { ?> <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) { ?> <li> <a href="<?php echo url('/downloads/dl/'.$download->id);?>"> <?php echo $download->name?></a><br /> <?php echo $download->description?><br /> <em>Downloaded <?php echo $download->hits?> times</em></li> <?php } ?><br /> </ul> <?php } ?> </div>
  20. NAdams

    Acars Map

    i.e. here is an example of the same flight at the same time, the first picture is of our live map on our site, the second is from va central's live map, giving the infomation i am missing, using the same acars system
  21. NAdams

    Acars Map

    yea, i would love to use kacars, but we are an xplane exclusive VA, so our only option is XACARS also, when we are testing flights, it shows up on the VA Central Live Map, and show the distance/time and status there, so i know it works with xacars, and it use to work before, just not now, and i am having a hard time figuring it out......
  22. NAdams

    Acars Map

    has anyone else had this problem.....or found a solution for it? :/
  23. NAdams

    Acars Map

    We are using XACARS and Fivedev hosting (paid) I know the info is being sent b/c it shows up on VA Central's Live Map
  24. NAdams

    Acars Map

    Hey Guys, I have done some searching and couldn't find if anyone else has had this problem On our ACARS map the "Status" and the "Distance/Time Remaing" information is not displaying correctly. I thought it was working at one time.... It always show the status as "enroute" and the D/TR as "0" I have went back to the original template and copied it back over to the skins folder to start from scratch, and it still does not work properly. I go to the VA Central page and our info is correct on their live map, so I know the information being sent is correct, just not on our page.....any suggestions?? Thanks - Nick
  25. I think this topic has been brought up before, but I have searched the forums up and down and couldn't find it anywhere... Is there a way to tie the downloads to rank, so the pilot can't download a certain plane until he reaches a certain rank. Even though the dowloads are there, they can't access them until they reach the rank that the download is attached to.
×
×
  • Create New...