Tag - Vtiger 7.x

Vtiger Migration from 5.2 to 7.2 version

Vtiger migration - Initial phase Our customer created Free trial hosting to test how Vtiger 7 looks like. Then our guy contacted customer if there is any question about Vtiger or if needed any help. Customer answered Us that have some questions about functionality and our hosting. After some mails customer made decision that he want to migrate to Vtiger 7. First at all, our guy had to find out which version of Vtiger we are talking about and if there is any customization of Vtiger. Our customer did not have any customization just official Vtiger patches and some custom modules. Without customization it is a little easier but still it is demanding process. Our guy created Quotation of migration...

Download Vtiger CRM Open Source

How to download Vtiger CRM files Dear community, do you want to start with Vtiger system and you don't know where to download correct files? Or are you a Vtiger user already and you need to migrate or update your CRM system? In this article, I will tell you about How and where to download last version of Vtiger CRM. Please click on the button below and proceed to Download files from source forge page: Then, you will be redirected to the following screen where you need to choose which version you will be downloading.Vtiger Download Page Installation Steps After download you need to follow these instructions:Firstly, copy your download file in your root of web server path Secondly, extract the downloaded source file in your...

Separate Products & Services in PDF Maker

Dear community, are you working with PDF Maker some time and you still didn't figure out how to separate Products & Services in the product block table? You don't need to spend additional hours to figure out how it is working. It's really simple and after you finish reading this post you will be able to give better look to your templates in no time! Let's take closer look at our example, how to proceed. We will use the example with PC Hardware as a Products and Installation/Build of PC as a Service. Note this is just an example, you can use any products or services you need! The main key to this customization are variables used to start and end product block. These...

GA release of Vtiger CRM 7.2.0

Vtiger CRM 7.2.0 GA has been releasedAccording to official announcement new version of very popular CRM Open Source system was released.  Dear Developer, We are happy to announce GA release of Vtiger CRM 7.2.0, In this release we have mainly focused on security, performance on which below noted are the high-lights.Data Integrity support through checkpermission api. Please do refer here for Documentation. File security through obscurity Barrier for SQL Injections through prepared queries. Open security and performance issues have been addressed Fix for 60+ high priority issues on code.vtiger.com. Please check here.We would like to express our special thanks to all the developers in community, Who kept us aware on security issues and sharing Merge requests.You can download Vtiger Crm 7.2.0 from here : https://www.vtiger.com/open-source-crm/download-open-source/On encountering any...

How do I login to my Vtiger files via FTPS

This article is primarily intended for customers using our hosting, but it can also be beneficial for people who are hosting another company. If you need to access your Vtiger CRM system files, just follow these steps:You will open WinSCP (or another client to remote folders) If you do not have WinSCP, there is download link: WinSCP Download Choose New Site (saved data if you have saved them before - in this case you can skip to a point 9) Choose FTP Choose TLS encryption Host name is url Fill User name (You will receive this information after prolonged hosting) Fill Password (You will receive this information after prolonged hosting) Click on Login Súbory nájdete v zložke "web"

Free plugins for your Vtiger

We published 3 Free plugins for Vtiger 7. Download and enjoy. Clear CampaignsDo you need to remove all Contacts from your Campaign? Do you need to remove all Leads from your Campaign? Do you need to remove all Organizations from your Campaign?Up to now you had 2 options: Remove all contact/leads/organizations one by one. Other option was delete your campaign and create new one. Today you find better option. Option to remove all records from your Contact List, Lead List or Organization List just in few simple steps. You find Clear Campaigns4You Reset Customer Portal Password Forgot your customer password for customer portal? Standard "Forgot Password?" in customer portal does not work correctly? Reset and resend customer's password immediately from your Vtiger CRM. Picklist Import Values Save your time with Picklist ImportSimply import...

Font Awesome for PDF Maker? No problem!

Did you ever make the template and in the end it was looking "boring" just with text and logo? You know there was something missing to make it more special and livelier. With our new feature Font Awesome for PDF Maker, you can use Icons and Social logos! It's simple and fast, all you need is to do few clicks in your template! Comparison: With Icons / Without Icons To get a Font Awesome for PDF Maker, you need Basic or PRO version & PDF Maker version 700.7.0 or higher for Vtiger 7 and version 600.19.0 or higher for Vtiger 6. Useful Links: Manual how to use Font Awesome If you still don't have the PDF Maker, you can visit our shop More about PDF Maker

How to hide/show line of table in PDF file in PDF Maker

Have you ever met with this situation? You have a great template for Invoice but if for example discount = 0 you need to edit template and remove line because it does not looks so great. If your answer is Yes then this article certainly helps you. So how to edit your template to hide/show line based on field? First at all, I have to say that this manual is only for PDF Maker Professional because you need to use Custom Function. Let's start:Find in your template line in table that you want to hide/show and click into this line Go to Other information tab And click on Custom functions Find its4you_if or its4you_isnull function and add into line you want to hide/shows (I recommend to use...

How can I debug my Vtiger?

Tracy library is a useful helper for everyday PHP programmers. It helps you to:quickly detect and correct errors log errors dump variables measure execution time and memory consumptionImplementationDownload Tracy latest version from https://github.com/nette/tracy/releases Open .zip file and copy tracy to your FTP folder include Edit file libraries/HTTP_Session/Session.php Replace function: function start($name = 'SessionID', $id = null) from:function start($name = 'SessionID', $id = null) { HTTP_Session::name($name); if ($id) { HTTP_Session::id($id); } elseif (is_null(HTTP_Session::detectID())) { HTTP_Session::id($id ? $id : uniqid(dechex(rand()))); ...