Home
last modified time | relevance | path

Searched refs:logFile (Results 1 – 5 of 5) sorted by relevance

/plugin/file2dw/
H A Daction.php136 $this->logFile = $this->getConf( 'logFile' );
137 if ( isset( $this->logFile ) ) {
138 if ( file_exists( dirname( $this->logFile ) ) || mkdir( dirname( $this->logFile ) ) ) {
139 if ( ! ( $this->logFileHandle = @fopen( $this->logFile, 'a' ) ) ) {
140 unset( $this->logFileHandle, $this->logFile );
143 unset( $this->logFile );
/plugin/odt2dw/
H A Daction.php97 $this->logFile = $this->getConf( 'logFile' );
98 …if ( isset( $this->logFile ) ) if ( file_exists( dirname( $this->logFile ) ) || mkdir( dirname( $t…
99 … ( ! ( $this->logFileHandle = @fopen( $this->logFile, 'a' ) ) ) unset( $this->logFileHandle, $this…
100 } else unset( $this->logFile );
/plugin/odtplus2dw/
H A Daction.php112 //If used, open the logFile
114 $this->logFile = $this->getConf( 'logFile' );
115 if ( isset( $this->logFile ) ) if ( file_exists( dirname( $this->logFile ) ) || mkdir( dirname( $this->logFile ) ) ) {
116 if ( ! ( $this->logFileHandle = @fopen( $this->logFile, 'a' ) ) ) unset( $this->logFileHandle, $this->logFile );
117 } else unset( $this->logFile );
/plugin/authshibboleth/plugin/authshibboleth/
H A Dauth.php931 $logFile = $this->getConf(self::CONF_LOG_FILE);
932 if ($logFile) {
934 if (file_exists($logFile)) {
935 if (! is_writable($logFile)) {
936 $this->debug(sprintf("Log file '%s' not writable", $logFile));
943 if (false === file_put_contents($logFile, $message, $flags)) {
944 $this->debug(sprintf("Error writing to log file '%s'", $logFile));
/plugin/botbouncer/lib/
H A Dbotbouncer.php304 private function addLogEntry($logFile,$entry) { argument
307 $logFile = basename($logFile,'.log');
318 file_put_contents($this->logRoot.'/'.$logFile.date('Y-m-d').'.log',$logEntry."\n",FILE_APPEND);