Hi,

First of all, thanks for the amazing work you've done.

So i have run the cck signup module in my site project and make it work with event.
But the capacity and the status fields are never checked and don't seems to work at all.
This is a big issue for my client who wants to manage those aspects for his events.

So, I've followed the tutorial : https://drupal.org/node/1479460.
Then I've added the two integers fields : Capacity and Status and select them in the right fields of cck signup.
Capacity field to associate with sign-ups => Capacity
Status field to associate with event sign-up status = > Status

But those two fields are never checked and i can signup all over again.

So, I've looked in to the cck_signup.module and first of all I've put :
if (!$event = node_load($values[$field_name][$language][0]['nid']))
{return;}
in commentary because it's making notice for the language fr
Then I've had those errors when I register

Notice : Trying to get property of non-object dans _cck_signup_validate_signup_node() (ligne 112 dans C:\wamp\www\drupal-7.24\sites\all\modules\cck_signup\cck_signup.module).
Notice : Trying to get property of non-object dans cck_signup_event_is_past() (ligne 272 dans C:\wamp\www\drupal-7.24\sites\all\modules\cck_signup\cck_signup.module).
Notice : Trying to get property of non-object dans cck_signup_get_remaining_capacity() (ligne 200 dans C:\wamp\www\drupal-7.24\sites\all\modules\cck_signup\cck_signup.module).

So I think this where the problems are. We're tring to get an object of something which's not an object.

If someone can help me on this.

I'm just a begginer at drupal. First Site.