Jump to content

Sava

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Sava

  1. Sava

    PilotShop - Preview

    Because some people have asked me for the status of this I though I'd share a bit more info. At first, I thought I lost the code in a file mixup I had a while back, but apparently I found the files backed up on a flash drive, so I have them with me. I am really busy with other projects at this time, but once I finish that, I'll be happy to get back to work on this....
  2. Few shots from landing in Amsterdam on VATSIM with full ATC a few days ago. http://i.imgur.com/kw4vNQo.jpg http://i.imgur.com/RYvURRz.jpg
  3. looks cracking! And the Tupolev is a great aircraft. Once at a friend's house who is directly on the approach path of Belgrade's airport, it flew overhead - windows were about to crack, believe me, those things are loud!
  4. No need for a license to be honest, just common sense.
  5. Joeri, you can't be serious? Just imagine you did a design and sold it to me, and then I sold it to 5 guys after that? No logic there.
  6. It's good noting the original template is from http://www.templatemo.com http://www.templatemo.com
  7. Why would he lie? Obviously sameone gave it to him or something like that. How he got it doesn't really matter..
  8. I still haven't had any of that, probably thanks to the Entrance Exam module.
  9. You can just set a cookie for the user and select which skin it will load for them. Place this on the top of your local.config.php file under session_start() if(isset($_GET['lang']) && $_GET['lang'] != ''){ $_SESSION['lang'] = $_GET['lang']; define('CURRENT_SKIN',$_GET['lang']); } if(isset($_SESSION['lang']) && $_SESSION['lang'] != '') { define('CURRENT_SKIN',$_SESSION['lang']); } Then create multiple skins. You can call them whatever you want. Then make a link to yoursite.com/?lang=SkinName.
  10. Looks like you are using a free host. That might the reason. Where is the error appearing?
  11. Or just comment out/delete the entire method in the PIREPs controller. Safest thing to do.
  12. There's always a reason. Staff won't kick out a member for no reason
  13. Sava

    Skin help!

    1. You should then try harder. If you have HTML/CSS knowledge, the guides should give you good guidance on what to do. If you do not know HTML/CSS, you should learn it first. 2. People are helping, but once you show that you actually tried to do it yourself and you are not just waiting for others to do the work for you. And in the end, no one is obliged to help you. phpVMS is free and you haven't paid anything to be in the position to *request* help. There is no customer service.
  14. I have mine set up so that the page title is the article title. That might be the best?
  15. Should be fixed now. The error is because the connection to the file checking for updates was deleted during the maintenance of the site I am doing. I reuploaded the file, and the error should disappear now.
  16. Some good points by Jon. Something else to take into account: Change Skyline to your VA Name stylize the frontpage table for the flights somehow - the borders look really bad change the name of the about us page to About Us (currently aboutus) I don't see a point in making virtual pilots and virtual airline with capital letters If you aim for a realistic VA, having that many ranks isn't the way. In real life, pilots go through much less ranks Join us page has some weird characters on the top If you are using 3rd party forms, it's better to have them included in the page somehow. Customize the template/skin a bit. Most of these are trivial but really contribute to the general way people will see your VA. The most important thing is the skin, and that should be your priority!
  17. Nice! Great to see Air Serbia Virtual in such a good video!
  18. Couldn't have said it better. Being a services provider I can highly agree on what Jerry said.
  19. If I understand correctly, you want code that will allow you to have 2 schedules with the same number? You can just remove the code that checks for existing schedules admin/modules/Operations/Operations.php around line 903 # Check if the schedule exists $sched = SchedulesData::getScheduleByFlight($this->post->code, $this->post->flightnum); if(is_object($sched)) { $this->set('message', 'This schedule already exists!'); $this->render('core_error.tpl'); return; } change to # Check if the schedule exists /*$sched = SchedulesData::getScheduleByFlight($this->post->code, $this->post->flightnum); if(is_object($sched)) { $this->set('message', 'This schedule already exists!'); $this->render('core_error.tpl'); return; } */ I haven't tried it but it should work When adding schedules it will not verify any more. Edit: Just noticed that there is actually no verification in place when editing schedules, so if you set it up like 100A, and go to edit it to 100 afterwards, it will allow you.
×
×
  • Create New...