Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Drupal integration
This discussion has been closed.
Comments
I have done a little investigation this afternoon on my problems after integrating drupal (6.1) and vanilla 1.1.4), although I have now updated Drupal to 6.2, see release notes .
No change after update.
I was reviewing my error log and discovered there were a run or errors in 'root/vanilla/appg/init_vanilla.php'
I thought I would list these below:
"failed to open stream: No such file or directory..." (lines 17- 34 & 44)
17 include($Configuration['APPLICATION_PATH'].'appg/headers.php');
18 include($Configuration['APPLICATION_PATH'].'appg/database.php');
19 include($Configuration['DATABASE_PATH']);
(break...)
44 $Context = new Context($Configuration);
I have error log, can email if this would be helpful?
My though was that there may be an issue with $Configuration ['APPLICATION_PATH'] and ['LIBRARY_PATH'] ?
Any ideas?
Sorry for throwing this out there, but I have stretched my very limited knowledge to it limit.
Cheers
Chris
Chris
Has anyone else integrated drupal 6.1 (now 6.2) and vanilla 1.1.4?
What reasons would cause /conf/settings.php not to be able to be opened, accessed or updated when adding certain extensions?
Other than what has been suggested already. I only know what the guide suggested in the wiki, am no php or sql expert.
Your help or suggestions are very gratefully received.
Chris
in guide the as part of drupal authentication you need to add few lines to path/to/root/Vanilla-1.1.2/conf/settings.php/
/ Drupal Configuration
$Configuration['DRUPAL_PATH'] = '/path/to/root/';
$configuration['DRUPAL_SITE'] = 'default';
(should '/path/to/root/' be entered literally or edited to reflect my actual path?)
In the Drupal example the Authenticate function is ignored and set to return true. The interesting bits all take place in GetIdentity(). In contrast, the LDAP example modifies Authenticate(). The Drupal example seems cleaner, though both seem to work. Is there a good reason to use one vs. the other?
I would like to extend the Drupal example (modifying GetIdentity) to cover user creation as in the LDAP thread, but I would like to make sure I'm not missing anything. In my case user creation and password management would all be outside of Vanilla.
Thanks in advance for any feedback,
Dan