- Issue created by @mark_fullmer
- 🇺🇸United States justcaldwell Austin, Texas
This can vary depending on where/how the simplesamlphp lib is installed but, given a typical drupal project structure like:
project_root ... /docroot ... /vendor /simplesamlphp
where /docroot (or /www, /web, etc.) is your public web folder. For previous versions you have a symlink named simplesaml that points to the www directory in the simplesamlphp vendor lib:
project_root/docroot/simplesaml -> ../vendor/simplesamlphp/simplesamlphp/www
In the latest version, www has been renamed to public, so your symlink must be updated accordingly:
project_root/docroot/simplesaml -> ../vendor/simplesamlphp/simplesamlphp/public
Again, this is a typical setup — adjust according to your project structure — and there are other ways as well.
Hope that helps!
justcaldwell
Thank you so much for such detailed infor.
per this https://github.com/simplesamlphp/simplesamlphp/blob/master/docs/simplesa...
I found that in my drupal project, I do have a symlink under
/web/
and I modified it as
/web% ln -sf ../vendor/simplesamlphp/simplesamlphp/public simplesamlwhich works!
Thank you again!
- 🇨🇦Canada robbdavis
Yes. Thanks @justcladwell!
For those on Pantehon, fyi, in the config.php, you'll need to set the 'loggingdir' to null.
'loggingdir' => NULL,
- 🇮🇳India swetaranjan
I am also getting the same issue. However after changing to WWW , still its not working. Any help ??