Setting up an SSL connection

SSL connections will provide you with a more secure connection, encrypting information so that you can avoid other people sniffing into your sent/received packets.

If you are using a Feng Sky installation, please contact your Account Executive or the Support Team to request SSL activation.

On the other hand, if you are using Feng Office within your server, you must do as following:

  1. Install the SSL certificate in your server
  2. Then go to FENG_ROOT/config/config.php file and edit the ROOT URL and add https there so that it looks like:
    define('ROOT_URL', 'https://myfengoffice.somewhere.com');
  3. Lastly, you have to edit your .htaccess file and add the following lines:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}