Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. I'm 95% sure that your SMTP port is 25 cuz I have another website for my business on the damn plesk and I'm using outlook and the port there is "25".
  2. Are you using any email clients such as "Outlook" to receive your emails? If yes. you can get the port from there. If not, in plesk email account you can get the email client configuration.
  3. There should be a solution to this. Do you know what port your email service uses?
  4. There it is. it's the damn plesk. call them up.
  5. And was your previous host plesk as well?
  6. And was it sending emails on PIREP submit before?
  7. I don't know about plesk and mailerphp but cpanel doesn't have such option and is working just fine. You may want to check with you host provider see if they have any idea about this but I think if you have email accounts and email service activated on your website then there shouldn't be any problems. Have you been using phpVMS before or this is your first time?
  8. True.
  9. Wait let me check my cpanel.
  10. and still no email?
  11. in the settings table you will need the email address saved as ADMIN_EMAIL. if it's not there the eamil won't be sent.
  12. I don't recall phpMailer
  13. in "phpvms_settings" table?
  14. Open you DB(Data base, click on "phpvms_settings" table and make sure the email address you saved is there. If it's there then open core/common/PIREPData.class.php go down around line 753 where you see the following and make sure its there: if (Config::Get('EMAIL_SEND_PIREP') === true) { # Send an email to the admin that a PIREP was submitted $sub = "A PIREP has been submitted by {$pilotcode} ({$pirepdata['depicao']} - {$pirepdata['arricao']})"; $message = "A PIREP has been submitted by {$pilotcode} " ."({$pilotinfo->firstname} {$pilotinfo->lastname})\n\n" ."{$pirepdata['code']}{$pirepdata['flightnum']}: {$pirepdata['depicao']} to {$pirepdata['arricao']}\n" ."Aircraft: {$pirepdata['aircraft']}\n" . "Flight Time: {$pirepdata['flighttime']}\n" ."Landing Rate: {$pirepdata['landingrate']}\n"."Filed using: {$pirepdata['source']}\n\n" ."Comment: {$comment}\n\n" ."Click to approve this pirep (admin must be signed in):\n" .adminurl('/pirepadmin/approvepirep/'.$pirepid); $email = Config::Get('EMAIL_NEW_PIREP'); if (empty($email)) { $email = ADMIN_EMAIL; } Util::SendEmail($email, $sub, $message); } And let us know what you do.
  15. Are you using a free host? cause some web hosts doesn't allow sending emails to info@yourdomain.com for example.
  16. I use easy php and I had the same problem with the newer version but the older version was working just fine. I think it has something to do with the php version and mySQL. Try using the older version of "ëasy php".
  17. Parkho

    Fuel leftover

    That's correct. Real airlines would have some fuel left in their AC tanks cause they're required to have fuel for at least 45 min flight time for emergencies when they land at their destination.
  18. Try this: <?php MainController::Run('News', 'ShowNewsFront', 5); ?>
  19. What if someone uses fspax as their acars?
  20. If a bid is placed on an schedule, it won't get affected when you edit the schedule. In the .cvs file you can edit the route bid column but keep in mind to insert the bid id correctly cause when you submit a PIREP for the route the bid section won't get updated if the bid id is incorrect.
  21. Take a look here at the guide it might help. http://forum.phpvms.net/topic/7930-kacars-free-guide/
  22. I remember I wrote a piece of code for someone to award their pilots (raising their bank) on good landings. I placed it in code snippet section and yes if you can record those data then it would be possible to implement it into phpvms to calculate those and set the pilot's rank. But the question is are you willing to pay for this module since it requires a quiet amount of time to make? About the aircraft maintenance module, the answer is yes as I have created that for someone on the forum and I'm at final stages of finishing it. Cheers
  23. Try changing your email address and send a manual pirep.
  24. Removing PIREPS will result in some parts not showing correct data. Instead, you can change the codes not to show all PIREPS but some.
  25. I don't think I'll be spending time on v2.0 but I will on v3.0
×
×
  • Create New...