Displaying 20 results from an estimated 700 matches similar to: "1.8 busypatterns"
2011 Feb 10
0
Busy Detection on Analog Lines
Hi,
I'm having an issue with busy detection, the busy is not being detected.
Asterisk: 1.6.2.13
DAHDI: 2.4.0
Chandahdi: busydetect=yes, busycount=2
Indications zone = us, with the modifications for my country for busy:
425Hz Pattern(0.2ms on, 0.2ms off, 0.2ms on, 0.6ms off)
I compiled with BUSY DETECT DEBUG.
I can see:
[Feb 10 15:48:06] DEBUG[26968]: dsp.c:1276
2009 Aug 13
5
First hit on app takes a long time
So, I''ve deployed my first rails app, however I''m the only one hitting
it for now.
I''ve noticed that the first time I hit the app after some long period,
it takes a really long time to respond (2-3 seconds). After that,
it''s very fast.
At first, I thought it might be my VPS "waking up" from some sleep
state, but Rails does log the long load time
2016 Oct 05
2
Ast 13.10 to 13.11 stop working webrtc
>From this change (res_rtp_asterisk): ast 13.10 to 13.11 webrtc JSSIP stop
working, failing with
chan_sip.c:4083 retrans_pkt: Hanging up call
7238b48c11581d4166b899bf747a05f7 at 130.211.62.184:0 - no reply to our
critical packet (see
https://wiki.asterisk.org/wiki/display/AST/SIP+Retransmissions).
is there any way to configure to have the previous behaviour?
Im trying to set
2012 Sep 13
10
access key error
I am getting following error while run my rails app in my server
ActionView::Template::Error (You did not provide both required access keys.
Please provide the access_key_id and the secret_access_key.):
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2011 Aug 14
5
Puzzled with form on multiple table rows
I''ve got a table of events, and each event has a boolean attribute
is_ten_event.
On each row of the table is a chekbox to edit the value of is_ten_event,
so that multiple rows can be edited with one submit.
In order to allow boxes to be un-checked as well, the logic in the
controller works like this
get array of events from checkboxes that are ticked.
make all events.is_ten_event =
2017 Mar 18
4
Something similar to Doxygen for standard dialplan?
Hi, thanks - that looks really good!
I was about to embark on some non-visual stuff using Ragic, but this
looks great.
Is there a binary anywhere, or any instructions to compile? I've never
compiled C# code before, and although a quick google suggests it
shouldn't be too hard, I might need to know a few things like what
version of .net it should be compiled with.
The readme just points
2012 Sep 16
1
“Routing Error No route matches {}” when omniauth failed on registration
(Original question was asked here:
http://stackoverflow.com/questions/11506734/routing-error-no-route-matches-when-omniauth-failed-on-registration
)
I am using omniauth-identity and configure its "fail on registration".
My files:
config/initializers/omniauth.rb
OmniAuth.config.logger = Rails.logger
Rails.application.config.middleware.use OmniAuth::Builder do
#...
provider
2016 Mar 22
19
[PATCH v3 0/11] tests/qemu: Add program for tracing and analyzing boot times.
Lots of changes since v2, too much to remember or summarize.
Please ignore patch 11/11, it's just for my testing.
Rich.
2010 Aug 13
11
Link to remote and the equivalent in Rails 3
Hi
WOW! Is Rails 3 another interesting learning curve. Just when I think
I have a general working knowledge of Rails 2 ... things change.
I''m trying to replicate the following in Rails 3:
<%= link_to_remote image_tag("creditcard.png", :border => 0), :url =>
{:action => :make_payment, :type => "Credit", :id =>
@appt.id },
2013 Feb 07
1
asterisk 1.8.10.1 meetme
Hello,
I'm running Asterisk 1.8.10 on Linux box, when I'm in a conference(meetme)
with another person, and a third person join our conference when the third
person leave the conference I get disconnected from the original conference
with a second party. I hope this clear.
This does not happen often, is random, anybody experience something
similar? or any idea how to fix this problem?
2017 Mar 18
2
Something similar to Doxygen for standard dialplan?
How are we all documenting complex dialplan?
Is there something similar to Doxygen?
I've got around 20 config files covering around 60 contexts and 40
variables. Of course, I've maintained a basic list of the major stuff,
and documented the code throughout, but it's grown to the stage where
it needs to be better documented, have a proper flowchart etc.
Talking of flowcharts, I see
2012 Jun 20
1
Overview of SIP error codes and possible causes?
Hello,
is there anywhere an overview of SIP error codes and under which condition
they are reported by Asterisk?
There are general definitions for SIP error codes, but they are quite
general and it's Asterisk that actually checks what's wrong and then
reports an error. Now, currently I could check the source code to get more
informations what could have caused the error, but that's
2007 Oct 08
16
Fileserver performance tests
Hi all,
i want to replace a bunch of Apple Xserves with Xraids and HFS+ (brr) by Sun x4200 with SAS-Jbods and ZFS. The application will be the Helios UB+ fileserver suite.
I installed the latest Solaris 10 on a x4200 with 8gig of ram and two Sun SAS controllers, attached two sas-jbods with 8 SATA-HDDs each und created a zfs pool as a raid 10 by doing something like the following:
[i]zpool create
2006 Mar 24
0
Finding the busypattern
Hey everybody,
I've had issues with detecting call disconnects on the Centrex system
and an Adit 600. I've discovered that if I set the channel bank's FXO
to lscpd, even though the CO says they don't support, that Asterisk can
see the hangups.
The catch? Asterisk can no longer seize the line.
I've used this to my advantage, since I have 13 lines to work with. (5)
+1
2010 Nov 24
0
Surprise in (delete_all | clear | destroy_all) on association
Hi,
I was very surprised by difference of delete_all on association vs
model(delegated to relation).
Given TaskFilter.has_many(:qualifiers, :class_name=>''TaskFilterQualifier'')
TaskFilter.delete_all => one DELETE statement
Without :dependent option on "qualifiers" association
TaskFilter.first.qualifiers.delete_all =>
SELECT `task_filter_qualifiers`.* FROM
2012 Jun 15
1
Problem with active resource(500 internal server error)
Hi,
I have a rails server running. I wanted to connect to this using
activeresource.
Executing this code
Class Buildclient < ActiveResource::Base
self.site = "http://localhost:3000/builds"
end
builds = Buildclient.find(:all)
puts builds (## printed nil)
On the rails server terminal i see
Started GET "/builds/buildclients.json" for 127.0.0.1 at Fri Jun 15
10:34:05
2004 Apr 09
1
New Zealand indications.conf
Hi Vic,
I hit that same problem! My SIP phones would sound okay when I made
changes to indications.conf but incoming calls in to my TE410P had their
own thing going on!
Have a look at the zaptel source files, there's one called zonedata.c.
You'll see the au settings... replace what's there with this:
{ 1, "au", "Australia", { 400, 200, 400, 2000 },
{
{
2006 Mar 09
2
TDM11B Hang up detection not working in France ?
Hello,
my config : aah 2.6 (asterisk 1.2.4) , centos 4.2, 1 TDM11B (1 Fxo / 1
fxs ), 1 phone, 1 softphone
I'm in France
When someone from PSTN calls and hangs up before the call is answered,
internal extension keeps ringing until timeout occurs. PSTN line keeps
busy. Hangup detection doesn't work.
I've played with different paremeters (callprogress, busydetect,
busycount,
2017 Jun 12
2
OT: Explain where mailing list bouncing comes from ?
Same about me - need to re-enable membership all the time. Annoying ((
??, 12 ???. 2017 ?. ? 15:59, John Novack <jnovack at comcast.net>:
> Not just gmail
> Happening as well with Comcast.net
>
> My Comcast address is set to forward to another domain, as Comcast seems
> to now block sending mail with a non Comcast "from" address. they turned
> that on a couple
2009 Apr 19
1
Cucmber: Mysql::Error: query: not connected: ROLLBACK
Hi,
I ran in trouble with unexpected rollbacks using cucumber 0.3.0.
My feature-file looks like
Scenario: Create Valid Item
Given I start
and the step is
Given /^I start$/ do
get "/items"
end
In my log/test.log I get
SQL (0.2ms) SET NAMES ''utf8''
SQL (0.2ms) SET SQL_AUTO_IS_NULL=0
SQL (0.1ms) BEGIN
Processing ItemsController#index