Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Inside your module function create a variable to get the number from url passed through submission of the form. public function whatever() { $var = $_GET['name of the form']; } Then use your variable to pass it to ACARS DATA matching the flight number $sql="SELECT * FROM phpvms_acarsdata WHERE flightnumber = '$var'"; $flight = DB::get_row($sql); Then use $flight to show the columns <table> <tr> <td>Flight Number</td> <td><?php echo $flight->flightnumber ;?></td> </tr> </table>
  2. Have you checked the days of week in schedules? They have to be checked for all weekdays or they only show up on days that are checked.
  3. Not yet.
  4. Here is the TopPilot module. Hope you enjoy it. Install: 1. Download the repository at Github and unzip it in a desired location. 2. Upload files into coresponding folders on your website in the oreder. 3. Access it using <?php echo url('/toppilot') ;?>. 4. Enjoy! --------------------- Demo: www.parkho.ir --------------------- Support: Visit www.parkho.ir and fill out "Contact Me" form. I will get back to you as soon as possible
  5. I have added functions to give the ADMIN some records in Dashboard area. Install: -Download and replace PManagerData.class.php from Github. -Add the following lines to admin/dashboard.php <?php $days = Config::Get('PILOT_INACTIVE_TIME');?> <strong>Inavtive Pilots: </strong><?php echo count(PManagerData::InactivePilots());?> <strong>Pilots With No Pireps In <?php echo $days;?> Days: </strong><?php echo count(PManagerData::PastDuePireps());?> <strong>Pilots With No Pireps AT All: </strong><?php echo count(PManagerData::NoPireps());?> Screenshot: Cheers
  6. The reason is that I used a built-in function to format the currency and that function rounds up or down the results. If you don't want that do the following: Open airport_search.php and go to line 102 and change the following: <?php echo FinanceData::FormatMoney(Auth::$userinfo->totalpay) ;?> To the following: <?php echo Auth::$userinfo->totalpay ;?> There is an issue in phpvms_pilots table's structure. The "totalpay" field type is set to "FLOAT" changing the type to "VARCHAR" may resolve your issue.
  7. Thanks. Noted and fixed. You're more than welcome to add to the module if you want but as we have this conversation, this version is in "AS IS" status.
  8. Have you altered or changed codes in pilot_information.php? Seems like you're missing an open <?php tag. At this time the warning email in PM is manual. I will look into it in the next update.
  9. Decode JSON first pulling the data and use it on the map.
  10. None taken. We're all here to learn things and thanks for using my modules.
  11. Well then I guess my server is outdated as it generated the sql when I exported it!!!
  12. Your php version is "4.0.10.7" the SQL file you're trying to import into your server is higher version(5.4.31) and that's why you get the error.
  13. If you have coding knowledge I can point you to the spot and you can make the change.
  14. You're using older version of phpVMS. This module is designed to work with phpVMS 5.5X by simpilot and you're gonna have to upgrade to 5.5x eventually.
  15. You're welcome.
  16. The fspax.php is the module. Your pilots need the config file. The default skin, in pilot profile, there should be the link to get the config file.
  17. There is already a setup for fspassengers in phpVMS all you need is to give your pilots the config file to add to their clients. There is no live map for fspassengers as the software doesn't provide its live data.
  18. What email address did u use when you first installed phpVMS? If you used yahoo or gmail then that's where the problem comes. You'll need to use an email address from your server like "info@yourairline.com"
  19. Have u changed the port and smtp before changing the email address? If yes then change them back to what they where.
  20. When u installed phpVMS, what did u use as your email address? If you used gmail or yahoo then that's where the problem is. Use instead an email from your server like "info@yourairline.com"
  21. Open the SQL file and delete the following lines:
  22. I had this problem before and found out if you use gmail or yahoo as your installation email then emails won't send but using an email like "yourname@yoursite.com" will work just fine.
  23. You need phpVMS 5.5 by simpilot.
  24. I suggest you check to see if your host server has updated php version to 5.5 and if that's the case then you're most likely to upgrade phpVMS to 5.5x by Simpilot as the server might no longer support earlier versions.
×
×
  • Create New...