* Make the default general_lib_type sql instead of ldap
* Allow selecting a specific access server in the failed logins page
* In the user admin page use AcctStartTime not AcctStopTime when calculating usage for the last 7 days
* Also show server:port in the user test page (so that it shows when used for server checks)
+* Now the create user page should work with sql
+* Make the default general_lib_type sql instead of ldap
Ver 1.60:
* Use require_once when including lib/functions.php3 in lib/sql
* In the buttons toolbar Edit User should not be clickable.
#
# it can be either ldap or sql
#
-general_lib_type: ldap
+general_lib_type: sql
general_user_edit_attrs_file: %{general_base_dir}/conf/user_edit.attrs
general_sql_attrs_file: %{general_base_dir}/conf/sql.attrs
general_default_file: %{general_base_dir}/conf/default.vals
echo "<b>Could not include SQL library</b><br>\n";
exit();
}
+include_once('../lib/functions.php3');
if ($config[sql_use_operators] == 'true'){
include("../lib/operators.php3");
$text = ',op';
<?php
+require('../lib/sql/attrmap.php3');
if ($login != ''){
- require('../lib/sql/attrmap.php3');
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php3"))
include_once("../lib/sql/drivers/$config[sql_type]/functions.php3");
else{