In "op/op.FolderAccess.php" file change line 95
to
In "op/op.ManageNotify.php" file change line 30
to
In "out/out.LogManagement.php" file change line 88
to
In "Core/inc.ClassAccess.php" file add following lines, line 38, in LetoDMS_Core_UserAccess class
In "inc/inc.DBInit.php" file change line 22
to
If you use MySQL under Windows
In "inc.ClassDMS.php" file change line 220
to
Doudoux
PHP Code:
if (!is_object(getGroup($_GET["groupid"]))) {
PHP Code:
if (!is_object($dms->getGroup($_GET["groupid"]))) {
In "op/op.ManageNotify.php" file change line 30
PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
$folder->addNotify($userid, true);
PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
global $dms;
$folder->addNotify($userid, true);
In "out/out.LogManagement.php" file change line 88
PHP Code:
if (file_exists($settings->_contentDir.$logname)){
PHP Code:
if (isset($logname) && (file_exists($settings->_contentDir.$logname)) ) {
In "Core/inc.ClassAccess.php" file add following lines, line 38, in LetoDMS_Core_UserAccess class
PHP Code:
function isAdmin() {
return ($this->_mode == LetoDMS_Core_User::role_admin);
}
In "inc/inc.DBInit.php" file change line 22
PHP Code:
ini_set('include_path', $settings->_ADOdbPath.":".ini_get('include_path'));
PHP Code:
ini_set('include_path', $settings->_ADOdbPath.";".ini_get('include_path'));
If you use MySQL under Windows
In "inc.ClassDMS.php" file change line 220
PHP Code:
if(!array_search('tblVersion', $tbllist))
PHP Code:
$tbllist = explode(',',strtolower(join(',',$tbllist)));
if(!array_search('tblversion', $tbllist))
Doudoux