search for: memberships

Displaying 20 results from an estimated 2249 matches for "memberships".

Did you mean: membership
2006 May 16
1
:conditions on has_one realationship
Hi there, I''m currently building a membership application and I want to be able to select, not just all the memberships, but the most current membership from the database on a per user basis. I have linked the tables as shown:- class Membership < ActiveRecord::Base belongs_to :payment belongs_to :person end class Person < ActiveRecord::Base has_many :memberships has_one :active_membership, :...
2006 Aug 03
4
Map a resource that is a join model
How should you map resources that are join models like Memberships? Lets say have you have Members and Groups that are joined through Memberships. map.resources :members do |members| members.resources :groups do |groups| groups.resources :memberships end end This doesn''t seem right. It would be nice to access all members, groups, an...
2006 Jul 10
2
problem in my code
Dear R-users I wrote a small program for assigning a membership Here is my script sample.size <- 60 x <- rnorm(sample.size, 0, 1) y <- rnorm(sample.size, 0, 1) x.mean <- mean(x) y.mean <- mean(y) membership <- numeric(sample.size) for (i in 1:sample.size) { if ((x[i] < x.mean) && (y[i] < y.mean)) { membership[i]
2006 Jul 26
3
Polymorphic Association with Single Table Inheritance?
...ssible to setup a model/table schema like this: Groupable --> Membership <-- Group ^ ^ | | User UserGroup I tried the following but failed: Groupable (table with ''type'' column) has_many :memberships, :as => :groupable has_many :groups, :through => :memberships Membership belongs_to :groupable, :polymorphic => true belongs_to :group, :polymorphic => true Group (table with ''type'' column) has_many :memberships, :as => :group has_many :groupables, :through =>...
2006 Jul 26
8
team captain - habtm w/has_one...
the below... class User < ActiveRecord::Base has_and_belongs_to_many :teams class Team < ActiveRecord::Base has_and_belongs_to_many :users has_one :captain, :class_name => ''User'' produces the error... Mysql::Error: Unknown column ''users.team_id'' in ''where clause'': SELECT * FROM users WHERE (users.team_id = 1) LIMIT 1 i
2007 Nov 24
12
orphan habtm rows
HI, i use models User and Groups connected with many to many association, so i have users table, groups and groups_users. lets say i create one user and one group. next i add a group to user. so now my table groups_users has one entry i.e. group_id | user_id _________|________ 1 | 1 ok, when i delete both my group and user, above entry is not deleted, thus leaving alone without
2023 Feb 15
2
2023 X.Org Foundation Membership deadline for voting in the election
The 2023 X.Org Foundation elections are rapidly approaching. We will be forwarding the election schedule and nominating process to the membership shortly. Please note that only current members can vote in the upcoming election, and that the deadline for new memberships or renewals to vote in the upcoming election is 26 March 2023 at 23:59 UTC. If you are interested in joining the X.Org Foundation or in renewing your membership, please visit the membership system site at: https://members.x.org/ Ricardo Garcia, on behalf of the X.Org elections committee
2013 Feb 05
1
Samba4 4.0.3 classicupgrade - Error converting string to value for line: "CurrentVersion"
...g account c062$ which had both ACB_NORMAL (U) and ACB_WSTRUST (W) set. Account will be marked as ACB_WSTRUST (W), i.e. as a domain member Fixing account c061$ which had both ACB_NORMAL (U) and ACB_WSTRUST (W) set. Account will be marked as ACB_WSTRUST (W), i.e. as a domain member Ignoring group memberships of 'c065$' S-1-5-21-2959502491-3316882024-2455323705-3438: Unable to enumerate group memberships, (-1073741596,NT_STATUS_INTERNAL_DB_CORRUPTION) Skipping wellknown rid=500 (for username=root) Ignoring group memberships of 'c047$' S-1-5-21-2959502491-3316882024-2455323705-3000: Una...
2019 Nov 01
2
Individuals interested in VESA memberships?
Hi! Recently I've been working with the rest of the X.Org board to try to get X.org access to VESA memberships so that contributors that don't have an employer who is able/willing to join VESA can potentially get access to the various benefits of a VESA membership, such as access to DisplayPort specifications. Since I need to gather a list of interested X.org members, I'd like to know who all might...
2005 Sep 25
12
Browsercam.com Annual Membership
I have been using browsercam.com for CSS testing, but it is rather expensive. Recently, I discovered others using funadable.org to purchase a yearly membership as a group. A year long membership at browsercam.com costs $480.00. This gives us 25 user accounts. I am proposing that 25 people throw in $19.20 for their 1/25th share of the membership cost. Once I have raised $479.40 I will
2004 Sep 07
1
Problems with 'ntlm_auth --require-membership-of' using Samba 3.0.6
Hi there, I'm trying to configure Squid to use a windows domain for authentication, and all goes well until I add the "--require-membership-of" option on ntlm_auth. I need to restrict access based on group membership, however ntlm_auth does not seem to be behaving correctly. I'm using Samba 3.0.6 on Debian and I'm using a Windows 2000 (SP4) Domain Controller. I
2017 Sep 25
4
Winbind group membership not updating
We are currently in the process of replacing some of our file servers with Active Directory joined Samba servers. However, during testing we have noticed behaviour that has caught us off guard. Changes in user group membership in AD do not show up on our file servers. Specifically, changing a user's groups in AD won't affect group membership on the Samba server once the user has
2008 Sep 16
3
has_one :through eager-loading problem
...de option: def index @profiles = User.find(:all, :include => [:user, :customer]) end i get an error: Mysql::Error: #42S22Unknown column ''users.profile_id'' in ''on clause'' obviously, it searches for the profile_id on the wrong place, it should search it in memberships anyone has an idea? Thanks.. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsu...
2018 Jun 15
4
Passwords in plain text
Am I the only one who just received this email from this group? Which came with my password in the email in plain text? Begin forwarded message: > From: centos-request at centos.org > Date: June 15, 2018 at 12:31:04 PM EDT > To: rjcdevelop at gmail.com > Subject: confirm a8e9e592b9d81e13e569ffa9f6f4267c3f2a8fe8 > > Your membership in the mailing list CentOS has been disabled
2008 Apr 21
1
Urgent ActiveRecord has_many Problem - Please Help
Hi Guys, I''ve been looking everywhere for an answer to this but so far without success. I have three models: 1) employees has_many :memberships has_many :projects, :through => :membership 2) projects has_many :memberships has_many :employees, :through => :membership 3) membership belongs_to :employees belongs_to :projects Membership is used to join employees to projects. In my projects_controller I have a method ca...
2008 Jan 08
1
howto rebuild a object from a received xml hash structure ?
im my web server app , i have an action to be used as a REST web service # GET /user/membership.xml?email=emailaddress def membership @user = User.find_by_email(params[:email]) respond_to do |format| format.xml { render :xml => @user.to_xml( :only => [ :first_name, :last_name, :display_name, :membership_type, :membership_at], :skip_types => true)} end end my
2015 Apr 26
2
Migration to Samba 4
...but then not found: Unable to enumerate group members, (-1073741722,No such group) ======================================================== And problems with users (guessing these are tied to the group issues): ======================================================== Exporting users Ignoring group memberships of 'skjidu' S-1-5-21-1832519723-2688400599-3493754984-1158: Unable to enumerate group memberships, (-1073741724,No such user) Ignoring group memberships of 'ngoires' S-1-5-21-1832519723-2688400599-3493754984-3010: Unable to enumerate group memberships, (-1073741724,No such user) Ign...
2017 Jun 30
2
User management scripts in AD mode...
...full user DN in 'member'; again for b) above, group 'Doamin Users' have no 'member' because all users have primaryGroupID=513 If i'm right, i'have two question: 1) a) work also for nested group, right? eg, if i've nested group, the windows<-UNIX mapping of memberships simply ''flatten'' the windows membership in UNIX UID? 2) Supposing i'm using samba >= 4.6, to make a LDAP query that return all the memberships correctly i need to look for 'member' in groups and 'primaryGroupID' in users; there's just an LDAP query abo...
2018 Jan 31
3
netsamlogon_cache.tdb & winbind.
All, I wonder if someone can give me an idea what the file "netsamlogon_cache.tdb" contains... as I have noticed that I can be added to a group, and access will not appear on the Unix side for a good deal of time... but if I stop Winbind, remove the file "netsamlogon_cache.tdb", and re-start everything, it will then work. Can anyone tell me what the purpose of this file is,
2004 Jun 17
2
ldap + samba + group membership problem
Hi to all, I have recently set up a new linux serveur with SAMBA 3.0.4 + Openldap The server is PDC , users and groups are stored into LDAP All is working fine for the moment, I can join the domain without Pb on a W2k machine. but, Here is my problem : I've some users members of differents groups and not only the "main" group. Like user "joe" First Group :