• Get In Touch
February 15, 2017

How to Install Live Helper Chat on CentOS 7

Want your very own server? Get our 1GB memory, Xeon V4, 25GB SSD VPS for £10.00 / month.
Get a Cloud Server

Live Helper Chat is a free and open source chat web application. It is written in PHP and uses MySQL/MariaDB to store its data. Live Helper Chat can be easily added to a website to engage with potential customers and also to provide support for existing users. It provides many features such as Co-browsing, unlimited operators, user screenshots, online user tracking, chat archiving, file upload, drag and drop any much more. It provides desktop clients for operators and also supports XMPP. It is widely used on many websites.

In this tutorial, we will install Live Helper Chat on CentOS 7.

Requirements

Live Helper Chat does not require any special hardware requirements. It can be installed on servers with a small amount of RAM. All the required dependencies will be installed throughout the tutorial. You will need a minimal installation of CentOS 7 with root access on it. If you are logged in as a non-root user, you can run sudo -i to switch to root user.

Installing Live Helper Chat

Before installing any package it is recommended that you update the packages and repository using the following command.

yum -y update

Once you have your system updated, you can proceed to install the LAMP stack. Start the LAMP installation by installing Apache web server and MariaDB, which is a fork of MySQL using the following command.

yum -y install httpd mariadb-server mariadb

Live Helper Chat can be installed on any version of PHP greater than 5.4. But as PHP 5.4 has reached the end of life. You can install PHP 7 for high performance. PHP 7 is not included in default YUM repository, hence you will need to add the Webtatic repository in your system. Webtatic repository requires EPEL repository to work. Run the following command to install EPEL repository.

yum -y install epel-release
yum -y update

Now install Webtatic repository using the following commands.

rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y update

To install PHP 7.1 and all the required PHP modules, run the following command.

yum -y install php71w php71w-mysql php71w-cli php71w-gd php71w-bcmath php71w-pdo php71w-mbstring

Make sure that you are using only one of the PHP versions mentioned above. Once you have PHP installed, you can check the version of PHP using the following command.

php -v

You should get output similar to this.

[root@liptan-pc ~]# php -v
PHP 7.1.1 (cli) (built: Jan 19 2017 20:35:16) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies

You will also need to enable Mod_rewrite in Apache web server by editing /etc/httpd/conf/httpd.conf using your favorite text editor.

nano /etc/httpd/conf/httpd.conf

Find the following line.

<Directory "/var/www/html">
AllowOverride None

Change it to AllowOverride All.

Now start the Apache web server and enable it to start at boot time using the following command.

systemctl start httpd
systemctl enable httpd

To start MariaDB and enable it to start at boot time using the following commands.

systemctl start mariadb
systemctl enable mariadb

Now run the following commands to secure your MySQL or MariaDB installation.

mysql_secure_installation

It will run a small script which asks you to provide the root password for MariaDB. As we have just installed MariaDB, the root password is not set, just press enter to proceed further. It will ask you if you want to set a root password for your MariaDB installation, choose y and set a strong password for the installation. It will also ask you for removing test databases and anonymous users. Most of the questions are self-explanatory and you should answer yes or y to all the questions.

To create a database we will need to login to MySQL command line first. Run the following command for same.

mysql -u root -p

This will prompt you for the password, provide the root password of MySQL which you have set earlier. Now run the following query to create a new database for your Live Helper Chat installation.

CREATE DATABASE livechat_data;

The above query will create a database named livechat_data. For the database, you can use any name you prefer at the place of livechat_data. Make sure that you use semicolon at the end of each query as the query always ends with a semicolon. Once the database is created you can create a new user and grant all the permissions to the user for the database. Using root user is not recommended for the databases. To create a new database user, run the following query.

CREATE USER 'livechat_user'@'localhost' IDENTIFIED BY 'StrongPassword';

The above query will create a user with username livechat_user. You can use any preferred username instead of livechat_user. Replace StrongPassword with a strong password. Now provide the appropriate privileges to your database user over the database you have created. Run the following command.

GRANT ALL PRIVILEGES ON livechat_data.* TO 'livechat_user'@'localhost';

Now run the following command to immediately apply the changes on the database privileges.

FLUSH PRIVILEGES;

Exit from MySQL prompt using exit command.

As we have all the dependencies ready, we can now download the install package from the Live Helper Chat site.

cd /tmp
wget https://github.com/remdex/livehelperchat/archive/master.zip

The above command will download the latest installer archive. Extract the archive using the following command.

unzip master.zip -d /var/www/html/

If you don’t have unzip installed, you can run yum -y install unzip. The above command will extract the files in web root directory of Apache under livehelperchat-master directory.

Now create a virtual host for the chat application. Run the following command for same.

nano /etc/httpd/conf.d/chat.yourdomain.com.conf

