Displaying 20 results from an estimated 66 matches for "abc123".
2007 May 21
4
Just upgraded to 1.0.0, should render_text isn''t working for me
I finally got around to upgrading from 0.8.2 (!!). I had a spec which
looked like
specify "should render abc123" do
controller.should_render :text => "abc123"
get :key
end
With 1.0.0, the new spec is
it "should render abc123" do
get :key
response.should render_text("abc123")
end
However it doesn''t work, giving me the error:
undefined method `render_te...
2013 Apr 28
3
Can't register to Asterisk 1.6 with old Aastra phones
...havior with them. If
the SIP peer exists, they simply fail silently, with no error in the
CLI or the messages log. Nothing works, but no errors.
If the peer does not exist, it's clear that it's registering improperly:
[2013-04-28 13:34:31] NOTICE[3058] chan_sip.c: Registration from
'abc123 <sip:abc123@>' failed for '68.2.x.x' - No matching peer found
Typically of course we'd expect to see: <sip:abc123 at server>
We're running the latest available firmware, but it's from 2009. Any
ideas on this before we just trash all the older phones?
--
Carl...
2007 Sep 10
2
Removing an AR class definition, for testing plugins
...s would look like:
describe ActsAsCloneable, " basic cloning" do
load_example_classes
School.class_eval do
acts_as_cloneable
end
before(:each) do
@old_school = School.create! :name => "Baylake Pines", :city =>
"Virginia Beach", :guid => "abc123"
@clone = @old_school.build_clone
end
it "should preserve the attributes" do
@clone.name.should == "Baylake Pines"
@clone.city.should == "Virginia Beach"
@clone.guid.should == "abc123"
end
it "should not clone the id"...
2011 Sep 04
1
mrtg 2.16.2 ipv6 on centos 6
...esses. When i specify a Target by
IPV6-Address (or hostname resolving to a V6-address) mrtg fails.
Here i have a small sample-config for V4 which is working:
LogDir: /tmp
ThreshDir: /tmp
HtmlDir: /tmp
ImageDir: /tmp
LogDir: /tmp
EnableIPv6: yes
Target[bai-gw-i-oct]: ifInOctets.1&ifOutOctets.1:abc123 at 85.237.138.221
Title[bai-gw-i-oct]: Test
MaxBytes[bai-gw-i-oct]: 100000000
----------------------------------------------------
Here the same for V6 which fails.
When running mrtg there is no snmp-packet sent to the network.
LogDir: /tmp
ThreshDir: /tmp
HtmlDir: /tmp
ImageDir: /tmp
LogDir: /tm...
2010 Jun 01
1
regexpr help (match.length=0)
R-help,
Sorry if this is more of a regex question than an R question. However,
help would be appreciated on my use of the regexpr function.
In the first example below, I ask for all characters (a-z) in 'abc123';
regexpr returns a 3-character match beginning at the first character.
> regexpr("[[:alpha:]]*", "abc123")
[1] 1
attr(,"match.length")
[1] 3
However, when the text is flipped regexpr, and I ask for a match of all
characters in '123abc', regexpr retur...
2003 Nov 17
1
credentials file doesn't work
I am using a Gentoo Linux machine and trying to mount a remote file
system via samba. The following DOES WORK:
mount -t smbfs -o username="SMB-SRV\stonyy",password=abc123
//smbsrv/proj /mnt/proj
However, I don't really want my username and password visible to the
world (yes, I changed the password and everything but the backslash in
the username for this posting). So I tried putting the following in a
file:
username="SMB-SRV\stonyy"
password=abc123...
2005 Jan 04
1
Re: Polycom Buddy Feature
I'm still trying to work this out.
I've got this in my sip.conf
[1003polycom]
type=peer
secret=abc123
host=dynamic
defaultip=192.168.1.215
context=default
mailbox=1003
subscribecontext=phonestatus
[1004polycom]
type=peer
secret=abc123
host=dynamic
defaultip=192.168.1.214
context=default
mailbox=1004
subscribecontext=phonestatus
And this in my extensions.conf
[phonestatus]
exten => 200,hint,SIP...
2016 Dec 24
0
[PATCH] lib: Use a common function to validate strings.
...;
+ assert (!VALID_DISK_LABEL (""));
+ assert (!VALID_HOSTNAME (""));
+
+ assert (!VALID_DISK_LABEL ("012345678901234567890"));
+
+ assert (VALID_FORMAT_IFACE ("abc"));
+ assert (VALID_FORMAT_IFACE ("ABC"));
+ assert (VALID_FORMAT_IFACE ("abc123"));
+ assert (VALID_FORMAT_IFACE ("abc123-"));
+ assert (VALID_FORMAT_IFACE ("abc123_"));
+ assert (!VALID_FORMAT_IFACE ("abc123."));
+
+ assert (VALID_DISK_LABEL ("abc"));
+ assert (VALID_DISK_LABEL ("ABC"));
+ assert (!VALID_DISK_LABEL...
2003 Oct 22
1
Cannot update Sun One DS directory with smbpasswd
...r [hoferpa] Failing.
count=4
Failed to find entry for user hoferpa.
Failed to modify password entry for user hoferpa
Below is the LDAP entry for the user hoferpa:
isun02$ ldapsearch -h isun02.sbirs.eng -b dc=sbirs,dc=eng -D
"uid=sambaadmin,cn=directory administrators,dc=sbirs,dc=eng" -w abc123
uid=hoferpa
uid=hoferpa,ou=people,dc=sbirs,dc=eng
cn=hoferpa
uidNumber=411152
gidNumber=4013
gecos=Patrick Hoferer
homeDirectory=/export/home/hoferpa
loginShell=/usr/bin/tcsh
uid=hoferpa
shadowLastChange=12333
shadowFlag=0
objectClass=posixAccount
objectClass=shadowAccount
objectClass=account
objec...
2016 Dec 24
2
[PATCH] lib: Use a common function to validate strings.
As discussed in the thread on validating $TERM, it would be good to
have a common function to do this. This is such a function.
The main advantage is it includes unit tests which the previous
functions did not.
Rich.
2016 Oct 17
2
Multiple readfile oddities, newlines etc
On Tue, 18 Oct 2016, Pete Mundy wrote:
> If you want to know what is _really_ in that file (including all
> invisible characters and anything else that wc etc might not count),
> pipe it through 'hexdump'.
>
> cat?/home/test/feature-1.txt | hexdump
Or just:
hexdump /home/test/feature-1.txt
--
Thanks in advance,
2006 Jul 26
7
Delete_all causes a deadlock on MSSQL database ???
Hi all,
When i use the ''delete_all'' function to remove a few rows from my
database, it causes a deadlock on the sql server. The delete seems to be
successful, it then redirects to the ''view'' page, and the record does
appear to be deleted as far as the ''view'' rails page shows.
BUT if i go into sql query analyser, i can''t do a
2009 Jul 09
3
Add instantly active local user accounts *with* password using useradd -p option ?
...: I have to activate them all manually by doing passwd user1,
passwd user2, passwd user3, etcetera. The useradd man page mentions a -p
option to define a password, but I can't seem to get this to work.
Here's what I'd like to be able to do:
# useradd -c "Gaston Lagaffe" -p abc123 -m glagaffe
And put that line in a script, so the account is *instantly* activated.
I tried it, but to no avail. Looks like there's some burning loop I have
to jump through first :o)
No security considerations here for the moment, since it's for testing.
Any idea how this works?
Niki
2016 Apr 11
5
Previously extended schema not working in 4.4.0
...D. ADSIEdit reports that "A
constraint violation occurred"; I get the same error from Apache Directory
Studio, too - details are as follows:
Error while creating entry
- [LDAP: error code 19 - 0000202F: replmd_add: error during direct ADD: No
rDN found in replPropertyMetaData for
mytype=abc123,OU=myou,DC=mydomain,DC=org,DC=uk
I have checked using the 'Active Directory Schema' MMC snap-in, and my
custom schema classes and attributes do still seem to be showing as present
and correct, just as I originally added them many months ago - I can't spot
any problems there.
It behave...
2005 Feb 09
1
Setting up a windows icecast server problem
...9;t play music.
I am using ezstream and below is some code from the ezstream config file. Do I need to include some code with in the regular icecast config file that points to the ezstream directory.
<url>http://www.chris-on-the-web.com:8000/cwradio</url>
<sourcepassword>abc123</sourcepassword>
<format>MP3</format>
<filename>playlist.m3u</filename>
above I have a folder named cwradio which is within the ezstream directory and the folder contains the playlist.m3u file.
If I type in http://www.chris-on-the-web.com:8000/cwradio/playli...
2007 Jun 06
0
Polycom 320 messages
...ail context, but I'm not sure where they're talking
about. Previous to doing this work, the phone said there were two
voicemails when there were none. Now it doesn't say there are voicemails
when they are there.
This is the entry in the sip.conf
[rwest200]
type=friend
secret=abc123
context=rwest
host=dynamic
mailbox=200@rwest
callerid=Rob West <200>
username=rwest200
qualify=no
port=5060
nat=no
dtmfmode=rfc2833
canreinvite=no
This is the voicemail.conf
[rwest]
200 => 1234,Rob West
201 => 1234,Julia Zeiter
202 => 1234,Larry Sallberg
This is...
2003 Mar 23
1
Need Help.
...c
gid = rsync
use chroot = no
max connections = 4
syslog facility = local5
auth users = root
secrets file = /etc/rsyncd.secrets
pid file = /var/run/rsyncd.pid
[derix]
path = /home/derix
comment = testing rsync
and my secret file is like this:
root:abc123
I checked the process by typing ps -ef | grep rsync
and the result is like this:
root 5487 1 0 13:05 ? 00:00:00 rsync
--daemon
When i try to download the data from ServerA to
ServerB,the password prompt occured. I use this
command:
rsync -a -e ssh root@10.1.1.1:/home/derix
/home/...
2005 Mar 07
0
Winbind Trusts on Multiple Domains
...name with "SAMBA", but it still won't work.
We've tried "SAMBA/username", "username@SAMBA",
"username@SAMBA.FULL.DOMAIN.NAME", and several other things, but it only
works if we make up something and put it as the domain name. For
example, "SAMBA/abc123" doesn't work, but "ANYTHING/abc123" does.
Originally, we thought the problem was related to the winbind separator.
We had it set to "+", and we thought it would resolve itself once we
changed it to "/" or "\". It didn't. Now, we're look...
2012 Jan 08
3
Howto change samba 4 passwd from Linux
Hi
In Windows 7, user steve can change his own password.
On a Linux client, Admin can change the password:
net ads password steve abc123 -UAdministratator%xyz456
How does steve change his own password when logged into Linux?
Linux Client=Samba 3.6.1
Thanks
Steve
2011 Apr 27
1
Filtering feature dump_filter
...some sort of filtering system which filters out unwanted information prior to dumping output.
For example one could add the command:
append nomenu auto=dump mac_address serial_number bios_version;
And ultimately dumping output to a plain text file like:
mac_address : 00:11:22:33:44
serial_number : abc123
bios_version : v03
Would this be possible?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.zytor.com/pipermail/hdt/attachments/20110427/5b40b1bf/attachment.html>