Last active
September 19, 2021 17:53
-
-
Save LinuxPlaner/46b325acf8db80945dc1ba62579638d9 to your computer and use it in GitHub Desktop.
Install vTiger CRM on Ubuntu 18.04 LTS
This file contains hidden or 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
Ping Me For vtger installing related service: | |
SMS: +8801610932753 | |
IMO: +8801610932753 | |
BiP: +8801610932753 | |
Viber: +8801610932753 | |
Signal: +8801610932753 | |
Discord: supanta saha#3868 | |
Telegram: https://t.me/LinuxPlaner | |
WhatsApp: https://wa.link/njuw4c | |
Skype: https://join.skype.com/weW8UDI0u7o5 | |
Email: [email protected] | |
sudo -i | |
apt-get update -y | |
apt-get upgrade -y | |
# Find this lines by crel+q and make the following changes: | |
file_uploads = On | |
allow_url_fopen = On | |
memory_limit =560m | |
post_max_size = 124M | |
max_execution_time = 600use vtiger; | |
FLUSH PRIVILEGES; | |
EXIT; | |
rm -rf /var/www/html/ | |
mkdir /var/www/html | |
wget https://excellmedia.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.1.0/Core%20Product/vtigercrm7.1.0.tar.gz | |
tar -xvzf vtigercrm7.1.0.tar.gz | |
cp -r vtigercrm /var/www/html/ | |
chown -R www-data:www-data /var/www/html/vtigercrm | |
chmod -R 755 /var/www/html/vtigercrm | |
systemctl enable apache2 | |
systemctl enable mariadb | |
sudo mysql -u root -p | |
CREATE DATABASE vtiger DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; | |
GRANT ALL ON vtiger.* TO 'tiger'@'localhost' IDENTIFIED BY 'tig@r2020';use vtiger; | |
FLUSH PRIVILEGES; | |
EXIT; | |
rm -rf /var/www/html/ | |
mkdir /var/www/html/ | |
wget https://excellmedia.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.1.0/Core%20Product/vtigercrm7.1.0.tar.gz | |
tar -xvzf vtigercrm7.1.0.tar.g | |
chmod -R 755 /var/www/html/vtigercrm | |
# create an apache virtual host file for vTiger CRM. You can create it with the following command: | |
nano /etc/apache2/sites-available/vtigercrm.conf | |
# Add the following lines: | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName example.com | |
DocumentRoot /var/www/html/vtigercrm/ | |
<Directory /var/www/html/vtigercrm/> | |
# for save press ctrl+x then press "y" then hit enter | |
a2dissite 000-default | |
a2enmod rewrite | |
systemctl restart apache2 | |
systemctl status apache2 | |
# brows URL http://example.com or localhost | |
Options FollowSymlinks | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog /var/log/apache2/vtigercrm_error.log | |
CustomLog /var/log/apache2/vtigercrm_access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment