search for: admin_ids

Displaying 5 results from an estimated 5 matches for "admin_ids".

Did you mean: admin_id
2002 Jan 02
0
Unable to use Samba in Win2K Domain
Hello. We recently migrated our site from an NT domain model to a 2000 domain model (active directory). In the process, I've found that I'm unable to use Samba with our new domain. These same machines were able to function properly as domain I've tried samba versions 2.2.2 and 3.0alpha12. The systems running Samba are all running Solaris 8. Prior to the migrated to Active
2006 Jan 08
1
Subclassing only a specific portion?
Hi, I''m sure there is an easy way to do this, but I just can''t see it: I have a large amount of rooms, that are for different purposes, and for only one ''purpose'' do I want to create a specific subclass. Ex: banquet,wedding,admin. I want to have additional information about admin rooms. Trying to use the ''type'' field just gives an error
2006 Apr 25
3
belongs_to and has_many
I know this has been rehashed many times, but I don''t get it. I can''t find it documented to were I understand all the parts. I can make this work using Rails database design conventions, but in this case I am not able to do that. I find examples, but the ones I find do not follow the conventions. They also do not give enough information to understand what is going on. In
2005 Dec 27
2
NoMethodError in new scaffold
Hi All, I created a new rails application using rails 1.0. I used "ruby script\generate scaffold" for each of my tables. This worked on all but 2 of my tables. When I go to the new or edit action of my requests or admins table, I get the error below. On one table called admins I hadn''t followed the correct naming convention and wasn''t able to edit or create
2009 Nov 17
5
has_many :through and foo.bars.include?
...in `include?'' from (irb):3>> however, when i reload that association before asking for admins it is working: >> g.admins => [] >> g.admins.include? User.last => false same thing: Group.first.admins.include? User.last => Exception (see above) Group.first.admin_ids.include? User.last => false I already checked will_paginate as it is mentioned in the trace. But in my test-project i set up it is working perfectly with the above code and will_paginate installed. Has anyone ever seen a behaviuor like this? Any clues, hints or tipps?