Wanting to use Meetme with a MYSQL backend

and use mysql for pin storage / validation. I’ve already been told that database validation is possible via the astDB. My boss wants to write a web frontend and he can do it for mySQL but not the astDB.

What I’m looking for is the steps to setup mySQL for pin validation for the meetme conference bridge.

Thanks in advance for your time.

Hi

Personally i would write a front end for the astdb, but basicly to use meetme with mysql you will need to pull the conf number and pin save them as varibles then create a dynamic conference with those varibles.

using the astdb its as simple as

[code]exten => 564,1,Answer ; Answer the line
exten => 123,n,Read(conf_num,enter-conf-call-number,4)
exten => 123,n,set(passpin=${DB(confer/${conf_num})})
exten => 123,n,Authenticate(${passpin})
exten => 123,n,MeetMe(${conf_num}|siMDc|${passpin})
exten => 123,n,Hangup()

[quote]

Ian[/quote][/code]