Next release window of CE 3.0?
Added by Andy B over 11 years ago
Hello!
I just recently had a bug fixed (thanks everyone!) that was found in the current release of CE 3.0. We are on an old version of VicidialNOW and are looking to migrate to CE 3.0 but this bug is not allowing us to. (webforms not saving).
Anyone out there have any idea on the timeframe until the next batch of fixes are released?
-Andy
Replies (9)
RE: Next release window of CE 3.0?
-
Added by Demian Biscocho over 11 years ago
We'll post the updates next week. We're still cleaning the code and fixing some bugs. As usual, just run: "yum update -y" to update the system.
RE: Next release window of CE 3.0?
-
Added by Andy B over 11 years ago
Just checking in - I ran "yum update -y" and haven't seen an update for GoAutodial yet to cover the bug about saving webform URLs. I had notifications back from November that it was fixed but has anything rolled out yet?
RE: Next release window of CE 3.0?
-
Added by Demian Biscocho over 11 years ago
The update is available in our goautodial-testing repo. Here's how to use it:
Append the goautodial-testing repo to the goautodial.repo file
nano /etc/yum.repos.d/goautodial.repo
[goautodial-testing] name=CentOS-$releasever - Goautodial - Testing baseurl=http://downloads2.goautodial.org/centos/$releasever/testing/$basearch/ enabled=0 gpgcheck=0
Update the goautodial-ce package:
yum -y update goautodial-ce --enablerepo goautodial-testing
Let us know how it goes.
RE: Next release window of CE 3.0?
-
Added by Saleh Madi over 11 years ago
I have update goautodial-ce to goautodial-ce-3.3-1385442000 but when I click Recordings in the Web Interface I see this error :
Recodrings
Search Results
Error Number: 1146
Table 'asterisk.temp_recording_view' doesn't exist
SELECT lead_id ,phone ,call_date ,duration ,agent ,disposition ,location ,filename ,recording_id FROM temp_recording_view WHERE call_date like '%2014-01-06%'
Thanks..
Saleh
RE: Next release window of CE 3.0?
-
Added by Chris Lomuntad over 11 years ago
Hi Saleh,
Thanks for reporting this one.
To fix this, login using either mysql console or phpMyAdmin and run this query under asterisk table:
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `asterisk`.`temp_recording_view` AS select `recrd`.`recording_id` AS `recording_id`,`recrd`.`lead_id` AS `lead_id`,`vl`.`phone_number` AS `phone`,`recrd`.`start_time` AS `call_date`,`recrd`.`length_in_sec` AS `duration`,`vu`.`full_name` AS `agent`,`vs`.`status_name` AS `disposition`,`vcs`.`status_name` AS `campaign_dispo`,concat_ws(_latin1' ',`vl`.`first_name`,`vl`.`last_name`) AS `fullname`,`recrd`.`location` AS `location`,`recrd`.`filename` AS `filename`,`vl`.`list_id` AS `list_id`,`vu`.`user_group` AS `user_group` from (((((`asterisk`.`recording_log` `recrd` left join `asterisk`.`vicidial_users` `vu` on((`recrd`.`user` = `vu`.`user`))) left join `asterisk`.`vicidial_user_groups` `vug` on((`vu`.`user_group` = `vug`.`user_group`))) left join `asterisk`.`vicidial_list` `vl` on((`recrd`.`lead_id` = `vl`.`lead_id`))) left join `asterisk`.`vicidial_statuses` `vs` on((`vl`.`status` = `vs`.`status`))) left join `asterisk`.`vicidial_campaign_statuses` `vcs` on((`vl`.`status` = `vcs`.`status`)));
Cheers,
Chris
RE: Next release window of CE 3.0?
-
Added by Saleh Madi over 11 years ago
Hi Chris,
Thanks for you quick reply. Other problem, when I make "yum update --enablerepo goautodial-testing"
Error: Missing Dependency: kmod-dahdi-linux is needed by package dahdi-linux-2.7.0-1_centos5.x86_64 (goautodial-testing)
Best Regards,
Saleh
RE: Next release window of CE 3.0?
-
Added by Amor Klich over 11 years ago
hi Saleh
the update can be done by erasing all the old repo in goautodial.repo and keeping only goautodial-testing
I am still testing but i also installed manually dahdi-linux-2.7.0-1
i let you know how it goes.
RE: Next release window of CE 3.0?
-
Added by Demian Biscocho over 11 years ago
We've updated our repo. Should be good to go. Please try again and let us know how it goes.
RE: Next release window of CE 3.0?
-
Added by Amor Klich over 11 years ago
Fixed Issue thank you guys great work!