• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

AAC Znote recovery pass blank page

Morcega Negra

Banned User
Joined
Aug 4, 2015
Messages
102
Solutions
1
Reaction score
8
Code:
    $config['mailserver'] = array(
        'register' => false, // Send activation mail
        'accountRecovery' => true, // Recover username or password through mail
        'host' => "mail.******.com", // Outgoing mail server host.
        'securityType' => 'tls', // ssl or tls
        'port' => 25, // SMTP port number - likely to be 465(ssl) or 587(tls)
        'email' => '*****@*****.com',
        'username' => '*****@*****.com', // Likely the same as email
        'password' => '*****', // The password.
        'debug' => false, // Enable debugging if you have problems and are looking for errors.
        'fromName' => $config['site_title'],
    );
After typing on the site login user and email
and click on recover, a white screen appears and add the side menu.
and I do not get any emails, am I doing something wrong?
 
Set debug to true to enable smtp debug logs, they might explain what is going wrong with the email smtp service communication, such as authentication.
You also got to download PHPMailer and add it to the web stack:
  • For email registration verification and account recovery: PHPMailer Version 6.x, extracted and renamed to just "PHPMailer" in Znote AAC directory.
  • PHP extention curl for PHPMailer
 
Back
Top