Skip to content

Installation with Apache 2.4

Ladybird Web Solution Pvt Ltd edited this page Mar 27, 2018 · 10 revisions

Before installing, make sure that Apache mod_rewrite is enabled and mod_security is disabled.

Then, unzip the source file

cd /home/user/
unzip acellemail.zip

Put Faveo source folder into your domain or subdomain's document root. For example, if your Faveo source is located at /home/user/support, you can configure Apache virtual host as follows, notice how DocumentRoot is setup

<VirtualHost *:80>
  ServerName yourhost.net
  DocumentRoot "/home/user/support/public"
  Options Indexes FollowSymLinks
  <Directory "/home/user/support/public">
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

Change the director/file's owner to Apache's running user, to make sure it has proper permission on your source files. If you are on Ubuntu, the default user that Apache runs under is www-data (and it is apache for CentOS/RedHat).

sudo chown www-data:www-data -R /home/user/support
sudo chmod 775 -R /home/user/support

Then restart Apache and go to the webapp's installation URL. For example

http://yourhost.net/install

Follow the web installation wizard to get Acelle installed on your own host.

Installation and Upgrade Guide

Administrator's Guide

Agent's Guide

Email Integration

Release & Upgrade Notes

Known Issues

Contribute & Feedback

Knowledge Base

Third Party Integration

Plugins

API

Clone this wiki locally