X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot_cfg.php.dist;h=5b70c9919ffc7403ca10e0b87fe7add3fd19cdc6;hp=07795c64e3d110cc4ad60266d31d1f9b92dad5e1;hb=f32fe065bf1569d42d4e8921bc0cab0aa98ef782;hpb=75a329ec022ef21019afb17aecf776a10083e0cb diff --git a/phpfspot_cfg.php.dist b/phpfspot_cfg.php.dist index 07795c6..5b70c99 100644 --- a/phpfspot_cfg.php.dist +++ b/phpfspot_cfg.php.dist @@ -66,6 +66,12 @@ class PHPFSPOT_CFG { */ var $hide_tags = Array("Favorites", "Hidden", "People", "Places", "Events"); + /* logging = display || errorlog || logfile */ + var $logging = "display"; + + /* set this if you chose logging = logfile */ + var $log_file = "phpfspot_err.log"; + /* no need to modified anything below this line */ var $error_found = 0; @@ -119,6 +125,19 @@ class PHPFSPOT_CFG { if(!isset($this->theme_name)) $this->showError("Please set \$theme_name in phpfspot_cfg"); + if(!isset($this->logging)) + $this->showError("Please set \$logging in phpfspot_cfg"); + + if(isset($this->logging) && $this->logging == 'logfile') { + + if(!isset($this->log_file)) + $this->showError("Please set \$log_file because you set logging = log_file in phpfspot_cfg"); + + if(!is_writeable($this->log_file)) + $this->showError("The specified \$log_file ". $log_file ." is not writeable!"); + + } + if(isset($this->error_found) && $this->error_found) exit(1);