search for: pjnet

Displaying 2 results from an estimated 2 matches for "pjnet".

Did you mean: pgnet
2006 Mar 21
0
FC5 - Samba version 3.0.21b-2 - Transport endpoint is not connected
...machine should be joined to a Windows 2003 domain (SP1). I want to use kerberos and I think I have done my job. here is my /etc/krb5.conf: [logging] default = FILE:/var/log/krb5libs.log kdc = FILE:/var/log/krb5kdc.log admin_server = FILE:/var/log/kadmind.log [libdefaults] default_realm = PJNET.LOCAL dns_lookup_realm = false dns_lookup_kdc = false ticket_lifetime = 24h forwardable = yes [realms] PJNET.LOCAL = { kdc = pjsrv1.pjnet.local:88 admin_server = pjsrv1.pjnet.local:749 default_domain = pjnet.local } [domain_realm] .pjnet.local = PJNET.LOCAL pjnet.local =...
2007 Feb 24
0
after_create not creating the right object
I have 2 tables... club and forum, which use the "type" as I''m subclassing the Club and Forum objects. Tables are: clubs: id title type forums: id club_id title type I''ve put an "after_create" callback in the Club as Club has_one Forum: class Club < ActiveRecord::Base after_create :create_forum has_one :forum def self.create_forum # create it