Quote:
|
Originally Posted by madcrock
I also had a problem with logs growing over 1 GB and not being rotated.
It was related with webalizer.php warnings like this:
It's easy to fix. Add $directory_array = array(); just after dir_array function declaration in webalizer.php like this:
Code:
function dir_array($dir){
$directory_array = array();
if ($dirstream = @opendir($dir)) {
Everythings works fine for me now.
|
Do you need to restart anything?