I am trying to port our Asterisk front end to Asterisk 13 but I cannot get realtime static to work. Realtime for PJSIP, Voicemail and Queues is working fine so I know res_odbc is configures properly. In past versions of Asterisk I was using Mysql (res_config_mysql) to load realtime databases but now I am loading everything via ODBC. Is realtime Static deprecated? Have there been any undocumented changes to ast_config? This is the structure I have been using since Asterisk 1.X:

|CREATE TABLE `ast_config` (|
|||`id` ||int||(||11||) NOT NULL auto_increment,|
|||`cat_metric` ||int||(||11||) NOT NULL ||default| |'0'||,|
|||`var_metric` ||int||(||11||) NOT NULL ||default| |'0'||,|
|||`commented` ||int||(||11||) NOT NULL ||default| |'0'||,|
|||`filename` varchar(||128||) NOT NULL ||default| |''||,|
|||`category` varchar(||128||) NOT NULL ||default| |'default'||,|
|||`var_name` varchar(||128||) NOT NULL ||default| |''||,|
|||`var_val` varchar(||128||) NOT NULL ||default| |''||,|
|||PRIMARY KEY (`id`),|
|||KEY `filename_comment` (`filename`,`commented`)|
|) TYPE=MyISAM;

My extconfig.conf has:
extensions.conf => odbc,asterisk,ast_config
chan_dahdi.conf => odbc,asterisk,ast_config
voicemail => odbc,asterisk,voicemail
iaxusers => odbc,asterisk,iaxfriends
iaxpeers => odbc,asterisk,iaxfriends
queues => odbc,asterisk,queues
;followme => odbc,asterisk,followme
;followme_numbers => odbc,asterisk,followme_numbers
musiconhold => odbc,asterisk,musiconhold

ps_endpoints => odbc,asterisk
ps_auths => odbc,asterisk
ps_aors => odbc,asterisk
ps_domain_aliases => odbc,asterisk
ps_endpoint_id_ips => odbc,asterisk
ps_contacts => odbc,asterisk

|
    Any ideas?

--
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez
+52 (55)9116-91161

-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to