In most hosting accounts these extensions are enabled by default. But you should consult with your hosting provider.
Login to cPanel and create a brand new database that will be used for Perfex CRM installation.
You can check this tutorial how to setup MySQL database in cPanel if you are not familiar with how to configure database.
Upload the files to server folder where Perfex CRM will be installed.
Assume that you uploaded the files to “crm” folder, navigate to eq. http://yourdomain.com/crm/install – Keep in mind that you need to adjust the URL based on where you uploaded the files. If you are installing on subdomain named eq crm you need to access the url like http://crm.yourdomain.com/install.
You will need to pass the requirements to install Perfex CRM.
If all server requirements passed click Go to Files/Folders Permissions otherwise consult with your hosting provider to fix/enable them.
If all permissions are passed click Setup Database otherwise you need to set 755 permissions for folders and 644 for files.
Enter your database credentials you configured in step 1 (configure database) -
Avoid use of single(‘) and double(“) quotes in your password
Click Check Database and if the database connection is successfully you will be passed to the latest step otherwise please re-check your credentials and hostname. (usually hostname is localhost but you should check with your hosting provider or cPanel)
Configure admin credentials and options
If you need help installing dont hesitate to open support ticket
You will need to setup the cron job controller for Perfex
Cron job will be used for sending survey emails, auto update invoice statuse eq. if the invoice is overdue etc.
How to setup Cron Job?
Login to your cPanel and navigate to Cron jobs
Add the following settings :
wget -q -O- wget -q -O- http://yourdomain.com/crm/cron/index
Change the url according to your base url where Perfex CRM is located. You can check your cron url in Setup->Settings->Cron Job
Example if its on root domain you need to type only http://yourdomain.com/cron/index
If its on subfolder /crm you will need to type http://yourdomain.com/crm/cron/index
Cron is required to be setup for Perfex CRM
My server does not support wget command?
If your server does not support wget command you try one of the following commands:
php /home/username/public_html/installation_folder/index.php cron/index >> /dev/null
php /home/username/public_html/installation_folder/index.php cron/index
If that doesn’t work, it probably means you don’t have the package php5-cli installed. On debian / ubuntu you can install this package as follows:
sudo apt-get install php5-cli
If you are not able to install packages, you can specify your path to php try the following command:
/usr/local/bin/php -f /home/username/public_html/installation_folder/index.php cron indexReplace username and installation_folder to fit for your path. If none of commands are not working you can use some free cron job service like https://www.easycron.com. Mostly the free cron job services have limit to execute each 10 minutes but it will work good too with Perfex CRM.
Setup your desired date format, will be using all over the application. This option is located in Setup->Settings-> Localization
Navigate to Setup -> Settings -> Email and setup your SMTP email, this will be your base email. You need to setup previously email account from your cPanel account.
Check all the email templates, setup signature also in Setup -> Settings -> Email this signature will be using on all email representing your company
If you are getting 404 not found after you install Perfex CRM this means that you need to adjust the main .htaccess for Perfex CRM.
First make sure that the .htaccess file exists in the main folder where you installed Perfex CRM. If you are using any OS make sure you have enabled hidden files on your MAC.
Make sure that you have mod_rewrite enabled in your server.
NOTE: Only apply the following suggestions if you are getting 404 error not found, the default Perfex CRM .htaccess file should work good on most servers.
This .htaccess may apply if you installed Perfex CRM next to WordPress installation and you are auto redirected to WordPress default 404 Page.
RewriteEngine on RewriteBase /foldername/ RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L,QSA] AddDefaultCharset utf-8
RewriteEngine on RewriteBase / RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L,QSA] AddDefaultCharset utf-8
RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ subfolder/index.php?/$1 [L,QSA] AddDefaultCharset utf-8
RewriteEngine on RewriteBase / RewriteCond $1 !^(index\.php|resources|robots\.txt|static) [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/?$1 [L,QSA]
Other solutions:
Perfex CRM admin area is separated from the customers area. Often happen Perfex CRM buyers to get confused and trying to login as admin in the customers area.
Admins needs to login at yourdomain.com/crm/admin
Customers login at yourdomain.com/crm/clients
Hope this will help you.