• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Mailer Error Znote AAC

monkeyy

Member
Joined
Aug 20, 2011
Messages
153
Reaction score
9
Hello guys,

I am trying to setup a mailserver with Znote AAC. I followed Znote's instruction in the config.php file and I downloaded the PHPMailer: https://github.com/PHPMailer/PHPMailer/archive/master.zip
I googled the SMTP info that I have to fill in @ the config.php file and I port forwarded port 587(tls)

However I get this error: Mailer Error: Extension missing: openssl

Does anyone know how to solve this ?
 
Solution
Stop apache server.

Edit PHP config file:
7578f2e06ecc497e90bb02fa22b4171f.jpg


Remove ( ; ) symbol from extentions.
23191b9ea7ef451a9de84a767ab74749.jpg


Save & start apache server.
:p its similar to your last problem, you need to enable openssl in your uniform server, check if it is at the same place where you enabled curl-php

  • Left menu, click link Server Security a new page opens Security Center.
  • Scroll down to section Server Certificate and Key (SSL)
  • To the right the link will display Unsecure click this link.
  • It takes you to page Server Certificate and Key Generation
these are the step I Found when I googled it
 
Last edited by a moderator:
I found it just like the last time ! You were right :D I just had to change
;extension=php_openssl.dll
into
extension=php_openssl.dll

Thanks again man!
 
Stop apache server.

Edit PHP config file:
7578f2e06ecc497e90bb02fa22b4171f.jpg


Remove ( ; ) symbol from extentions.
23191b9ea7ef451a9de84a767ab74749.jpg


Save & start apache server.
 
Last edited:
Solution
Back
Top