Home
last modified time | relevance | path

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

/plugin/calendar/classes/
DAuditLogger.php157 $logFile = $this->logDir . '/calendar_audit.log';
160 $this->rotateLogIfNeeded($logFile);
166 $fp = @fopen($logFile, 'a');
180 * @param string $logFile Path to log file
182 private function rotateLogIfNeeded($logFile) { argument
183 if (!file_exists($logFile)) return;
185 $size = @filesize($logFile);
190 $oldFile = $logFile . '.' . $i;
191 $newFile = $logFile . '.' . ($i + 1);
202 @rename($logFile, $logFile . '.1');
[all …]
/plugin/file2dw/
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/
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/
Daction.php114 $this->logFile = $this->getConf( 'logFile' );
115 …if ( isset( $this->logFile ) ) if ( file_exists( dirname( $this->logFile ) ) || mkdir( dirname( $t…
116 … ( ! ( $this->logFileHandle = @fopen( $this->logFile, 'a' ) ) ) unset( $this->logFileHandle, $this…
117 } else unset( $this->logFile );
/plugin/authshibboleth/plugin/authshibboleth/
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/calendar/
Dadmin.php495 $logFile = $this->getSyncLogPath();
496 $logWritable = is_writable($logFile) || is_writable(dirname($logFile));
514 …"background:#f0f0f0; padding:2px 4px; border-radius:2px;">chmod 666 ' . $logFile . '</code></span>…
537 …r:#888; font-size:10px; margin:3px 0;"><em>Note: The script logs to ' . $logFile . ' automatically…
641 …ize:0.8em; margin:0 0 8px;">Location: <code style="font-size:10px;">' . $logFile . '</code> • Upda…
5214 $logFile = $this->getSyncLogPath();
5215 $logDir = dirname($logFile);
5226 if (!file_exists($logFile)) {
5227 if (!@touch($logFile)) {
5228 … echo json_encode(['success' => false, 'message' => 'Cannot create log file: ' . $logFile]);
[all …]
Dsync_outlook.php62 $logFile = $dataDir . 'sync.log'; variable
77 global $logFile, $verbose, $config;
91 file_put_contents($logFile, $logLine, FILE_APPEND);
/plugin/botbouncer/lib/
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);
/plugin/authcas/
DREADME.md52 $conf['plugin']['authcas']['logFile']="";