- PHP, MySQL and Apache. For Windows development XAMPP is recommended (FileZilla, Mercury and Tomcat not needed). Hosted on a LAMP server in production.
- PHPMailer installed with Composer.
Create a config.php file in the includes folder following the given template:
<?php
return array(
'servername' => 'localhost',
'dBUsername' => 'admin',
'dBPassword' => '',
'dBName' => 'users',
'allowedDomain' => 'example.com',
'mailerUsername' => 'noreply@example.com',
'mailerPassword' => '',
);
⚠ Ensure that none of the files in
includesare publicly accessible on your webserver