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:
<?php 
if (!is_object(getGroup($_GET["groupid"]))) {
to
PHP Code:
<?php 
if (!is_object($dms->getGroup($_GET["groupid"]))) {

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

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

$folder->addNotify($userid, true);

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

PHP Code:
<?php 
if (file_exists($settings->_contentDir.$logname)){
to
PHP Code:
<?php 
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: