Displaying 20 results from an estimated 2000 matches similar to: "multiple domain login failures"
2004 May 19
1
R with shared library support: 'make check' fails with unresolved symbol (PR#6896)
Full_Name: John Garvin
Version: 1.9.0
OS: OSF1 Alpha ev6
Submission from: (NULL) (128.42.129.78)
I configured R 1.9.0 with --enable-R-shlib on Alpha. 'make check' fails with an
unresolved symbol. Here's the relevant output:
running code in 'reg-tests-1.R'
...529442:/home/garvin/research/tel/R-alpha/unpatched/R-1.9.0/lib/R/bin/R.bin:
/sbin/loader: Fatal Error: call to
2004 Jul 17
1
MYSQL_FRIENDS and IAX problem
Hi,
I had compiled support for MYSQL_FRIENDS and it works for SIP, but when use
tiwh IAX2 I have some problem,
I can register with a client, but when I try to make a call I got this
error:
Jul 17 12:52:03 NOTICE[229387]: chan_iax2.c:5183 socket_read: Rejected
connect attempt from <IP-ADRRESS>
When I google'ed this problem I can see other users also found this error
(bug ?) But no-one
2006 Nov 02
4
Still Having Problems With :through When Going To Same Table... Help... please :-(
I am having a problem with doing a :through that goes back to the same table.
The following are my two classes:
>>>>>
class User < ActiveRecord::Base
has_many :spanks
has_many :spanked, :through => :spanks, :source => :spanked_user
has_many :was_spanked_by, :through => :spanks, :source => :user
end
class Spank < ActiveRecord::Base
belongs_to :spanker,
2004 Apr 05
0
iax2 reload - how ?
Hi,
My asterisk fails and stops after running the reload command ~20 times (I'm
testing) - is this a kown problem ?
Therefor I wil reload only sip, extensions and iax, it works with sip and
extensions, but it seem that there are no reload for iax - or what ?
--
mvh. Hans-Henrik Andresen
------------------------------------------
Telefon for en flad 20'er - www.telefin.dk
2004 Jul 15
1
zapras - and kernel ??
Hi,
I'm trying to get zapras do work, I had downloaded the pppd-source and the 2
patches.
I succefull compiled and install the patched version of pppd, but got this
error in message-log
Jul 15 11:43:32 voip1 pppd[9296]: In file /etc/ppp/filters: unrecognized
option 'active-filter'
Jul 15 11:43:57 voip1 pppd[9299]: Plugin zaptel.so loaded.
Jul 15 11:43:57 voip1 pppd[9299]: Zaptel
2007 Mar 09
5
storing customer CC on gateway
I posted this late yesterday afternoon to no response, so I figured I''d
try once more to get the morning people''s attention.
I''m working on setting up the credit card processing part of a rails app
for my company and running into some issues. I''m currently working
with the ActiveMerchant plugin and connecting to our account at
Authorize.net.
2005 May 30
4
TC Java GUI
Hello, i am writing a iproute2 java gui, and i just started. I would
like to make some questions, since i have been using tc as an
administrator, but not developing anything to do with it.
1.- I want to display statistics, create queues, etc... are there any
libraries i can use, or simply i have to use system calls from java?
2.- Does anybody thinks this is helpless, or it is helpfull?
3.-
2003 Sep 22
1
Compiling shared library on Alpha/OSF1
I'm having trouble compiling and installing R as a shared library on
Alpha/OSF1. I used
./configure --enable-R-shlib SHLIB_CXXLDFLAGS=-L/lib/cmplrs/cxx
(Using configure with --enable-R-shlib alone generated "Could not
determine SHLIB_CXXLDFLAGS" errors.) make and everything else were done
as specified in the documentation.
It compiled everything without visible problems, but on
2006 Jan 20
1
HardPhone Dilemma
I have a dilemma. I am trying to setup an asterisk setup for about 10
people, but with the ability to expand to 100s. We are looking into
hardphones to use for our systems. Here are the requirments I am looking
for:
SIP
Not POE
Full duplex Speakerphone
$100-$300
We would like to have the cordless and corded option if possible (at least
for 3 of the 10 people). So here are the
2006 Jan 26
0
Aastra 9112i or 9133i Ring Tones
I've been looking at the two phones Aastra 9112i and 9133i for our offices
now. I was just curious if anyone could tell me about the ring tones.
Specifically:
1) How many ring tones do they come with?
2) Can you upload your own ring tones?
3) If so, what format and how?
(wav, mp3, gsm, etc. and TFTP, web management, flash, etc.)
Thanks for any help.
--
Tim DeBaillie 812-476-2721
2004 May 13
0
Rprof ignores top-level computation (PR#6883)
Full_Name: John Garvin
Version: 1.9.0
OS: Linux
Submission from: (NULL) (128.42.129.78)
This may or may not technically be a bug, but it's certainly an annoyance.
Rprof only takes into account computation that occurs inside functions. If a
time-consuming operation occurs outside a function, it doesn't record the time
it takes. Consider this program 'array.r':
Rprof()
foo <-
2004 Sep 26
2
low level search for deleted data
Hi everyone,
I lost my complete home directory and am facing the problem of retrieving
some of the deleted data.
I have search the web for this matter, but the only information I found is,
that it's not possible for a program to do this and that I have to puzzle
the files together by scanning the disk (or disk image) with tools like
sleuthkit (www.sleuthkit.org) or lde (lde.sourceforge.net).
2006 Sep 29
2
problems with R and tckl/tk on Mac OS X
Dear R-help team,
I am trying to run "R" on my Intel-based Mac. I have installed R,
X11 and Tcl/TK (I thought), but the GUI doesn't run. My system
administrator doesn't support R and therefore, I'm a little
helpless. What can I do?
Regards,
Ingo
2004 Oct 02
1
RCC compatibility patch
Would you consider the following patch to eval.c to allow compatibility
with RCC? (It's in the applyClosure function.)
@@ -432,6 +432,14 @@
SEXP f, a, tmp;
RCNTXT cntxt;
+#ifdef RCC
+ SEXP comp;
+ PROTECT(comp = getAttrib(op, install("RCC_CompiledSymbol")));
+ if (comp != R_NilValue) /* compiled version exists */
+ op = comp;
+ UNPROTECT(1);
+#endif
2009 Sep 23
1
[LLVMdev] How to create shared library using llvm-ld
Hi, all.
I am using llvm-gcc to compile some softwares, and compile them with
CFLAGS="-emit-llvm" to gernerate bitcode IR. Then I have to replace normal
ld with llvm-ld.
Unfortunately, llvm-ld doesn't support -shared option which is used to
create a shared library. I've also noticed that llvm-ld supports an option
'-link-as-library' which is used to generate
2010 Apr 29
1
Updrading samba
Hello all,
I use samba 2.0.5 in one of my machine and in other machine i use windows xp. This combination works perfectly when come into file sharing. But when i use windows vista with samba 2.0.5 i cannot use samba share. I did lots things in vista to run samba share but iot was helpless. So i like to know that if i upgrade samba to version 3 or later will i be able to run samba share with vista
2006 Mar 18
1
Information Window - Warning Message
Hi all,
this might be a very stupid question, but I tried for several hours now
and I'm helpless. I'm running windows and R 2-2-1. Recently, every time
when I have an error in my code a message box pops up telling me the
error message. The code won't continue before I click ok in the box.
Before I changed to 2-2-1 the code was just running through and I could
check within the command
2001 Oct 16
2
lvs & samba
Could you help a poor helpless guy
how to get information to use samba under a linux virtual server?
which port are used by samba?
Pierre
--
_______
| 0 0 |
------------00---O---00o-----------------
Pierre Binet
Service d'Etat a l'Aviation Civile
Division Technique
BP 6011
98702 Faa'a/Aeroport
mail :binet_pierre@seac.pf
tel :(00 689) 861261
2003 Mar 29
1
Goodness of fit tests
I have a dataset which I want to model using a Poisson distribution, with a given parameter. I would like to know what is the proper way to do a ''goodness of fit'' test using R.
I know the steps I''d take if I were to do it ''manually'': grouping the numbers into classes, calculating the expected frequencies using ''ppois'', then
2007 Aug 31
4
Virtual Hosting
Dear All,
Im sorry for posting this query here but was helpless.. as i am not able
to subscribe to sendmail mailing list
i have jus installed CentOS 5 and the following software
sendmail 8.13
bind 9.3
this machine is used as a primary DNS and out mail server
and is been workin perfect
we jus have a new domain and i want to have virtual mail hosting on the
smae machine for our new domain