Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Alex, The most common issue with schedules not showing up is the days schedules are set for, so make sure of that. If you're getting error messages please post them here. If you don't get errors and you'll see schedules listed up partially then I think the issue goes back to days of week. If you have uploaded a .csv file with your schedules, there might be some fault data inserted into DB. I suggest you re insert schedules table. The last think I would suggest to you is to reinstall phpVMS.
  2. Remove the following from core/templates/page_content.tpl <h1><?php echo $pagename;?></h1>
  3. Please make your post in English.
  4. If you want this on your front page, add it to your frontpage_main.tpl
  5. If you type into your address bar the following link. This will show you a list of your bids and an option to remove them.
  6. If you want your pilots to be in order by their pilot id: Open PilotData.class.php in core/common and add the following before the last closing bracket: public function pilots() { $sql = "SELECT * FROM phpvms_pilots ORDER BY pilotid ASC"; return DB::get_results($sql); } Then open "pilots_list.tpl" in core/templates and add the following right after the "foreach()" loop starts: $allpilots = PilotData::pilots(); This will sort the list by pilot id. In case you want this to be sorted by some other columns, simply change the column name in the following: $sql = "SELECT * FROM phpvms_pilots ORDER BY pilotid//This is your column name ASC"; Cheers
  7. You can create a tpl file and get it in your module function using "Template::get('/xxxx.tpl')". Inside your template you can write any texts using "<p></p>" tag.
  8. MainController::run() command needs 2 variables and a number to return the results. Yours had only one variable. Pfinance is the first which is the module file now the second one is the functions inside the module like index...etc, so index would be a function inside the module file "PFinance" in this case number doesn't really matter, so you could put any numbers.
  9. Try this: <?php MainController::Run('Pfinance','index', 2) ;?>
  10. Try kACARS free. That's the best ever.
  11. Parkho

    Error

    Actually, I get this all the time regardless of a click or double click.
  12. It's not that complicated as long as you know what you want. If you want the results for each flight individually, you can use the pirep gross and revenue variable and basically show them in a table for a particular pilot. If you want to show the costs for each flight then you'll have to go deeper and pull some more data out using expenses and finance tables. If you need to calculate the fuel cost you can multiply the fuel burned by the fuel cost and get that data. it really depends on what you want to do.
  13. Well. If you want me to create a module for you then it'll cost you but if you wanna start the module yourself then I'll help you out finishing it.
  14. Parkho

    Error

    Hi, Any body knows what this error is? I get it when I hit accept button in pireps. Thanks
  15. Of course it's possible.
  16. Some how those schedules haven't been updated on pirep submission. Change "bidid" column in schedules table for those routes from "1" to "0".
  17. The same website as FSPAX on the left navigation panel click on "MORE DOWNLOADS" and change the search method from "All" to "pay load" and write in the next box "737" it'll come up.
  18. Yep. Works like a charm, thanks
  19. Yes, but if you want you can use the demo version for free but you'll be restricted to fly from one airport only. BTW, you'll need to actually fly with the aircraft in FSPAX before you can actually pull that data out.
  20. I would suggest FSPAX and Wikipedia. Sorry for m the mistype. After all, English is my second language.
  21. Okay. I implemented the code and echoed $title but nothing showed up. BTW, I had to change " $xml->pirep->log " to " $pirep->log " since I used it in PIREP details in admin view reports. Please tell me where I'm wrong. Thanks
  22. Thanks a lot. I'll give it a shot to see what will happen.
  23. That's correct but is there a way to pull that aircraft from the recorded flight like the below log line?
  24. I want to get the aircraft used in kACARS client and insert it into PIREPS table aircraft column or basically update the aircraft column of PIREPS table.
  25. Thanks. What i meant was for kACARS client and its aircraft variable.
×
×
  • Create New...