similar to: newbie question..

Displaying 20 results from an estimated 30000 matches similar to: "newbie question.."

2005 Jun 30
1
Caller ID problem..
hi all, i want to ask about caller id in asterisk. if i make outgoing call, people who receive my call can see the pilot number. what i must do if i want that people receive my other number (DID number)? is it posibble? thank to everybody.. regards, shahdan __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around
2005 May 30
0
newbie problem with registration of sip client
hello all, now, i want to do configuration to make sip client have extension on my asterisk.but i have a problem with registration of sip client. *CLI> May 31 13:58:01 WARNING[4927]: chan_sip.c:886 retrans_pkt: Maximum retries exceeded on call 4b5cbb235a46d6ee0bcd278c1e294105@192.168.8.125 for seqno 115 (Critical Request) May 31 13:58:15 NOTICE[4927]: chan_sip.c:4585 sip_reg_timeout: --
2005 Jun 01
0
newbie with kphone and asterisk
hello all, i have already configure sip.conf and dialplan. i done the follow me script. first problem: i want to call(with kphone) someone at my extension, i must dial the extension number. i can't dial their username. 20531603@192.168.8.125 (work) mustafa@192.168.8.125 (call fail) is it possible to do that?? second problem: if i want to call another number (not my
2005 Jul 06
0
newbie asterisk-addons installation
good day all, my asterisk is working greatly.. and i want to put a billing.. but i have this error when i try 'make' [root@upm asterisk-addons-1.0.7]# make cc -fPIC -I../asterisk -D_GNU_SOURCE -I/usr/include/mysql -I/root/asterisk/include/ -c -o app_addon_sql_mysql.o app_addon_sql_mysql.c app_addon_sql_mysql.c:165:77: macro "AST_LIST_REMOVE" passed 4 arguments, but takes
2005 May 27
2
chan_zap.c:8534 pri_dchannel: PRI Error
hello all, i'm using TE110P and all configuration prosess is done. but after i do the 'modprobe' for zaptel and wcte11xp, follow by ztcfg -vv and asterisk -vvvgc i have this error. *CLI> May 27 14:44:33 WARNING[3059]: chan_zap.c:8534 pri_dchannel: PRI Error: We think we're the network, but they think they're the network, too. May 27 14:44:34 WARNING[3059]: chan_zap.c:8534
2005 Aug 05
2
Discriminant analysis
Hi, I'm a newbie in R and don't much aobut all the modules and their capabilities, but I'm interested in solving a problem about a discriminant analysis done with SPSS tool. The thing is that I would like to make a discrimant analysis similar to the one done with SPSS, but I can't find the way to solve it. I've been playing with R and I can handle more or less my data,
2012 Aug 31
3
Help on numerical object and ifelse function
Dear All,   this is probably an easy one but I can not get a handle on it:   x <-c(1,2,3,4,5) y <-c(6,7,8,9,10) z <-15 w <-ifelse(z>14,x,y)   this will give me a value of 1 for w. What I would like to get is the whole string of x, so that w would become a numeric object of 5 characters exactly the same as x.   Apreciate the help,   Sincerely,   Andras [[alternative HTML version
2016 Aug 03
2
Need help debugging a PowerPC problem
Hi, I need help debugging a problem a problem that only shows up on PowerPC with one of my commits in the generic CodeGen parts of llvm. I'd apreciate it if someone with access to a PowerPC system could take a look at this: https://reviews.llvm.org/D23097 <https://reviews.llvm.org/D23097> - Matthias -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Jan 13
2
JOIN
Hi! For the following example I want to retrieve the last 10 LastEntries for experis_date >= now. class User < ActiveRecord::Base has_one :last_entries def self.last_entry_items find(:all, # :include => "last_entries", # :conditions => "last_entries.expires_date >= now()", :order => "id desc", :limit => 10) end end class
2010 Aug 19
2
help making fileserver
Hi, folks ! Perhaps somebody can help me with a litle isuue. I?ve got a PDC with Ubuntu+Samba 3.5 +LDAP working fine in my network. But now I?m trying to implement a fileserver that autenticate against my domain server. If someone have any idea about how to do it and can give me a link or some clue about it, I really will apreciate it! Thank you very much for your time.
2005 Nov 27
2
How to synchronise multiple samba server ?
Hi ! I got a new problem, the company I work for had just open a new office with a network ADSL link to the old one. We have one domain controler (samba on linux) and 50 workstations in windows XP. I need to put a second domain controler at the new office, but I don't know how to link the both and then to synchronise them ? (account and passwd) And finaly, if I reach this point, how can I do
2006 Jul 19
2
Intel Virtualization Technology
How can I activate Intel Virtualization Technology on an Intel Entry Server Board SE7230NH1-E with Pentium D 950 CPU? I have the lastest BIOS patch (1179) but there is no option to activate Virtualization Technology. I searched all over the Internet but it''s imposible to obtain a clear information if this combination of SE7230NH1-E motherboard + Intel E7230 server chipset + BIOS +
2011 Nov 28
1
detecting autocorrelation structure in panel data
Hello, I'm a newby in R. I have created a data.frame holding panel data, with the following columns: "id","time","y", say: periods = 100 numcases = 100 df = data.frame( id = rep(1:numcases,periods), time = rep(1:periods, each = numcases) ) df = transform(df,y=c(rnorm(numcases*periods)+id) I want to check whether "y" is autocorrelated. I came across
2012 Sep 12
2
Help on converting a Sweave document to PDF
Dear All,   I am working with a Sweave document to be converted into PDF using Rstudio. It seems to me that my R code will also show up after conversion, which I would like not to happen. Is there a way to specify a command that I could place on the beggining and at the end of the R code that would allow R to recognize the area where my R code is and would ignor it when the data is converted?  
2012 Aug 30
2
help on plot on the log scale but showing original values on axis
dear All   I am trying to plot the following with the x axis on the log scale, but I would like the original x values to show up as labels:   x <-c(0.25,0.5,1,2,4,8,16,32) y <-c(1,1,1,1,0.9,0.8,0.6,0.2)   plot(log(x),y,type="b")   here I would like the labels 0.25,0.5,1,2,4,8,16, and 32 to show on the plot at their respective "log scale" location   apreciate the help,    
2005 Dec 20
3
CVS compilation and EVC++ 4.0
Hi all, I'd like you to know i'm not able to build Speex library anymore from CVS without modfing the code in mdf.c. This is due to the fact that EVC++ compiler doesn't like memory allocations in this form: spx_word16_t w[N]; where N is not a constant. I know this is not an error for gcc compiler and ANSI standard but it is in VS2005 and EVC++ 4.0 If someone knows how to compile
2012 May 11
1
identify() doesn't return "true" numbers
Dear R community. I am using the identify() function to identify outliers in my dataset. This is the code I am using: #################################################################### # Function to allow identifying points in the QQ plot (by mouseclicking) qqInteractive <- function(..., IDENTIFY = TRUE) { qqplot(...) -> X abline(a=0,b=1) if(IDENTIFY) return(identify(X))
2012 Sep 02
3
Help on finding specific columns in matrix
Dear All,   I have a matrix with 33 columns and 5000 rows. I would like to find 2 specific columns in the set: the one that holds the highest values and the one that holds the lowest values. In this case the column's mean would be apropriate to use to try to find those specific columns because each columns mean is different and they all change together based on the same "change of rate
2004 Sep 26
3
Unsolvable segmentation fault
I cannot use wine with my windows partition. Whenever I try it , I immediatly get segmentation fault messagens (even when trying to run notepad.exe). If I modify the ~/.wine/dosdevices/c: simlink then wine seems to work well (but this is not a good solution, because I want wine to find programs and dlls in my windows partition). I use kurumin (a brazillian distro based on KNOPPIX. It is basically
2012 Nov 07
2
simple coversion of matrix rows to matrix columns
Dear All   I would like to convert matrix rows to columns. I am thinking the t() function should help, but am having a hard time converting the matrix into the dimensions I would like them to. Example:   a <-matrix(c(1:30),ncol=3) gives me:[,1] [,2] [,3] [1,] 1 11 21 [2,] 2 12 22 [3,] 3 13 23 [4,] 4 14 24 [5,] 5 15 25 [6,] 6 16 26 [7,] 7 17