简体   繁体   中英

how to install vtiger crm in localhost

Am new to vtiger crm.can any explain how to install vtiger crm and how to create database connection..

i tried to install vtiger crm in localhost but am getting lot errors and workings like

Deprecated: Assigning the return value of new by reference is deprecated in C:\\xampp\\htdocs\\vtigercrm\\adodb\\adodb-xmlschema.inc.php on line 373

Deprecated: Assigning the return value of new by reference is deprecated in C:\\xampp\\htdocs\\vtigercrm\\adodb\\adodb-xmlschema.inc.php on line 385

Strict Standards: Declaration of dbTable::create() should be compatible with that of dbObject::create() in C:\\xampp\\htdocs\\vtigercrm\\adodb\\adodb-xmlschema.inc.php on line 605

Strict Standards: Declaration of dbIndex::create() should be compatible with that of dbObject::create() in C:\\xampp\\htdocs\\vtigercrm\\adodb\\adodb-xmlschema.inc.php on line 769

Strict Standards: Declaration of HelpDesk::process_list_query() should be compatible with that of CRMEntity::process_list_query() in C:\\xampp\\htdocs\\vtigercrm\\modules\\HelpDesk\\HelpDesk.php on line 771

Warning: Cannot modify header information - headers already sent by (output started at C:\\xampp\\htdocs\\vtigercrm\\modules\\HelpDesk\\HelpDesk.php:771) in C:\\xampp\\htdocs\\vtigercrm\\index.php on line 91

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\\xampp\\htdocs\\vtigercrm\\modules\\HelpDesk\\HelpDesk.php:771) in C:\\xampp\\htdocs\\vtigercrm\\index.php on line 96.

these are some of the errors am getting while try to install vtiger crm..

plz help me..

thanks in Advance..

You are probably running PHP 5.3.x and the version of vtiger you are using is not compatible with 5.3.x

You could either use another php version, or simply supress the errors.

in php.ini:

error_reporting = E_ALL & ~E_STRICT & ~E_DEPRECATED

or you could use a error_reporting from within php

To resolve these errors

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\vtigercrm\adodb\adodb-xmlschema.inc.php on line 373

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\vtigercrm\adodb\adodb-xmlschema.inc.php on line 385

$this->indexes[$name] =& new dbIndex( $this, $attributes );//373

$this->data =& new dbData( $this, $attributes );//385

in this two lines remove the '&' symbol

 $this->indexes[$name] = new dbIndex( $this, $attributes );//373

    $this->data = new dbData( $this, $attributes );//385

Simply set your PHP to version 5.2 will resolved the same. I have experienced the similar and resolved it by that.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM