Ticket #5432 (closed Bugs: duplicate)

Opened 2 years ago

Last modified 1 year ago

Cannot change enabled codecs in IAX settings

Reported by: BigCasino Assigned to: p_lindheimer
Priority: major Milestone: 2.11
Component: Asterisk IAX Settings Version: 2.10-branch
Keywords: Codec Cc:
Confirmation: Unreviewed Distro:
Backend Engine: Asterisk 1.8 Distro Ver:
Backend Ver: SVN Revision (if applicable):

Description

All codec checkboxes/boxes have the following url associated, "http://<server url>/admin/a" this is a dead link. Whenever you try to de-select or select a particular codec, the server returns a 404 error. Verified in IE8 and FF6. Appears in beta 1 and beta 2 of 2.10.

Change History

01/23/12 20:39:45 changed by TimMillerDyck

This is still the case in 2.10 RC1.

Here is a workaround that edits the database directly.

mysql --database=asterisk --host=localhost --user=freepbxuser --password=(the database user password)
-- set the G.722 codec to be the first priority codec
update iaxsettings set data=1 where keyword='g722';

-- the default IAX codec order is: ulaw 1, alaw 2, gsm 3
--   update the priorities of these three codecs to move each down by one priority level
update iaxsettings set data=2 where keyword='ulaw';
update iaxsettings set data=3 where keyword='alaw';
update iaxsettings set data=4 where keyword='gsm';

\q

Then change any other setting temporarily in the FreePBX web interface and click "Apply Config" to regenerate the configuration files.

02/11/12 09:30:36 changed by TimMillerDyck

03/05/12 04:03:20 changed by mbrevda

  • status changed from new to closed.
  • resolution set to duplicate.

dup of #5560

03/05/12 12:25:44 changed by p_lindheimer

  • milestone changed from Undetermined to 2.11.