This tutorial is about how to increase Vtiger upload limit. By default, Vtiger has upload limit for 3mb. Even though you can change from the Web interface, it has limit until 5mb only.

Requirement

To change it more than 5mb, you must:

  1. Has FTP access to Vtiger root folder.
  2. You can modify php.ini value in your web hosting

How to Increase?

Step 1

First, you have to change value in file config.inc.php in your Vtiger root folder at line 106 (according to Vtiger version 6.0.4)

Default value:

$upload_maxsize = 3000000;

Change too more than 3000000. Example:

$upload_maxsize = 50000000;

Step 2

It doesn’t stop here, you have to change also at config.template.php at line 105

Default value:

$upload_maxsize = 3000000;

Change too more than 3000000. Example:

$upload_maxsize = 50000000;

Step 3

Edit your php.ini . Usually in Ubuntu, the location will be at /etc/php5/php.ini and adjust line

upload_max_filesize = 50M

and

post_max_size = 50M

You are done!

That’s all you need to do to increase Vtiger upload limit

 

Leave a Reply