Jump to content

Kyle

Moderators
  • Posts

    2282
  • Joined

  • Last visited

Everything posted by Kyle

  1. Kyle

    vStatsCenter

    Mark, yeah I know it's been a issue. im going to rewrite the module one function for current month and another function for the past month or something else. maybe add a error messages. cheers!
  2. it's easy, in the add field form.. say you want three different options in the drop down like this. Yes No Maybe you put in commas like this... Yes,No,Maybe Cheers!
  3. Mark, a cronjob would work, get all of the banned pilots and and delete all of the banned pilot sessions. or if your okay doing some minor core changes. if you want, I can write something up for you.
  4. The tip though, don't create a VA that is already existed, it would be likely a potential of not getting members enough. Unless how your VA is different and better than the same ones
  5. I say the first one and the third one mostly attracts me.
  6. Marking Solved next time whenever you find a solution, be sure to edit your first post and add SOLVED to the title. Cheers!
  7. True, It's mostly pain in my butt by downloading files and logging into FTP and do the extra work.
  8. Does MyBB have that already? I don't remember but I remember seeing a Update button.
  9. Something like a copyright infringement letter to the person.
  10. Theses types hosts can be ignorant with DMCA, thinking that they are protecting their own customers. Why not take it to the next level?
  11. You just only needed to add the $pilots function. Example... <?php $count = 5; $pilots = PilotData::GetLatestPilots($count); foreach($pilots as $pilot) { ?> <p><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"><?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid). ' ' .$pilot->firstname . ' ' . $pilot->lastname?></a></p> <?php } ?>
  12. I have done that for my last VA. I added average landing rate, their top landings, their top flight #'s flown in month, all of that kind of detailed stats.
  13. Interesting... they think like they're protected.
  14. Did you even send a DMCA?
  15. Scott, This is what we are trying to do. We are trying to to keep the offending members under control, depending on the severity, we warn them, and if they strike, they will be banned from these forums. Right now, as you know it hasn't been that easy because offending members keeps finding ways of getting into these forums. Although, the moderators are trying the best to it's best. But I don't really think the FBI won't really do anything, if I'm not wrong though. I think the FBI is mostly involved in high profile cases, not in copyrights of a code. But there are copyright infringements suits options or a shut down of the website.
  16. Manuel, I have those pointers settings in my custom Google Maps. I can include that for you. But I'll leave two codes for GCMap and Google Maps, and you can chose one out.
  17. Count me in! I'll be happy to test it out for you.
  18. Quick Question! Route Map and Recent Flight Maps Types... GCMap or GoogleMaps?
  19. Interesting... I never knew how our .htaccess is secured that much and the way people are getting the skin code. From what you are thinking about doing, I think this is a good idea, I mean really becasue it'll stop all of the skin theft much likely. I can see this could take time to make it work fully, whenever you need the time, take your time. So, I think this will be 100% worth it to stop the theft because browsers can't read php files, but tpl can be read but if we set our .htaccess properly. Cheers!
  20. I think that the aircraft rank level restriction is part of the stable version. Look in the app.config.php and it should be there. This is what should be in your local.config.php Config::Set('RESTRICT_AIRCRAFT_RANKS', true);
  21. yep, we have to be careful here. it's not like taking an airlines logo and using it as your own. you gotta have permissions from the real world airlines. you would be surprised how many virtual airlines have been shut down without obtaining permissions from the real airlines.
  22. Still on what he was doing by sending whatever was that to crash Teamspeak servers.
  23. This should work, put in schedule_results.tpl <?php if(Auth::LoggedIn()) { if($route->aircraftlevel > Auth::$userinfo->ranklevel) { ?> <b><font color="#FF0000">Above your rank!</font></b> <?php } else { ?> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } } ?>
×
×
  • Create New...