Closed (fixed)
Project:
Drupal Ladder
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
5 Jul 2012 at 02:17 UTC
Updated:
19 Sep 2012 at 20:21 UTC
Jump to comment: Most recent file
Comments
Comment #1
BrockBoland commentedComment #2
BrockBoland commentedThat module is up to 3.9 now and works with Entity Reference. Updated the drupal-org.make file to use the latest version, in commit e3665f8.
Comment #3
BrockBoland commentedAre you getting an error when trying to install Drupal Ladder? Something like: "You need a module to reference users. Use either Entity references or References."
You are not alone, but we also don't know yet how to fix it.
This error is caused by the requirements check in the Node access user reference module. Basically, before it can be enabled it checks to see if the Entity Reference or Reference module is enabled, but during the install process, nothing is enabled yet, so it always fails. I have opened an issue on that module about it (and would love any ideas there): #1774488: Requirements check kills install profiles
In the meantime, you can hack your way around this. Modify the install file for that module, found at
profiles/drupalladder/modules/contrib/nodeaccess_userreference/nodeaccess_userreference.installin your Drupal Ladder site. Find thenodeaccess_userreference_requirements()function, and change it to immediately return the$requirementsarray:That will bypass this requirements check and allow you to continue.