Jump to content

Parkho

Moderators
  • Posts

    1375
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Parkho

  1. Hi, I tried again and got the following error: Fatal error: Uncaught Error: Call to undefined function mysql_get_server_info() in /home/parkhoi1/public_html/test.parkho.ir/install/Installer.class.php:365 Stack trace: #0 /home/parkhoi1/public_html/test.parkho.ir/install/install.php(97): Installer::RegisterInstall('2.1.936\n') #1 {main} thrown in /home/parkhoi1/public_html/test.parkho.ir/install/Installer.class.php on line 365 Could it be again the missing built-in function on my server? Thanks Update: I ignored the error and opened the site it comes up okay but hitting "Admin Center" will give me the following error on "Dashboard" page: Fatal error: Uncaught Error: Call to undefined function curl_init() in /home/parkhoi1/public_html/test.parkho.ir/core/classes/CodonWebService.class.php:58 Stack trace: #0 /home/parkhoi1/public_html/test.parkho.ir/admin/modules/Dashboard/Dashboard.php(91): CodonWebService->__construct() #1 /home/parkhoi1/public_html/test.parkho.ir/admin/modules/Dashboard/Dashboard.php(37): Dashboard->CheckForUpdates() #2 /home/parkhoi1/public_html/test.parkho.ir/core/classes/MainController.class.php(218): Dashboard->index() #3 /home/parkhoi1/public_html/test.parkho.ir/admin/index.php(82): MainController::RunAllActions() #4 {main} thrown in /home/parkhoi1/public_html/test.parkho.ir/core/classes/CodonWebService.class.php on line 58
  2. Hi, The hosting company said they were to enable (GD) in next 24 hrs, so I will wait until then and try again. Cheers
  3. Aha! That might be it cause a while ago I was trying to install phpVMS on php 7 but the built-in functions wouldn't work, so I had to call my host and they said they fixed it for me which they did. I think I'm gonna have to call them back since I don't think I have access to enable GD myself. I'll let u know.
  4. Honestly, I don't know what that is!!!??!?
  5. Hello Nabeel, I just installed it on my site and at the "Finish" button I got the following error: Fatal error: Uncaught Error: Call to undefined function imagecreatefrompng() in /home/parkhoi1/public_html/test.parkho.ir/core/common/PilotData.class.php:998 Stack trace: #0 /home/parkhoi1/public_html/test.parkho.ir/core/common/RegistrationData.class.php(122): PilotData::generateSignature(1) #1 /home/parkhoi1/public_html/test.parkho.ir/install/Installer.class.php(245): RegistrationData::AddUser(Array) #2 /home/parkhoi1/public_html/test.parkho.ir/install/install.php(93): Installer::SiteSetup() #3 {main} thrown in /home/parkhoi1/public_html/test.parkho.ir/core/common/PilotData.class.php on line 998 I'll try to see if I can fix it. Cheers
  6. Sorry! This add-on is only available for 5.5x by Simpilot.
  7. I don't think that's doable since the given variable has to be the airline code and since the pilot is registered only with one airline. Another approach would be to loop through the PIREPS and pull out the pilots who submitted the PIREP. In that case you won't be able to show all your pilots cause some of them are registered but never submitted any reports.
  8. As long as the client provide landing rate, it doesn't matter which one the code works just fine.
  9. Please specify version of your host's PHP and your phpVMS. What i think is that your host upgraded their PHP version.
  10. Parkho

    404 Errors

    Are having install issues or want to reach doc's page?
  11. Assuming they're both on the same host, you'll need to create a subdomain for your alliance airline and create a separate DB for it. Then you'll be able to read data for your alliance airline.
  12. Check to see the list of schedules doesn't show as well. If that's the case, it's ajax and javascript issue.
  13. Please be more specific so that we can better help you.
  14. Okay. I don't know digitalocan and if it's free or not but you need to revert back your local.config.php to default meaning NOT TO USE config codes from app.config.php. Then use the email from your host server. If that didn't resolve the issue then replace local.config.php with the default or do a fresh install of phpVMS.
  15. Did you add the config codes from app.config .php and use your server email? If yes try removing the ADDED config codes from your local.config.php and use the server email. I'm assuming you're not on a free host btw.
  16. It must be the email from your server like info@yourwebsite.com or it won't send.
  17. Ha ha ha! I've heard David( @simpilot) is working on a new version of phpVMS which I assume he will fix all that.
  18. Is your website coming up okay? If yes don't worry about that setting.
  19. 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.
  20. What email address do you use? If it's Ymail or Gmail then that's the issue!!
  21. Do you have that module installed? If yes, I need the code inside its main page to modify it for u.
×
×
  • Create New...