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 relevance

123456789

/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php8 use IXR\Message\Error; alias
41 $this->error(-32700, 'parse error. not well formed');
44 $this->error(-32600, 'server error. invalid xml-rpc. not conforming to spec. Request must be a methodCall');
48 // Is the result an error?
49 if ($result instanceof Error) {
50 $this->error($result);
77 return new Error(-32601, 'server error
103 error($error, $message = false) global() argument
[all...]
H A DClassServer.php4 use IXR\Message\Error; alias
60 return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.');
82 return new Error(-32601, 'server error. requested class method "' . $method . '" does not exist.');
90 return new Error(-32601, 'server error. requested function "' . $method . '" does not exist.');
H A DIntrospectionServer.php6 use IXR\Message\Error; alias
70 return new Error(-32601,
71 'server error. requested method "' . $this->message->methodName . '" not specified.');
79 return new Error(-32602, 'server error. wrong number of method parameters');
120 return new Error(-32602, 'server error. invalid method parameters');
130 return new Error(-32601, 'server error. requested method "' . $method . '" not specified.');
/dokuwiki/inc/
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;
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php56 'error' => array(
167 'Valid levels are: debug, info, notice, success, warning, error, critical, alert, emergency.',
252 * Exits the program on a fatal error
254 * @param \Exception|string $error either an exception or an error message
257 public function fatal($error, array $context = array())
260 if (is_object($error) && is_a($error, 'Exception')) {
261 /** @var Exception $error */
262 $this->logMessage('debug', get_class($error)
188 fatal($error, array $context = array()) global() argument
[all...]
/dokuwiki/lib/scripts/
H A Dhelpers.js54 * Report an error from a JS file to the console
56 * @param e The error object
57 * @param file The file in which the error occurred
60 if (window.console && console.error) {
61 console.error('The error "%s: %s" occurred in file "%s". ' +
66 console.error(e.stack);
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php4 use IXR\Message\Error; alias
32 * @var null|Error
34 * Storage place for an error message
36 private $error = null; variable in IXR\\Client\\Client
107 return $this->handleError(-32300, 'transport error - could not open socket');
122 return $this->handleError(-32300, 'transport error - HTTP status code was not 200');
144 // XML error
145 return $this->handleError(-32700, 'Parse error. Message not well formed');
165 return (is_object($this->error));
170 $this->error
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingAuthtype.php32 if (!parent::update($input)) return false; // nothing changed or an error caught by parent
33 $this->local = $local; // restore original, more error checking to come
38 // @TODO: throw an error in plugin controller instead of returning null
40 $this->error = true;
47 $this->error = true;
H A DSettingArray.php38 * if value fails error check, save it
41 * @return bool true if changed, false otherwise (incl. on error)
55 $this->error = true;
73 } elseif ($echo && $this->error) {
H A DSetting.php26 protected $error = false; // only used by those classes which error check
27 protected $input; // only used by those classes which error check
88 $this->error = true;
194 * @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
204 } elseif ($echo && $this->error) {
302 * Has an error?
308 return $this->error;
25 protected $error = false; // only used by those classes which error check global() variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
H A DSettingSavedir.php19 $this->error = true;
/dokuwiki/lib/exe/
H A Ddetail.php9 global $INPUT, $IMG, $ID, $REV, $SRC, $ERROR, $AUTH;
27 $ERROR = false; variable
36 $ERROR = 'File not found'; variable
40 $ERROR = p_locale_xhtml('denied'); variable
H A Dxmlrpc.php18 $server->error($e->getCode(), $e->getMessage());
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php63 $this->error($this->getLang('noauth'));
102 $this->error($this->getLang('nosupport'));
151 $this->error($this->getLang('nosupport'));
163 $this->error($this->getLang('add_fail'));
164 $this->error($this->getLang('addUser_error_missing_pass'));
169 $this->error($this->getLang('add_fail'));
170 $this->error($this->getLang('addUser_error_modPass_disabled'));
178 $this->error($this->getLang('add_fail'));
179 $this->error($this->getLang('addUser_error_create_event_failed'));
197 $this->error(
[all...]
/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');
/dokuwiki/lib/styles/
H A Dscreen.css7 div.error,
23 [dir=rtl] div.error,
32 div.error {
34 background-image: url(../images/error.png);
H A Dprint.css6 div.error, /* messages with msg() */
/dokuwiki/
H A Dinstall.php23 // check for error reporting override or set error reporting to sane values
41 $error = [];
314 global $error;
333 $error[] = sprintf($lang['i_badval'], $lang['i_wikiname']);
338 $error[] = sprintf($lang['i_badval'], $lang['i_superuser']);
342 $error[] = sprintf($lang['i_badval'], $lang['pass']);
345 $error[] = sprintf($lang['i_badval'], $lang['passchk']);
349 $error[] = sprintf($lang['i_badval'], $lang['fullname']);
353 $error[]
44 $error = array(); global() variable
[all...]
/dokuwiki/inc/Action/
H A DPreview.php44 foreach ($errors as $error) {
45 msg(hsc($error), -1);
/dokuwiki/bin/
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/vendor/simplepie/simplepie/src/
H A DFile.php68 public $error; variable in SimplePie\\File
120 $this->error = 'cURL error ' . curl_errno($fp) . ': ' . curl_error($fp);
157 $this->error = 'fsockopen error: ' . $errstr;
214 $this->error = 'Unable to decode HTTP "gzip" stream';
229 $this->error = 'Unable to decode HTTP "deflate" stream';
235 $this->error = 'Unknown content coding';
241 $this->error = 'fsocket timed out';
250 $this->error
[all...]
/dokuwiki/lib/tpl/dokuwiki/
H A Ddetail.php39 <?php if (!$ERROR) : ?>
48 if ($ERROR) :
49 echo '<h1>' . $ERROR . '</h1>';
89 <?php if (!$ERROR) : ?>
/dokuwiki/inc/Action/Exception/
H A DActionAbort.php11 * If you want to signal the same but under some error condition use ActionException
/dokuwiki/inc/Remote/
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());

123456789