similar to: (no subject)

Displaying 20 results from an estimated 1000 matches similar to: "(no subject)"

2006 Nov 30
1
3D histogramm
thank you for your answer i checked my code and it now works One more question... do you know how to have an 3D histogramm from a known matrix of probabilities Cline >From: "David Barron" <mothsailor at googlemail.com> >To: "C?line Henzelin" <celine_appui at hotmail.com>, r-help ><r-help at stat.math.ethz.ch> >Subject: Re: [R] (no subject)
2006 Apr 23
1
Setting up a t38 fax gateway
Hello to all, Is there an "how-to" for asterisk and setting up a t38 fax gateway (SIP) ? I look at http://bugs.digium.com/view.php?id=5090 to patch asterisk chan_sip.c file. What are the next steps to get a t38 fax gateway with asterisk ? Regards Harry PS: I use hylafax server. ___________________________________________________________________________ Faites de
2006 Apr 23
1
SIPredirect
Hello, I read http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+SIPredirect I wish to configure asterisk as a redirect server. I have badly understood this command . ASTERISK | sip agents nated ======SER When sip agents send INVITE to the proxy i want ser send this one to ASTERISK . How asterisk can send 302 messages with the good info in
2006 Apr 25
2
Sip t38 gateway tests
Hello, I patched asterisk patched with the latest t38 support . I would need some people for tests. Regards harry ___________________________________________________________________________ Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services pr?f?r?s : v?rifiez vos nouveaux mails, lancez vos recherches et suivez l'actualit? en temps r?el.
2006 May 10
2
asterisk monitoring / res_snmp
Hello, I 've installed both cacti and res_snmp for monitoring. Does res_snmp is able to send snmp traps when hardware is out of service or others status ? Harry ___________________________________________________________________________ Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services pr?f?r?s : v?rifiez vos nouveaux mails, lancez vos
2006 Apr 24
1
compiling zaptel-1.2.5
Hello, What's wrong ? make install ..... options torisa base=0xd0000 alias char-major-196 torisa alias wcfxs wctdm alias wct2xxp wct4xxp if [ -d /etc/modutils ]; then \ /sbin/update-modules ; \ fi depmod: *** Unresolved symbols in /lib/modules/2.4.27-2-386/misc/wctdm24xxp.o depmod: *** Unresolved symbols in /lib/modules/2.4.27-2-386/misc/zaptel.o depmod: *** Unresolved symbols in
2006 May 08
1
[nativecode=Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)]
Hello, I have an error when installing AMP, when I do ./install_amp --debug, it show me : Connecting to database..FAILED [DEBUG] [nativecode=Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)] ** mysql://user:pass@localhost/asteriskamp Try running ./install_amp --username=user --password=pass (using your own user and pass) [FATAL] Cannot connect
2006 May 15
1
Please help.. I need a h323 user for tests
hello, Is there somebody wit a h323 terminal ? ___________________________________________________________________________ Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services pr?f?r?s : v?rifiez vos nouveaux mails, lancez vos recherches et suivez l'actualit? en temps r?el. Rendez-vous sur http://fr.yahoo.com/set
2006 May 18
1
DM/V1200-4E1 with asterisk
Hello every body. I have this PCI card : DM/V1200-4E1 spec in this site: http://www.intel.com/network/csp/products/3967web.htm Can i use it with Asterisk, is it compatible ? Thank you in advance. ___________________________________________________________________________ Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services pr?f?r?s : v?rifiez
2006 May 16
1
Asterisk as a proxy
Hi does asterisk act as SIP proxy ?, like SER any documents if does, will be great help ram -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060516/9fce4aca/attachment.htm
2006 May 20
1
Configuring a TDM400P with one FXS port
In my attempt to setup a single FXS line I have been following the instructions for "Telephony Card Drivers" on the asteriskdocs.org site. I have managed to checkout, make and install the zaptel code and can load the zaptel module but when I attempt to load the wcfxs module it tells me: ZT_CHANCONFIG failed on channel 1: No such device or address (6) FATAL: Error running install
2006 Apr 26
1
Early media after a dial command
Hello all, I've been playing around with early audio, and I'm able to get some things working We have PSTN calls coming in to asterisk in SIP from a Cisco AS5300. If I do the following: Exten => i,1,Playback(ss-noservice,noanswer) Exten => i,2,Congestion(15) Exten => i,3,Hangup() The PSTN caller does not get an answered call (doesn't get billed) but hears the ss-noservice
2009 Apr 01
2
Plotting multiple ablines
I really want to do this: abline( a=tan(-kT*pi/180), b=kY-tan(-kT*pi/180)*kX ) where kX,kY and kT are vectors of equal length. But I can't do that with abline unless I use a loop, and I haven't figured out the least unelegant way of writing the loop yet. So is there a way to do this without a loop? Or if I am to resort to the loop, what's the best way of doing it considering that I
2004 Sep 06
1
A naive lsoda question....
Hello, I am an R newbie, trying to use lsoda to solve standard Lotka-Volterra competition equations. My question is: how do I pass a parameter that varies with time, like say, phix <- 0.7 + runif(tmax) in the example below. # defining function lotvol <- function(t,n,p){ x <- n[1]; y <- n[2] rx <- p["rx"]; ry <- p["ry"] Kx <-
2000 Dec 27
1
Incorrect shell quotation in scp
Hi, as the current debian maintainer of the openssh package is a bit busy, I'm helping him with fixing a part of the bugs in openssh that debian users found will forward some of the reports to you. This is the first one and a fix or a comment why this should not be fixed would be appropriated. Thanks Space in filename is not correctly passed by scp to other invoked programs:
2019 Oct 21
2
How to create vector pointer type?
Hello, Say the original type is Integer i16*,&nbsp; I want to create a v16i16* type to replace it. static Type *getVectorPtr(Type *Ty) { &nbsp; &nbsp; PointerType *PointerTy = dyn_cast<PointerType&gt;(Ty); &nbsp; &nbsp; assert(PointerTy &amp;&amp; "PointerType expected"); &nbsp; &nbsp; unsigned addSpace = PointerTy-&gt;getAddressSpace();
2003 Jul 15
2
Windows 98 logon server problem
Hi, I have Samba version 2.2.7 up and running as a PDC for several Windows 2000/XP clients, as well as file sharing working. However, when I try to use it as a Win9X logon server, I can not seem to make it work. Whenever I try to logon from the Win98 computer, I get the error message "Incorrect Parameter" (in windows) and get the following message in the nmbd.log file: =-=-=
2004 Sep 02
2
Polycom Microbrowser
I have just spent the morning playing around with a Polycom IP600's microbrowser. Everything is working pretty well. In answer to the question of what type of XML it runs, it appears to be more or less XHTML-compliant. I have created a basic set of web pages allowing users to clock in and out against our MySQL timeclock system, running a PHP back-end. It's running like a champ.
2008 Jun 02
1
Help : R-packages : Problems loading package fSeries
Hi. I am trying to load the package fSeries, in order to load the package fGarch after. However, it says the following message. > local({pkg <- select.list(sort(.packages(all.available = TRUE))) + if(nchar(pkg)) library(pkg, character.only=TRUE)}) Loading required package: fBasics (Error : ... infinite recursion) Loading required package: fImport Loading required package: fSeries Loading
2003 Jun 13
1
Workgroup/Domain Browsing
I am currently running samba on a Redhat 8.0 server, and it is working great. Keep up the good work guys! My question involves a VPN connection to the server on a different network segment. I have the following setup: Internal Network - 192.168.13.0/24 | | Red Hat Samba Server - 192.168.13.3 - aip-ky | VPN |