Last active
November 5, 2020 18:41
-
-
Save LinuxlinkedBD/301febe995a1984ae8b0e2574479f28f to your computer and use it in GitHub Desktop.
Vtiger Installation and services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you need complete vtigercrm setup, ping me on below contacts: | |
#Telegram: https://t.me/linuxlinked | |
#email: [email protected] | |
#WhatsApp: https://wa.me/8801720903155 | |
#Skype:live:.cid.c0dc316b9d727d5e | |
#YouTube: https://youtu.be/MZRIS2QkPJc | |
############################################################################################ | |
#!/bin/sh | |
apt-get update -y | |
apt-get upgrade -y | |
apt-get install apache2 libapache2-mod-php7.2 php7.2 php7.2-cli php7.2-mysql php7.2-common php7.2-zip php7.2-mbstring php7.2-xmlrpc php7.2-curl php7.2-soap php7.2-gd php7.2-xml php7.2-intl php7.2-ldap php7.2-imap unzip wget -y | |
systemctl start apache2 | |
systemctl enable apache2 | |
wget https://excellmedia.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.1.0/Core%20Product/vtigercrm7.1.0.tar.gz | |
a2ensite vtigercrm | |
a2dissite 000-default | |
a2enmod rewrite | |
systemctl restart apache2 | |
systemctl status apache2 | |
# browse localhost or your ip address on browser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment