similar to: SIP VoIP Provider problems

Displaying 20 results from an estimated 6000 matches similar to: "SIP VoIP Provider problems"

2005 Mar 14
2
asterisk outbound to SIP provider problems
Hi I am having alot of difficulty connecting to SIP providers (I am trying 3) and can't seem to find anything similar in the wiki or on the lists.....I can receive inbound calls fine however on placing an outbound call the calling phone never gets 'connected' but 2 way audio is passed for about 20secs before some sort of timeout. Anything suggestions as to what I could try
2004 Aug 06
3
tdm400p lockups
I have a system that has a TDM400 with 3 FXO modules. Recently, the system started not seeing the ports. No answer, no lines available for oubound dial, and only a reboot of the machine will bring it back. Any ideas to try? Thanks, Tim --
2005 Feb 28
2
dialing application - newbie question
I am thinking about a making a web based directory that dials a number with one click. >From an overview picture does the below look like the correct way to go about it: web app sends something like the below call file to asterisk Action: Originate Channel: SIP/1010 Context: demo Exten: 1234 Priority: 1 Callerid: 1212 The main problem is the actual phone must be set to auto answer
2004 Dec 19
2
Phone choices....opinion request Polycom vs Cisco
Hi I am struggling with hardware choices to get started with. My options are narrowed down to SIP phones - Polycom IP500, IP600 and Cisco 7940G. of importance is: - functionality / integration with asterisk - headset functionality and use - voice quality - build quality Is there much of a difference between Polycom and Cisco? Scanning the group it looks like there may be slightly more
2005 Feb 27
3
music on hold trouble
Hi All I seem to have a small problem with the music on hold button on SJPhone. I have 2 asterisk installations one from the Rapid distribution and one from the latest CVS. On the rapid dist when I press the music on hold button on my SJPhone I get music on hold. When I do the same I get no music on hold just silence. I create extension like this exten => 1111,1,MusicOnHold(Default),
2008 May 27
3
How to test significant differences for non-linear relationships for two locations
Hi List, I have to compare a relationship between y and x for two locations. I found logistic regression fits both datasets well, but I am not sure how to test if relationships for both sites are significantly different. I searched the r site, however no answers exactly match the question. I used Tukey's HSD to compare two means, but the relationship in my study was not simply linear. So I
2012 Jan 17
1
MuMIn package, problem using model selection table from manually created list of models
The subject says it all really. Question 1. Here is some code created to illustrate my problem, can anyone spot where I'm going wrong? Question 2. The reason I'm following a manual specification of models relates to the fact that in reality I am using mgcv::gam, and I'm not aware that dredge is able to separate individual smooth terms out of say s(a,b). Hence an additional request,
2005 Mar 21
0
asterisk outbound to SIP provider problems (still)
Hi I am using cvs and updating it every couple of days Unfortunately I am still getting a 20 second timeout on sip calls placed to various providers, can anyone see anything wrong from sip debugs? Or have any ideas what the problem might be? Cheers Walt sip debug peer of a provider: http://www.walt.9k.com/sip/1_SIP_Provider.html sip debug peer of phone placing the call
2009 Nov 01
1
package lme4
Hi R Users, When I use package lme4 for mixed model analysis, I can't distinguish the significant and insignificant variables from all random independent variables. Here is my data and result: Data: Rice<-data.frame(Yield=c(8,7,4,9,7,6,9,8,8,8,7,5,9,9,5,7,7,8,8,8,4,8,6,4,8,8,9), Variety=rep(rep(c("A1","A2","A3"),each=3),3),
2003 Oct 15
2
Example of cell means model
This is an example from chapter 11 of the 6th edition of Devore's engineering statistics text. It happens to be a balanced data set in two factors but the calculations will also work for unbalanced data. I create a factor called 'cell' from the text representation of the Variety level and the Density level using '/' as the separator character. The coefficients for the linear
2011 Feb 06
1
anova() interpretation and error message
Hi there, I have a data frame as listed below: > Ca.P.Biomass.A P Biomass 1 334.5567 0.2870000 2 737.5400 0.5713333 3 894.5300 0.6393333 4 782.3800 0.5836667 5 857.5900 0.6003333 6 829.2700 0.5883333 I have fit the data using logistic, Michaelis?Menten, and linear model, they all give significance. > fm1 <- nls(Biomass~SSlogis(P, phi1, phi2, phi3), data=Ca.P.Biomass.A)
2008 Apr 13
2
prediction intervals from a mixed-effects models?
How can I get prediction intervals from a mixed-effects model? Consider the following example: library(nlme) fm3 <- lme(distance ~ age*Sex, data = Orthodont, random = ~ 1) df3.1 <- with(Orthodont, data.frame(age=seq(5, 20, 5), Subject=rep(Subject[1], 4), Sex=rep(Sex[1], 4))) predict(fm3, df3.1, interval='prediction') # M01 M01
2003 Dec 20
2
BYEXTENSION and DBPut
Hey I need another pair of eyes on this! I would like to add phones numbers to the blacklist from any handset so I did this: exten => _*66XXXXXXXXXX,1,StripMSD,3 exten => _XXXXXXXXXX,2,DBPut,blacklist/BYEXTENSION/1 exten => _XXXXXXXXXX,3,Hangup However what I get in the database is: /blacklist/BYEXTENSION : 1 And BYEXTENSION is not replaced with the actual number
2010 Feb 09
1
lm combined with splines
Hello, In the following I tried 3 versions of an example in R help. Only the two first predict command work. After : library(splines) require(stats) 1) fm1 <- lm(weight ~ bs(height, df = 5), data = women) ht1 <- seq(57, 73, len = 200) ph1 <- predict(fm1, data.frame(height=ht1)) # OK plot(women, xlab = "Height (in)", ylab = "Weight (lb)") lines(ht1, ph1) 2)
2008 Jan 25
1
Problem with FollowMe
I'm trying to use the FollowMe app with Asterisk 1.4.17. I've followed the WIKI page on setting it up but I can't seem to get it to work. Here is my Asterisk version: pbx1*CLI> core show version Asterisk 1.4.17 built by root @ pbx1 on a i686 running Linux on 2008-01-10 12:08:48 UTC Here is a log of when the FollowMe is being called: NOTE: I've tried to use the AstDB as
2010 Aug 15
5
reading a text file, one line at a time
Hi, I have an upcoming project that will involve a large text file. I want to 1. read the file into R one line at a time 2. do some string manipulations on the line 3. write the line to another text file. I can handle the last two parts. Scan and read.table seem to read the whole file in at once. Since this is a very large file (several hundred thousand lines), this is not
2011 Sep 22
1
How to do Multiple Comparisons for a Mixed Effects Model
Hello everyone I am currently trying to conduct analysis of my graduate thesis data using a mixed effects model and I have reached an impass. When I try to conduct a multiple comparison, I get an error (See below): > fm3<- lme(abovegroundbiomass.m.2~medium*amelioration*fertilizer*treatment, random=~1|block/medium/amelioration/fertilizer) > tukeytest<-glht(fm3,
2012 Jul 19
3
median comparison tests
Hi, A client has a consumption measure on each of four products. The sample size is 75. The consumption distributions are highly skewed for each product. He would like a pairwise comparison test of the products, much like Tukey's HSD but using medians rather than means. Is there such a median comparison test in R? Thanks, Walt ________________________ Walter R. Paczkowski, Ph.D.
2013 Jan 07
3
pattern matching
Hi, I have a simple question. Suppose I have a string "x$Expensive". I want to find the position of the $ in this string; i.e., I want a function that returns 2. I tried grep, regexpr, etc with no luck, unless I'm just using them incorrectly. Any suggestions? Thanks, Walt ________________________ Walter R. Paczkowski, Ph.D. Data Analytics Corp. 44 Hamilton Lane Plainsboro,
2011 Apr 01
4
Maildir
I noticed in Cyrus they seem to address maildir++ recognised by IMAP. I need to know does Dovecot recognise this format? Procmail has an ability to deliver mails to different folders which if unrecognised renders the whole process useless. Does Dovecot have a similar deliver method? Thanks. -Walt