14
@carnuke
Quote:
I do not know what to do here? What module folder? Do I need to create one?
$modversion['dirname'] = "auth";
by changing the value of the variable above, you can have multiple instance with ease.
i.e.
modules/auth (default)
modules/auth2 (when "$modversion['dirname']" is "auth2";)
$auth_dir = "sample";
You can see "sample" directory in "auth" directory, right? This is where you put your contents by default.
If it doesn't work try the following values:
$auth_dir = "modules/auth/sample"; (default)
or
$auth_dir = "physical_path/modules/auth/sample"; (default)
What you have downloaded is an add-on to make your html contents searchable as Bender says. Don't forget to change the name of search function in "include/search.inc.php" when you use multiple instance. Or it causes conflicts
As regards its authentication, I have no idea since I don't use this module.