I need help with installing mailwhizz on centos 7

unstoppablegeek

New Member
I tried to google how to install mailwhizz on centos 7. I am not finding anything. I downloaded the zip file from codecanyon. I created a mysql database. That is as far as I have gotten. Please help.
 
I have the LEMP stack already installed. This doesn't tell me how to install mailwhizz on my centos 7. The directions to go to mywebserver.com/install aren't accurate. I need step by step instructions on how to install mailwhizz.
 
On your webserver folder - you have mailwizz latest folder files with Install folder.

Run it on your browser /install and it will take you step by step there.
 
Create virtual webserver for mailwhizz server

<VirtualHost x.x.x.x:80>
ServerName mailwhizz.example.com
ServerAlias mailwhizz.example.com
DocumentRoot /var/www/html/mailwhizz/
ErrorLog /var/log/httpd/mailwhizz_error.log
CustomLog /var/log/httpd/mailwhiz_requests.log combined
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /var/www/html/mailwhizz >
AllowOverride None
Require all granted
Options Indexes FollowSymlinks
</Directory>
AddType application/x-httpd-php .php
</VirtualHost>

Create the mysql database
Create the mysql mailwhiz user
Grant permissions to the mailwhiz mysql user
Then
Setup SMTP server
Setup Bounce Server
Setup Feeback Loop
Setup Domain and DKIM...
Keep going...
 
Back
Top