Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Modify _ dmSecUserDirectories.cfm

Add the following to the _dmSecUserDirectories.cfm file. FoUsers

("myUD" can be any variable name, but note that this name is reflected in the security tab. )

Code Block
// External Authentication Client User Directory
application.dmSec.UserDirectory.myUD = structNew(); <!---  choose a unique struct name in inplaceplace of 'myUD' --->
temp = application.dmSec.UserDirectory.myUD;
temp.type = "Daemon"; <!---  the type MUST be "Daemon" when using a SQL database --->
temp.datasource = "myDatasource"; <!--- the name of the ColdFusion DSN created previously --->

...