Outlook PST Repair
if you see a error message: Cannot start microsoft outlook. Cannot open the outlook window. The set of folders cannot be opened. The information store could not be opened. Errors have been detected in the file outlook.pst. Then it's time to use the MS Office scanpst...
DISPLAY REMAINING LIMITED ENTRY OF GRAVITY FORMS
if you already enable Gravity form Limit number of entries option. Now you want to show how many entries left of the Gravity form on the post to encourage users to register the event. Then here is the answer to that. First you need copy and paste the code below into...
Bluarc Phone system Greeting Setting
Login to Bluarc Now you have options to change the VoIP Auto-attendant greeting settings. You can edit each function by clicking the edit button, then you can record the message by clicking record. input the correct extension you want to call, then the extension will...
Yetiforce How to Calculate Contacts Age
This article includes the method of : how to create a workflow within yetiforce CRM. How to create a task within yetiforce CRM. Step 1, Add custom field within the contacts module of custom information block. The field detail is: field type - integer; label name -...
Yetiforce How to make backup manager work
If you see the error message: Set the appropriate path in BACKUP_PATH variable in the configuration file [config/Components/Backup.php] to enable it. and also see it from error.log Undefined index: query_cache_size in /var/www/yetiforce/app/Db.php on line 169...
Ubuntu How to import and export a MySQL database
To export MySQL database with command line: jimlee@CRMServer:~$ cd Desktop sudo mysqldump -u root -p yetiforce > dbexport.sql After that, the databse will store in desktop and the file name is dbexport.sql To import MySQL database with command line:...
MySQL innodb_lock_wait_timeout increase timeout
You can add this code to the my.cnf file [mysqld] innodb_lock_wait_timeout = 600 Or, you can try sudo mysql -u root -p SET GLOBAL innodb_lock_wait_timeout = 600; SET SESSION innodb_lock_wait_timeout = 600; But after you restart MySQL service. it may back to...
How to change MySQL character_set_server & character_set_database within Ubuntu
you need find the my.cnf file location. Normally it will in /etc/ or /etc/mysql/ then you need add the fellowing code inside my.cnf #To set the default to UTF-8, you want to add the following to my.cnf [client] default-character-set=utf8 [mysql]...
How to grant ubuntu text editor as root
open terminal then input: sudo gedit after you input the password. the Ubuntu text editor will open with root permission. Now you can click the open button on top left, then browser to the file you want edit.
Install YetiForce CRM on Ubuntu 20.04 | 18.04 with Apache2 & MySQL
Here is my Ubuntu Version: Step 1 Install Apache2 HTTP Server sudo apt install apache2 Below is the installation screen and Apache version that I installed: jimlee@CRMServer:~$ sudo apt install apache2 Reading package lists... Done Building dependency tree Reading...
How to check if mysql is installed on ubuntu?
I need to check if mysql is installed on a ubuntu server. Is there a way to determine if mySql has been installed ? Here is some suggestions: dpkg --get-selections | grep mysql dpkg -s mysql-server | grep Status which mysqld Type "mysql" in your terminal, see the...
How to remove whole directory ( folder) within CentOS
To remove all directories and subdirectories use the rm command. For example, remove all sub-directories and files inside "ampps" directory, type the following command (warning all files including subdirectories will be deleted permanently): $ rm -rf ampps/