7
Got this working, with only a few glitches
I need to manually create the accounts for the user in xoops, with a 'dummy' PW. When the user logs in using their AD credentials it works fine. That bit is excellent.
However, my usernames contain a period - firstname.lastname, and XOOPS won't allow those usernames. What I've been forced to do is create the account with just the firstname, then go into MySQL and manually change the loginname field to firstname.lastname. That seems to work. I'm planning on doing a large 'insert' on the tables manually to create the users so that's not a huge deal for me.
But now... after making the changes, I am getting php errors all over the place:
Fatal error: Only variables can be passed by reference in C:Program FilesApache GroupApache2htdocsdspportalmodulessmartsectionincludecommon.php on line 31
For example. that bit of code is:
// Creating the SmartModule object
$smartModule =& ss_getModuleInfo();
$myts = MyTextSanitizer::getInstance();
$smartsection_moduleName = $myts->displayTarea($smartModule->getVar('name'));
not sure where to go with that.