2013-05-16 14:25:56 -05:00 --- debug:
modules/freeswitch-1.1.1/libraries/FreeSwitch.php[103] (FreeSwitch)
getInstance: FreeSWITCH -> New instance of FreeSwitch telephony driver
created.
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[37]
(dialplan) register: Telephony -> EVAL FreeSwitch::getDialplanSections();
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[56]
(dialplan) register: Telephony -> Added hook for _telephony.conditioning
to call FreeSwitch_CallerId_Driver::conditioning
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[56]
(dialplan) register: Telephony -> Added hook for _telephony.prenumber to
call FreeSwitch_CallerId_Driver::prenumber
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[56]
(dialplan) register: Telephony -> Added hook for _telephony.postroute to
call FreeSwitch_FeatureCode_Driver::postroute
2013-05-16 14:25:56 -05:00 --- debug: system/libraries/Input.php[145]
(Input_Core) __construct: Global GET, POST and COOKIE data sanitized
2013-05-16 14:25:56 -05:00 --- debug: system/libraries/Session.php[90]
(Session_Core) __construct: Session Library initialized
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[56]
(dialplan) register: Telephony -> Added hook for _telephony.prenumber to
call FreeSwitch_Voicemail_Driver::prenumber
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/dialplan.php[56]
(dialplan) register: Telephony -> Added hook for _telephony.postnumber
to call FreeSwitch_Voicemail_Driver::postnumber
2013-05-16 14:25:56 -05:00 --- debug:
modules/auth-1.0/libraries/Auth.php[75] (Auth_Core) __construct: Auth
Library loaded
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/users.php[97]
(users) redirectInvalidUser: Effective user_id 1 - account_id 1
2013-05-16 14:25:56 -05:00 --- debug: bluebox/helpers/users.php[101]
(users) redirectInvalidUser: Authentic user_id 1 - account_id 1
2013-05-16 14:25:56 -05:00 --- error: system/core/Kohana.php[883]
(Kohana) exception_handler: Uncaught PHP Error: Undefined offset: 0 in
file modules/esl-1.1/controllers/esl.php on line 381
So that's this area:
//Do some nifty magic to get freeswitch root path
$confpath = Kohana::config('freeswitch.cfg_root');
preg_match('/.+(?=\/conf$)/', $confpath, $output);
$basepath = $output[0];
(tight fit...anyway, it's the $output[0] line.)
cfg_root is set at
/var/www/html/bluebox/modules/freeswitch-1.1.1/config/freeswitch.php to
'/etc/freeswitch'
Making that "/etc/freeswitch/" (appending a /) doesn't help. Either way,
the output of that preg_match line is an empty array.