Care Features

Discover, Explore the Product
Discover, Explore & understanding the product

Art Direction & Brand Strategy
Art Direction & Brand Communication

Product UX, Design & Development
Digital Product UX, Design & Development

Marketing Strategy & SEO Campaigns
Marketing Strategy & seo Campaigns

How To Install Linux, Apache, MySQL, PHP (LAMP)
The LAMP stack is a popular open-source web development platform used to host dynamic websites and applications. It consists of Linux (the operating system), Apache (the web server), MySQL (the database server), and PHP (the programming language). Here’s a brief overview of the installation process:
[…] Continue Reading
UI TYPE (SQL Data/Column) list for vTigerCRM Custom Fields
In vTigerCRM, when creating custom fields, the UI Type determines the type of input or display that the field will support. Below is a brief description of some commonly used UI Types for SQL Data/Columns:
[…] Continue Reading
JSON Web Token (JWT)
JWT (JSON Web Token) is a compact, URL-safe way of securely transmitting information between parties as a JSON object. It’s commonly used for authentication and authorization in web applications.
[…] Continue Reading
How to create custom field in module in vTigerCRM
Creating a custom field in a module in vTigerCRM (Open Source) is fairly straightforward using the built-in Module Manager or through code/database, depending on your approach. In vTigerCRM, creating a custom field in a module involves using the built-in Module Manager. Here’s a brief description of the process:
[…] Continue Reading
Write a php Program to calculate frequency of each character of string without using HashMap.
Write a PHP program to calculate the frequency of each character in a given string. The program should count and display the occurrences of each character without using any built-in data structures like HashMap or associative arrays. This can be achieved using nested loops and basic string operations to manually count character frequencies.
[…] Continue Reading
CIVIC is Palindrome
A palindrome is a word, number, phrase, or other sequence of symbols that reads the same backwards as forwards, such as madam or racecar, the date and time 12/21/33 12:21, and the sentence: “A man, a plan, a canal – Panama”
[…] Continue Reading
How to create a custom view of type List in Sugar CRM or Suite CRM
How to create a custom view of type List in SugarCRM CE 6.5 or SuiteCRM. In SugarCRM CE 6.5 or in SuiteCRM there is the standard ListView mask that allows you to Filter and Search an object of a specific module, there is also the List that can be used to quickly access an object.
[…] Continue Reading
How to create a custom view of type Detail in Sugar CRM or Suite CRM
How to create a custom view of type Detail in SugarCRM CE 6.5 or SuiteCRM. In SugarCRM CE 6.5 or in SuiteCRM there is the standard DetailView mask that allows you to Edit,Delete an object of a specific module, there is also the send mail, SMS and converts that can be used to quickly access […]
[…] Continue Reading
Custom web service operation for multiple records fetch with custom query
p>Add new webservice custom method you have to manipulates in 2 tables vtiger_ws_operation , vtiger_ws_operation_parameters and vtiger_ws_operation_seq.
[…] Continue Reading
Calculate Rating
If you’re collecting user ratings (e.g., 1 to 5 stars) and want to calculate the average rating and total number of stars, here’s a simple PHP example:
[…] Continue Reading