Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Ha ha ha! I've heard David( @simpilot) is working on a new version of phpVMS which I assume he will fix all that.
  2. Is your website coming up okay? If yes don't worry about that setting.
  3. In you "ACARSData.class.php" file add the following function: public static function GetFlightData($flightnum) { $sql = "SELECT * FROM phpvms_acarsdata WHERE flightnum = "$flightnum"; return DB::get_row($sql); } Now in ACARS table the flight number is not separated meaning there is only one column for flight number containing flight code and flight number combined together. In order for the function above to work, the flight code and flight nuber must be combined into one variable then passed to the function. Try the following inside your while-loop: $flightnum = {$code.$flight_num}; $flight = ACARSData::GetFlightData($flightnum); $aircraft = $flight->aircraft; echo $aircraft; This is not tested, so give it a shot I'm pretty sure it'll work.
  4. What email address do you use? If it's Ymail or Gmail then that's the issue!!
  5. Always!
  6. Do you have that module installed? If yes, I need the code inside its main page to modify it for u.
  7. Yes. It's possible.
  8. Anytime.
  9. Do you mean to reset ACARS map not show recent flights? If yes you need to go to "local.config.php" and look for the following: Config::Set('ACARS_LIVE_TIME', 720); By default it's set to show recent flights on ACARS map for 720 minutes. You can change that time to as low as 1 minute.
  10. You'll need to change the appropriate template file but as far as I remember that part, you will have to change it within the module itself meaning there is no template for it. I'll let u know where to look for it.
  11. 5.5x is a no go on PHP 7. I'm trying to install it but seems there is incompatibility almost every where.
  12. I suggest you do a clean install on a dev site and import all tables manually. Once you're sure the new system works, replace all old folders and tables with the new one. You may loose some little data but this way is a lot faster.
  13. Look into your PIREPS table for landing rate column and make sure its records are negative numbers. If they are positive numbers then the code doesn't work.
  14. I know for sure XACARS doesn't provide landing rate data and this code is working base on that. However, I'm not sure about FSACARS.
  15. Yeah! It's easy in mind but hard in reality . You're welcome.
  16. That requires a major core file change to read from the same table meaning you'll need to change all the functions that uses pilots table to read from the first DB table. Are you sure you want to do this? I suggest you update both tables manually then read them separately that's a lot easier to deal with. All you need to do is to import pilot's table from your first DB into the second one and whenever a new pilot is added to any tables, you update the other one accordingly. Another problem you'll face is the PIREPS which also needs to be updated since they use pilot id to save records. Like I said pretty much any module or function that uses pilot's table needs to be altered and that's gonna be a pain for you.
  17. okay put the <iframe> inside the following <div> <div style="text-align: center!important;"> </div>
  18. Hi friend, inside the <iframe> tag add the following: style="text-align: center!important;"
  19. The CodeShare you use, where did you get it from? I know for sure my FBSV1.1 module will direct the user to view "schedule_bids.tpl" after bidding but the default dispatch doesn't do that.
  20. What do you mean "will be as normal flight"? When you bid on a schedule the module will use "schedule_bids.php" to show you have bidded on a flight. Please clarify exactly what you have in mind.
  21. You'll need to rewrite the whole thing for schedules in separate tpl but at the end when bidding it will use the default function to do so and I wouldn't suggest you change any core files in the system.
  22. It is possible but you're gonna have to request that in paid services or wait for someone like me to do it for free.
  23. Take a look at my website please. I fixed the drawers issue but for the sidebar pm I still need to figure out how the user can add/edit warning/welcome messages since I want them to send the email with details.(eg pilot name current time etc.)
  24. Hi Ray, the reason the sidebar drawers open is the Javascript conflict of the module which I will fix in next version soon. Also, the sidebar pm is under development for next version and is not yet published. Thank you for your support of my modules. It definitely helps me keep up my work.
×
×
  • Create New...