Project

General

Profile

Update GOautodial v4

Added by Fares MEHENI over 4 years ago

Hello everyone,

please how to update GOautodial v4 to fix bugs ?

Thanks in advance!


Replies (1)

RE: Update GOautodial v4 - Added by Fares MEHENI over 4 years ago

Hi
it's good, for the update :

Make sure to backup your existing configuration first!
cp /var/www/html/astguiclient.conf /var/www/html/astguiclient.conf.bak

Update goautodial database
mysql -A
use goautodial
ALTER TABLE go_campaigns ADD COLUMN manual_dial_min_digits INT DEFAULT '6';
ALTER TABLE users ADD COLUMN enable_webrtc tinyint(1) DEFAULT '1';

Update existing v4:**

cd /var/www/html/
git reset --hard
git pull

cd /var/www/html/goAPIv2/
git reset --hard
git pull

Edit Config.php**
nano /var/www/html/php/Config.php
// database configuration
define('DB_USERNAME', 'goautodialu');
define('DB_PASSWORD', 'goautodialu1234');
define('DB_HOST', 'localhost');
define('DB_NAME', 'goautodial');
define('DB_PORT', '3306');
define('DB_NAME_ASTERISK', 'asterisk');
define('DB_USERNAME_KAMAILIO', 'kamailiou');
define('DB_PASSWORD_KAMAILIO', 'kamailiou1234');
define('DB_HOST_KAMAILIO', 'localhost');
define('DB_NAME_KAMAILIO', 'kamailio');
define('DB_PORT_KAMAILIO', '3306');

// other configuration parameters
define('CRM_ADMIN_EMAIL', '');
?>

    (1-1/1)
    Go to top