• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install Live Helper Chat on OpenSUSE leap 42.3

{{postValue.id}}

To install Live Helper Chat on OpenSUSE leap 42.3

Live helper chat is a free, flexible, and open-source live support chat for your website. It is written in PHP and uses MySQL/MariaDB to store its data. It provides lots of features such as online user tracking, multiple chats, archive chat, user screenshots, file upload and much more. You can seamlessly install the Live Helper Chat on OpenSUSE Leap 42.3

Requirements
LAMP STACK

  • Apache
  • Mariadb
  • PHP7 (zypper install php-gd php-imap php-ldap php-pear php-xml php-xmlrpc php-mbstring php-mcrypt curl curl-devel php-bcmath)

Installing Live Helper Chat

First, you need to download the installation package for Live Helper Chat by using wget command in the following manner.

www.linuxhelp.com:~ # wget https://github.com/remdex/livehelperchat/archive/master.zip
--2017-11-23 14:14:46--  https://github.com/remdex/livehelperchat/archive/master.zip
Resolving github.com (github.com)... 192.30.255.113, 192.30.255.112
Connecting to github.com (github.com)|192.30.255.113|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://github.com/LiveHelperChat/livehelperchat/archive/master.zip [following]
--2017-11-23 14:14:47--  https://github.com/LiveHelperChat/livehelperchat/archive/master.zip
Reusing existing connection to github.com:443.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/LiveHelperChat/livehelperchat/zip/master [following]
--2017-11-23 14:14:47--  https://codeload.github.com/LiveHelperChat/livehelperchat/zip/master
Resolving codeload.github.com (codeload.github.com)... 192.30.255.120, 192.30.255.121
Connecting to codeload.github.com (codeload.github.com)|192.30.255.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9457875 (9.0M) [application/zip]
Saving to: ‘ master.zip’ 
100%[======================================> ] 9,457,875    623KB/s   in 17s    
2017-11-23 14:15:05 (540 KB/s) - ‘ master.zip’  saved [9457875/9457875]

And then, you need to extract the package in Apache document root by making use of the following command.

www.linuxhelp.com:~ # unzip master.zip -d /srv/www/htdocs/
Archive:  master.zip
5b14c6499a69512d476d063e48fa95e3195384a5
   creating: /srv/www/htdocs/livehelperchat-master/
 extracting: /srv/www/htdocs/livehelperchat-master/.gitignore  
  inflating: /srv/www/htdocs/livehelperchat-master/README.md  
  inflating: /srv/www/htdocs/livehelperchat-master/composer.json  
   creating: /srv/www/htdocs/livehelperchat-master/lhc_web/
 extracting: /srv/www/htdocs/livehelperchat-master/lhc_web/.gitignore  
  inflating: /srv/www/htdocs/livehelperchat-master/lhc_web/bower.json  
.
.
.
creating: /srv/www/htdocs/livehelperchat-master/lhc_web/var/tmpfiles/
  inflating: /srv/www/htdocs/livehelperchat-master/lhc_web/var/tmpfiles/.gitignore  
   creating: /srv/www/htdocs/livehelperchat-master/lhc_web/var/userphoto/
  inflating: /srv/www/htdocs/livehelperchat-master/lhc_web/var/userphoto/.gitignore  
  inflating: /srv/www/htdocs/livehelperchat-master/lhc_web/webpack.config.js  

Move inside the extracted directory by making use of the following commands.

www.linuxhelp.com:~ # cd /srv/www/htdocs/
www.linuxhelp.com:/srv/www/htdocs # ls -l
total 20
drwxrwxr-x  2 wwwrun www  4096 Oct  9 23:15 gif
-rwxrwxr-x  1 wwwrun www  2356 Mar 18  2017 info2html.css
drwxr-xr-x  3 root   root 4096 Nov 22 21:54 livehelperchat-master

And then, rename the folder.

www.linuxhelp.com:/srv/www/htdocs # mv livehelperchat-master livehelperchat

After that, you need to provide appropriate owner and file execution permissions by making use of the following commands.

www.linuxhelp.com:/srv/www/htdocs # chown -R wwwrun:www /srv/www/htdocs/livehelperchat/
www.linuxhelp.com:/srv/www/htdocs # chmod -R 775 /srv/www/htdocs/livehelperchat/

Now, you need to make an important configuration to your Apache .conf file. So run the following command to create the file.

www.linuxhelp.com:/srv/www/htdocs # vim /etc/apache2/conf.d/live.conf
And in that file, you need to make the following configuration. 
< VirtualHost *:80> 
DocumentRoot " /srv/www/htdocs" 
ServerName www.linuxhelp1.com
< Directory " /srv/www/htdocs/" > 
DirectoryIndex index.php
Options FollowSymLinks
AllowOverride All
Require all granted
< /Directory> 
< /VirtualHost> 

Once you are done with the configuration, you need to restart your apache service by making use of the following command.

www.linuxhelp.com:/srv/www/htdocs # systemctl restart apache

After that, you need to switch on to your browser and type http://yourdomainname and select the installed directory.

Browser
Browser 1

And now check if all the compatibility checking and other folder permissions are done.
Permission


In the step 2 of the setup, you need to configure the database settings and proceed further after you are done with it.
Database

Follow the previous action by creating admin credentials in application settings and proceed further.
admin


Now the installation is completed.
Install


You can now login with the credentials.
Login


Once you log in, you will be taken to the dashboard
Log

With this, the installation of Live Helper Chat on OpenSUSE Leap 42.3 comes to an end.

Tags:
michael
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are the basic requirements for Live Helper Chat?

A

The requirement of Live Helper Chat are given below,
LAMP STACK

Apache
Mariadb
PHP7 (zypper install php-gd php-imap php-ldap php-pear php-xml php-xmlrpc php-mbstring php-mcrypt curl

Q

Where to download the source package of Live Helper Chat?

A

use the link to get source package of Live Helper Chat,
"https://github.com/remdex/livehelperchat/".

Q

What is Live helper chat?

A

Live-helper chat is a free, flexible, and open-source live support chat for your website. It is written in PHP and uses MySQL/MariaDB to store its data. It provides lots of features such as online user tracking, multiple chats, archive chat, user screenshots, file upload and much more. It also contains XMPP notifications, GTalk, Jabber, OpenFire, Chrome extension, and Node.js support.

Q

How do I import a theme on LiveHelper Chat?

A

To import a theme on LiveHelper Chat Navigation to "System configuration" -> "Live help configuration" -> "Import new theme" in this window just upload a new theme.

Q

Integrate live helper chat into phpbb forum?

A

If you want to integrate live-helper chat into phpbb forum
you need place the Embed code in the overall_footer.html file of your phpbb template.

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Ryan ?
how to use visual traceroute tool

Am using traceroute command to check for the route. i got this tool while surfing. So pls help me out installation and usage of Visual traceroute tool.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.