Home
last modified time | relevance | path

Searched +full:error -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 220) sorted by path

123456789

/dokuwiki/bin/
H A Ddwpage.php284 $this->error("Page $wiki_id is already locked by another user");
291 $this->error("Unable to obtain lock for $wiki_id ");
308 $this->error("Page $wiki_id is locked by another user");
315 $this->error("Unable to clear lock for $wiki_id");
331 $this->error("Unable to delete $wikiLockFN");
H A Dgittool.php122 $this->error("could not find a repository for $ext");
133 if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors));
165 if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors));
184 $this->error("Could not change into $repo");
195 $this->error("git failed in $repo");
227 $this->error("no download URL for $ext");
236 $this->error($e->getMessage());
270 $this->error("cloning of $ext failed");
292 $this->error('Found no .git directories');
/dokuwiki/
H A Dfeed.php30 echo '<error>RSS feed is disabled.</error>';
73 echo '<error>' . hsc($e->getMessage()) . '</error>';
/dokuwiki/inc/Action/
H A DDenied.php41 * Display error on denied pages
H A DLocked.php30 * Display error on locked pages
H A DPreview.php44 foreach ($errors as $error) {
45 msg(hsc($error), -1);
H A DResendpwd.php65 * @return bool true on success, false on any error
/dokuwiki/inc/Action/Exception/
H A DActionAbort.php11 * If you want to signal the same but under some error condition use ActionException
H A DFatalException.php24 public function __construct($message = 'A fatal error occured', $status = 500, $previous = null)
/dokuwiki/inc/
H A DAjax.php291 if (isset($_FILES['qqfile']['error']) && $_FILES['qqfile']['error']) unset($_FILES['qqfile']);
305 $error = '';
308 $error .= $msg['msg'];
311 $result = ['error' => $error, 'ns' => $NS];
H A DErrorHandler.php15 * Standard error codes used in PHP errors
37 * Register the default error handling
54 * The exception is logged to the error log
62 $msg = 'An unforeseen error has occured. This is most likely a bug somewhere.';
65 ? 'More info has been written to the DokuWiki error log.'
85 * Convenience method to display an error message for the given Exception
90 public static function showExceptionMsg($e, $intro = 'Error!')
93 if (self::logException($e)) $msg .= '<br />More info is available in the error log.';
102 $error = error_get_last();
103 // Check if it's a core/fatal error, otherwis
[all...]
H A DFeedParserFile.php34 $this->error = $this->http->error;
H A DJpegMeta.php997 return false; // ERROR: Can't open file
1006 return false; // ERROR: File is not a JPEG
1030 return false; // ERROR: Unexpected EOF
1033 return false; // ERROR: Extraneous data
1038 return false; // ERROR: Unexpected EOF
1041 return false; // ERROR: Extraneous data
1148 return false; // ERROR: Can't open file
1156 return false; // ERROR: Can't open output file
1164 return false; // ERROR: File is not a JPEG
1190 break; // ERROR
[all...]
H A DLogger.php12 public const LOG_ERROR = 'error';
55 * Convenience method to directly log to the error log
63 public static function error($message, $details = null, $file = '', $line = 0) function in dokuwiki\\Logger
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php263 } //error state
663 Logger::error($msg, $details, $this->getFilename());
H A DChangeLogTrait.php192 if ($tmp === false) { //error state
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php115 // Since PHP triggers an error on public access of non-public properties but happily
/dokuwiki/inc/Extension/
H A DAuthPlugin.php261 * Returns false if the user already exists, null when an error
/dokuwiki/inc/File/
H A DPageFile.php242 Logger::error($msg, $details, $fileLastMod);
244 // runtime error
/dokuwiki/inc/HTTP/
H A DHTTPClient.php37 // don't set these, read on error variable in dokuwiki\\HTTP\\HTTPClient
38 public $error;
82 * Returns the wanted page or false on an error;
86 * @return false|string response body, false on error
101 * Returns the wanted page or false on an error.
109 * @return false|string response body, false on error
127 * Returns the resulting page or false on an error;
131 * @return false|string response body, false on error
161 $this->error = '';
205 $this->error
[all...]
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php128 * Will fail if the handlers report an error or if no content is consumed. If successful then each
181 * @return boolean False if there was any error from the parser.
282 * True if no match, false if there is a parsing error.
H A DParallelRegex.php108 msg('A PCRE backtrack error occured. Try to increase the pcre.backtrack_limit in php.ini', -1);
111 msg('A PCRE recursion error occured. Try to increase the pcre.recursion_limit in php.ini', -1);
114 msg('A PCRE UTF-8 error occured. This might be caused by a faulty plugin', -1);
117 msg('A PCRE internal error occured. This might be caused by a faulty plugin', -1);
/dokuwiki/inc/Remote/
H A DApi.php89 Logger::error("Remote Plugin $pluginName does not implement dokuwiki\Extension\RemotePlugin");
96 Logger::error(
153 throw new AccessDeniedException('Server Error. API is not enabled in config.', -32604);
178 throw new AccessDeniedException('server error. not authorized to call method', -32604);
H A DXmlRpcServer.php8 use IXR\Message\Error;
58 return new Error(-32603, "server error. not authorized to call method $methodname");
61 return new Error(-32604, "server error. forbidden to call the method $methodname");
64 return new Error($e->getCode(), $e->getMessage());
/dokuwiki/inc/Remote/IXR/
H A DClient.php51 $this->handleError(-32300, 'transport error - ' . $this->httpClient->error);
57 $this->handleError(-32300, 'transport error - HTTP status ' . $this->httpClient->status);
64 // XML error
65 return $this->handleError(-32700, 'Parse error. Message not well formed');

123456789