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 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
vTigerCRM Module Field
Class Vtiger_Field provides API to work with a Module field, which are the basic elements that store and display the module record data.
[…] Continue Reading
Create new UI Type in vTigerCRM 7.*
In vTigerCRM 7.x, creating a new UI type involves extending the existing framework to add custom fields with unique behavior. A UI type defines how a field appears and interacts within the CRM, including its behavior during data entry, display, and processing.
[…] 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
Showing all errors and warnings in PHP
Four different ways to display errors in PHP Before diving into the details of managing and logging errors in PHP, let’s outline the four main ways to display errors in PHP:
[…] Continue Reading
Vtiger CRM Pre-requisites
Installation Vtiger CRM is web-application built using PHP.
[…] Continue Reading
how to setup and use Googles Firebase push notification API for both Android and iOS
Below is a full tutorial on how to setup and use Googles Firebase push notification API for both Android and iOS. It is based on this earlier implementation of Googles GCM method: https://gist.github.com/prime31/5675017 – FCM is the new method and GCM will eventually be retired.
[…] Continue Reading
How To Rewrite URLs with mod_rewrite for Apache on Ubuntu
The mod_rewrite module in Apache allows you to manipulate URLs for better readability, improved SEO, or redirecting old URLs to new ones. This guide walks you through enabling mod_rewrite, configuring the .htaccess file, and creating rules to rewrite URLs effectively on Ubuntu. Key steps include enabling mod_rewrite (a2enmod rewrite), updating the Apache configuration to allow […]
[…] Continue Reading
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
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