Paste the following lines into the file.

<VirtualHost *:80>
    ServerAdmin me@liptanbiswas.com
    DocumentRoot "/var/www/html/livehelperchat-master/lhc_web"
    ServerName chat.yourdomain.com
    ServerAlias www.chat.yourdomain.com
    ErrorLog "/var/log/httpd/chat.yourdomain.com-error_log"
    CustomLog "/var/log/httpd/chat.yourdomain.com-access_log" combined
</VirtualHost>

Replace chat.yourdomain.com with any domain or sub-domain you want to use to access the application. Save the file and exit from the editor. Run the following command to restart your Apache server.

systemctl restart httpd

Now you will need to provide the ownership of the application to web server user using the following command.

chown -R apache:apache /var/www/html

You may also need to allow HTTP traffic on port 80 through the firewall if you are running one. Run the following commands for same.

firewall-cmd --zone=public --permanent --add-service=http
firewall-cmd --reload

Now complete the installation using a web browser. Go to the following link using your favorite web browser.

http://chat.yourdomain.com

You will see the system requirement check interface.

HP_NO_IMG/data/uploads/users/e840080c-7322-4497-85c0-150182bd4c02/548622954.png” alt=”” />

If you have followed this tutorial correctly you will see that you have all the requirements installed and configured. Click Next button to proceed further.

HP_NO_IMG/data/uploads/users/e840080c-7322-4497-85c0-150182bd4c02/132462441.png” alt=”” />

In this step of the installation, you will need to provide the username and password of the database user which we have created earlier. Leave the default value of the host and port fields. Provide the name of the database and click Next to go to the next step.

In this final step, you will need to provide the administrator credentials.

HP_NO_IMG/data/uploads/users/e840080c-7322-4497-85c0-150182bd4c02/1202659455.png” alt=”” />

Provide the name of the administrator and default department. Finally, click Finish button to finish the installation of the Live Chat Helper. Now you can access the frontend of the application by going to the following URL.

http://chat.yourdomain.com

You will see the default form as shown below.

HP_NO_IMG/data/uploads/users/e840080c-7322-4497-85c0-150182bd4c02/1061643256.png” alt=”” />

This form is totally configurable. It can be configured by going to the site administration dashboard which can be accessed on the following link.

http://chat.rackvoucher.com/index.php/site_admin/user/login

You will see the following interface.

HP_NO_IMG/data/uploads/users/e840080c-7322-4497-85c0-150182bd4c02/714969303.png” alt=”” />

Live Helper Chat is now ready to configure and use.

Conclusion

In this tutorial, we have learned how to install Live Helper Chat on CentOS 7. You can now easily install Live Helper Chat to add the chat box on your to engage potential customers as well as to provide support to existing customers.

Want your very own server? Get our 1GB memory, Xeon V4, 25GB SSD VPS for £10.00 / month.
Get a Cloud Server

Share this Article!

Related Posts

Node.js Authentication – A Complete Guide with Passport and JWT

Node.js Authentication – A Complete Guide with Passport and JWT

Truth be told, it’s difficult for a web application that doesn’t have some kind of identification, even if you don’t see it as a security measure in and of itself. The Internet is a kind of lawless land, and even on free services like Google’s, authentication ensures that abuses will be avoided or at least […]

Node.js and MongoDB: How to Connect MongoDB With Node

Node.js and MongoDB: How to Connect MongoDB With Node

MongoDB is a document-oriented NoSQL database, which was born in 2007 in California as a service to be used within a larger project, but which soon became an independent and open-source product. It stores documents in JSON, a format based on JavaScript and simpler than XML, but still with good expressiveness. It is the dominant […]

Using MySQL with Node.js: A Complete Tutorial

Using MySQL with Node.js: A Complete Tutorial

Although data persistence is almost always a fundamental element of applications, Node.js has no native integration with databases. Everything is delegated to third-party libraries to be included manually, in addition to the standard APIs. Although MongoDB and other non-relational databases are the most common choice with Node because if you need to scale an application, […]

Node.Js Vs Django: Which Is the Best for Your Project

Node.Js Vs Django: Which Is the Best for Your Project

Django and NodeJs are two powerful technologies for web development, both have great functionality, versatile applications, and a great user interface. Both are open source and can be used for free. But which one fits your project best? NodeJs is based on JavaScript, while Django is written in Python. These are two equally popular technologies […]

Nodejs Vs PHP:  Which Works Best?

Nodejs Vs PHP: Which Works Best?

Before getting into the “battle” between Node.js and PHP we need to understand why the issue is still ongoing. It all started with the increased demand for smartphone applications, their success forcing developers to adapt to new back-end technologies that could handle a multitude of simultaneous requests. JavaScript has always been identified as a client-side […]