Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Log Files Management Error
#6
Hi

In "op.FolderAccess.php" file change line 95

PHP Code:
if (!is_object(getGroup($_GET["groupid"]))) { 
to
PHP Code:
if (!is_object($dms->getGroup($_GET["groupid"]))) { 

In "op.ManageNotify.php" file change line 30

PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
    
$folder->addNotify($useridtrue); 
to
PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
    global 
$dms;
  
    
$folder->addNotify($useridtrue); 

In "out.LogManagement.php" file change line 88

PHP Code:
if (file_exists($settings->_contentDir.$logname)){ 
to
PHP Code:
if (isset($logname) && (file_exists($settings->_contentDir.$logname)) ) { 


Doudoux

Reply


Messages In This Thread
Log Files Management Error - by zaguar - 03-14-2011, 08:38 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)