Archive Old post. Originally published 21 June 2011 on the WordPress version of this site. Preserved here for the search engines and the curious. Old me had opinions.
Developer 2 min read

vTiger Initial Setup .htaccess

I’ve been setting up vTiger for a client on a new server and felt in a sharing mood.

During the requirements check in the vTiger installation it checks your php.ini file for a few things. In my case a few things came back as NOT RECOMMENDED.

As I wanted it to run as intended I managed to override these issues by using a .htaccess file. You will need to be able to do this so it really depends on your server and php config.

Anyway here’s the resulting .htaccess file:

#Directives for vTiger operation

php_flag display_errors on
php_value max_execution_time 600
php_value error_reporting 2
php_flag allow_call_time_pass_reference 1
php_flag log_errors off

Options -Indexes

Filed under Developer. No comments, on purpose.