LetoDMS Community Forum
Blank page under 'Log files management' - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Technical Support (https://community.letodms.com/forumdisplay.php?fid=10)
+--- Thread: Blank page under 'Log files management' (/showthread.php?tid=152)

Pages: 1 2


Blank page under 'Log files management' - fleblic - 08-28-2010

When I click under 'Log files management' in Admin-Tools, I get a blank page with no data. Anybody knows why this could happen??


RE: Blank page under 'Log files management' - administrator - 08-28-2010

please post your mysql and php version and what is apache version your using ?

and post your LetoDMS version too

Thanks

LetoDMS


RE: Blank page under 'Log files management' - fleblic - 08-28-2010

Hello;

I am using EasyPHP 5.3.3 Bundle (http://www.easyphp.org/)

PHP 5.3.3 | Apache 2.2.16 | MySQL 5.1.49 |

Thanks

(08-28-2010, 04:34 AM)administrator Wrote: please post your mysql and php version and what is apache version your using ?

and post your LetoDMS version too

Thanks

LetoDMS



RE: Blank page under 'Log files management' - matteo lucarelli - 08-30-2010

Are log enabled in the settings file?


RE: Blank page under 'Log files management' - fleblic - 08-30-2010

Yes , It is enable: Undecided

// set false to disable log system
var $_logFileEnable = true;

// the log file rotation (h=hourly, d=daily, m=monthly)
var $_logFileRotation = "d";


RE: Blank page under 'Log files management' - matteo lucarelli - 08-30-2010

What is shown in the address page of your browser when you are ont this blank page?
There are logs in your data folder? (verify accesing via ftp to the data folder)
Can you see the header (global menu , etc) or the page is completely blank?


RE: Blank page under 'Log files management' - fleblic - 08-30-2010

address page:
http://localhost/gesdoc/out/out.LogManagement.php

There are these logs in my data folder:
20100826.log
20100827.log
20100828.log
20100830.log

I can not see the header (global menu , etc). Page is is completely blank.

Everything else is working perfectly except this log administration issue.

Thanks.


RE: Blank page under 'Log files management' - fleblic - 08-30-2010

The php script 'http://localhost/gesdoc/out/out.LogManagement.php' stops running in:

if (isset($_GET["logname"])) $logname=$_GET["logname"];
else if (@readlink($settings->_contentDir."current.log")){
$logname=basename(@readlink($settings->_contentDir."current.log"));
}

After these lines, If I write:

echo "Good Bye";
die;

I don't get the Good Bye in the blank page.

I have no idea why Sad


RE: Blank page under 'Log files management' - matteo lucarelli - 08-31-2010

Try removing the "@" before readlink instructions. The "@" hides error. If the error is there you should be able to see it on the page output.


RE: Blank page under 'Log files management' - fleblic - 09-01-2010

This is what I get if I Remove the "@" before readlink instructions.

Fatal error: Call to undefined function readlink() in C:\Archivos de programa\EasyPHP-5.3.3\www\gesdoc\out\out.LogManagement.php

Sad