Jump to content

Strider

Members
  • Posts

    1821
  • Joined

  • Last visited

  • Days Won

    53

Everything posted by Strider

  1. this forum has a PM service, learn to use it for these kind of problems in the future. No one here wants to know, and it is degrading to the person you are accusing. Whether he is guilty or not. Also makes you look like an arrogent person.
  2. When you hover over the edit button you will see the pirep number.
  3. Also, why is your handbook written in all capitals? It is quite difficult to read because of the color and the spacing. And I agreee, take the "MUST NOT BE IN ANOTHER VIRTUAL AIRLINE TO JOIN!" You won't get as many pilots as you want. Also are you on freehosting?
  4. No, we want the screenshots now!!! hahah just kidding. Can't wait, this will be a great addon for phpvms.
  5. You would have to add a line into the acars map core module file to get the info of the fuel used, then call it to the map itself.
  6. fspax.php Reupload that file, and that should fix that problem. also are you on freehosting?
  7. Works great, is it possible to show online pilots for multiple airlines, like 5 different ones?
  8. Make sure they are named the same way the previous ones were, and that they are located in the same place. Or edit all files that need to link to the country flags to point to the new location. The second way prevents them being over written in an update.
  9. Isn't Fleet painters and fleet managers technically the same thing?
  10. I haven't found it to be rude as of late. Tom's reply was more helpful then rude if you ask me. The OP needs to learn how to ask for help. People are also getting a bit tired of people asking the same question over and over, quite often the question was asked in a few posts down, and answered. They don't bother to look to see if their question was asked before and answered. And quite often they don't give much detail of the problem, leaving it up to us to guess what it is.
  11. Did you put a price into the field when putting the schedules into phpvms?
  12. Tutmeister, he knows enough english to get his point accross, he has shown it before. All that Tom is saying, he just needs to make what he wants clearer, as he asks very general questions, and confuses others, which doesn't help. We can't help him if we don't know what he wants in the first place. We answer the best we can, then he replies that is not what he was after. Then makes it clear, so he knows enough english to clarify it after someone replies. Why he just doesn't do it in the first place no one knows why.
  13. Jon didn't design it, he just made a template work with phpvms. The Template is free to download on the net. Good luck with your VA.
  14. Use google to try and find some good designs for it, or design a template yourself.
  15. I dont think you are going to get a forum auto register for MyBB forums soon, just go with SMF, you can transfer over to MyBB when a forum auto register is made for MyBB. Dont be so stubborn, anyway, it is not just for you, it is for your pilots to use. You can't always do what you want in a VA. You have to cater for all.
  16. It works fine for me.
  17. Module code: <?php class airlineschedules extends CodonModule { public function index() { $this->set('airlines', OperationsData::getAllAirlines(true)); $this->render('custom_schedules_main.tpl'); } public function airlineSched($code) { $params = array( 's.code' => $code, 's.enabled' => 1, ); $scheds = SchedulesData::findSchedules($params); $this->set('scheds', $scheds); $this->render('custom_schedules_airline.tpl'); } } ?> NB: I changed the name of the module you had public static index, should have been public function or public static function, but function works just fine. Also with the SchedulesData::findSchedules, you had fat fingered the keyboard, and had finsSchedules hehe. custom_schedules_airline: <table> <thead> <th>Flight #</th> <th>Dep. airport</th> <th>Arr. Airport</th> <th>Book</th> </thead> <tbody> <?php if($scheds) { foreach($scheds as $row) { ?> <tr> <td><a href="<?php echo url('/schedules/details/'.$row->id);?>"><?php echo $row->code.$row->flightnum?></a></td> <td><?php echo $row->depicao . ' '. $row->depname;?></td> <td><?php echo $row->arricao .' '. $row->arrname;?></td> <td><?php if(Auth::LoggedIn()) { ?> <a id="<?php echo $row->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } ?> </td> </tr> <?php } } else { ?> <tr> <td>No Schedules for this Airline</td> </tr> <?php } ?> </tbody> </table> NB: I have edited to my own liking. Main problem was you never closed the else statement, the same with the custom_schedules_main.tpl Custome_schedules_main.tpl: <table border="1" class="display" id="schedule"> <thead> <th>Airline Code</th> <th>Details</th> </thead> <tbody> <?php if($airlines) { foreach($airlines as $row) { ?> <tr> <td><?php echo $row->code?></td> <td><a href="<?php echo SITE_URL.'/index.php/airlineschedules/airlineSched/'.$row->code?>">View Schedules</a></td> </tr> <?php } } else { ?> <tr> <td>No Airlines Available</td> </tr> <?php } ?> </tbody> </table> NB:I have edited this to my liking.
  18. Click here You can see it in action .
  19. Found some little errors, fixed them, and they work a treat, thanks Jeff +1 to you.
  20. Where about should that go? In the function findSchedules? Or above that?
  21. Is it a possibility to get an example of how to seperate schedules by airline?
  22. I kinda also posted this for everyone, as it is an annoying problem, but I can still fly, just wanted to see if others have gotten this error too and fixed it.
  23. I am getting an error with Virgin Atlantic VA's custom kacars the error is: But it isn't, I just updated to the latest FSUIPC for FS9. It worked fine yesterday. And that has me baffled.
  24. $500-$750 for a hobby, you gotta be joking. To the person who said they dont think airlines would spend that much, is wrong, they spend more, because they want a better product and are usually custom made, or use asp.net, which requires windows hosting which costs a lot, and the licencing of the SQL server is a lot too, they also pay a lot for a dedicated server too. You are talking a couple of grand for what airlines want. @OP Your site is the most important, make and finish your site before you do anyone elses, that is how you sell yourself. If people see a bad web site for a web designer, they dont really want to go to him for a web site. Especially if they charge a lot for just a template, which is primarily html.
  25. Love the way you say your not telling us about your gender, but your avatar which I assume is you, shows you as a boy, unless you are a very strange women :P

×
×
  • Create New...