• 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 Precurio CRM on CentOS 7.5

  • 00:36 rpm -q centos-release
  • 00:55 mysql -u root -p
  • 02:08 wget https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
  • 02:20 unzip precurio.zip
  • 02:31 mv precurio /var/www/
  • 02:41 chown -R apache:apache /var/www/precurio
  • 02:54 chmod -R 755 /var/www/precurio
  • 03:10 vim /etc/httpd/conf.d/precurio.conf
  • 04:14 systemctl restart httpd
{{postValue.id}}

Installation of Precurio CRM on CentOS 7.5

Precurio is an affordable Intranet solution that focuses on providing its users with unique intranets and all the features they need. Precurio is available for purchase and you can choose from their packages depending on your needs. This tutorial covers the installation of Precurio CRM on CentOS 7.5.

Requirements for Precurio CRM:

Apache

MariaDB

PHP and its modules

yum install -y php php-mbstring php-mcrypt php-xml php-gd php-curl php-cli php-soap php-mysql php-zip php-ldap

Installation procedure

Before you begin, check your version CentOS by using the following command.

[root@linuxhlep ~]# rpm -q centos-release
centos-release-7-5.1804.5.el7.centos.x86_64

configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

[root@linuxhlep ~]# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.60-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database precurio;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user 'preuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on precurio.* to 'presuer'@localhost;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> Ctrl-C -- exit!
Aborted

Once the database configuration is done, you shall download the Precurio CRM with the help of the following command.

 [root@linuxhlep ~]# wget https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
--2019-04-27 15:28:27--  https://excellmedia.dl.sourceforge.net/project/precurio/version%202.1/precurio.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16132056 (15M) [application/octet-stream]
Saving to: ‘precurio.zip’

100%[==========================================================>] 16,132,056   628KB/s   in 29s    

2019-04-27 15:29:03 (544 KB/s) - ‘precurio.zip’ saved [16132056/16132056]

Once the download is completed extract the download package using unzip command.

 [root@linuxhlep ~]# unzip precurio.zip
Archive:  precurio.zip
   creating: precurio/
  inflating: precurio/.htaccess      
   creating: precurio/application/
   creating: precurio/application/admin/
   creating: precurio/application/admin/controllers/
  inflating: precurio/application/admin/controllers/ApprovalController.php  
  inflating: precurio/application/admin/controllers/BackupController.php  
  inflating: precurio/application/admin/controllers/BaseController.php  
  inflating: precurio/application/admin/controllers/BugController.php  
.
.
.
  inflating: precurio/public/uploads/tmp/Thumbs.db  
 extracting: precurio/public/uploads/upgrade.png  
   creating: precurio/public/uploads/workflow/
  inflating: precurio/public/uploads/workflow/Thumbs.db  
  inflating: precurio/README.txt     
  inflating: precurio/UPGRADE.txt  

Move the Precurio CRM directory to apache root directory.

 [root@linuxhlep ~]# mv precurio /var/www/

Set the ownership and permission for Precurio CRM by using the following command.

 [root@linuxhlep ~]# chown -R apache:apache /var/www/precurio
 [root@linuxhlep ~]# chmod -R 755 /var/www/precurio

Configure the virtualhost for accessing the Precurio CRM.

 [root@linuxhlep ~]# vim /etc/httpd/conf.d/precurio.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/precurio
<Directory /var/www/precurio>
Allowoverride all
allow from all
</Directory>
</virtualhost>

Restart the Apache service by using the following command.

[root@linuxhlep ~]# systemctl restart httpd

You shall now switch to your browser and enter your domain name. snap1

Configure the general settings and click ‘Save’ snap2

Configure the database and check the connection click ‘Ok' snap3 Configure the live server. snap4 Configure the mail settings. snap5 Verify the module setting and click 'Finish.' snap6 Configure the Admin user account setup. snap7 Once all the step is completed click here to login snap8 The installation is complete. login using admin credentials from here. snap9 This is the dashboard of Precurio CRM. snap10 With this, the method to install Precurio CRM on CentOS 7.5 comes to an end.

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are the features of Precurio?

A

The features of Precurio are
Content Management
Team Management
Discussion Forums
Events Management

Q

What is Precurio and its purpose?

A

Precurio is an open platform for collaborative business solutions that deliver exceptional value in terms of cost savings and benefits to customers. It provides a single platform for communities of common interests, regardless of location or traditional department structures. It empowers employees to manage projects and organize a special interests group. teams, departments, and office locations can interact and stay up-to-date.

Q

How to configure the php.ini in ubuntu 18.10 for Precurio?

A

Enter into #vim /etc/php/7.2/apache2/php.ini

Q

Whether its Source Code Available or not for Precurio?

A

We provide our customers with the source code, so you can customize your intranet portal and even add new modules. No other enterprise-grade solution is this flexible.

Q

What is the pre-requirement to install Precurio on Ubuntu 18.10?

A

Precurio CRM requires a web server to functionally based on LAMP setup on your system and also with following required PHP modules

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 Gibbson ?
How do i run both nginx and apache in same instance on centos

Hi...,

my server is based centos operating system and my webserver is already running on Apache.... i need to run both apache and nginx on same instance ... please help me to implement this concept...

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.