Thursday, February 23, 2012

Upgrading 1-2-All

May 7, 2010 by Ayo Akinyemi · 1 Comment 

To update 12all, copy the 12all folder into the root 1. rename /12all/admin/default.authentication_db.inc.php to /12all/admin/authentication_db.inc.php copy this code into the file: < ? PHP define("ACP_AUTHDB_SERVER", "localhost"); define("ACP_AUTHDB_USER", "username"); define("ACP_AUTHDB_PASS", "user_password"); define("ACP_AUTHDB_DB", "databasename"); ?> 2. rename /12all/admin/default. engine.inc.php to /12all/admin/engine.inc.php copy this code into the file: < ? php define(‘ACP_DB_HOST’, ‘localhost’); define(‘ACP_DB_USER’, ‘username’); define(‘ACP_DB_PASS’, ‘user_password’); define(‘ACP_DB_NAME’, [...]

Webform – lead entry notification in vTiger

May 6, 2010 by Ayo Akinyemi · Leave a Comment 

No notification is sent out when a form is sent via the webform. So you don’t get leads in the system that might be overlooked, you can add a custom code to the “yoursitename/vtigercrm/modules/Webforms/post.php” file : //php start tag goes here function isformsubmit(){ ($_SERVER['REQUEST_METHOD'] == “POST”) ? return TRUE : return NULL; } if ((isset($_POST['firstname'])) [...]