| /dokuwiki/ |
| H A D | install.php | 41 $error = []; variable 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[] = sprintf($lang['i_badval'], $lang['email']); 504 global $error; 509 $error[] = sprintf($lang['i_writeerr'], $filename); [all …]
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/Utils/ |
| H A D | Asserts.php | 63 * @param string $error The error message to throw 66 public static function assertNumber(array $value, string $error = 'expecting number'): float argument 69 throw new Exception($error); 75 public static function assertColor(array $value, $error = 'expected color value'): array argument 78 if (is_null($color)) throw new Exception($error);
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Server/ |
| H A D | Server.php | 47 $this->error(-32700, 'parse error. not well formed'); 50 …$this->error(-32600, 'server error. invalid xml-rpc. not conforming to spec. Request must be a met… 56 $this->error($result); 109 public function error($error, $message = false) function in IXR\\Server\\Server 112 if ($message && !is_object($error)) { 113 $error = new Error($error, $message); 115 $this->output($error->getXml());
|
| /dokuwiki/inc/ |
| H A D | ErrorHandler.php | 102 $error = error_get_last(); 105 $error !== null && 107 $error['type'], 116 … new FatalException($error['message'], 0, $error['type'], $error['file'], $error['line'])
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 63 $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($this->getLang('nosupport')); [all …]
|
| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | Base.php | 257 public function fatal($error, array $context = array()) argument 260 if (is_object($error) && is_a($error, 'Exception')) { 262 …$this->logMessage('debug', get_class($error) . ' caught in ' . $error->getFile() . ':' . $error->g… 263 $this->logMessage('debug', $error->getTraceAsString()); 264 $code = $error->getCode(); 265 $error = $error->getMessage(); 272 $this->logMessage('critical', $error, $context);
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | ParserException.php | 10 protected string $error = ''; variable in LesserPHP\\ParserException 22 $this->error = $message; 46 return $this->error;
|
| /dokuwiki/lib/scripts/ |
| H A D | helpers.js | 60 if (window.console && console.error) { 61 console.error('The error "%s: %s" occurred in file "%s". ' + 66 console.error(e.stack);
|
| /dokuwiki/bin/ |
| H A D | gittool.php | 124 $this->error("could not find a repository for $ext"); 135 … if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors)); 161 $this->error("failed to install $ext via download"); 173 …if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors)); 192 $this->error("Could not change into $repo"); 203 $this->error("git failed in $repo"); 241 $this->error("cloning of $ext failed"); 263 $this->error('Found no .git directories');
|
| H A D | dwpage.php | 288 $this->error("Page $wiki_id is already locked by another user"); 295 $this->error("Unable to obtain lock for $wiki_id "); 312 $this->error("Page $wiki_id is locked by another user"); 319 $this->error("Unable to clear lock for $wiki_id"); 335 $this->error("Unable to delete $wikiLockFN");
|
| /dokuwiki/inc/Action/ |
| H A D | Preview.php | 44 foreach ($errors as $error) { 45 msg(hsc($error), -1);
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedParserFile.php | 34 $this->error = $this->http->error;
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
| H A D | Client.php | 36 private $error = null; variable in IXR\\Client\\Client 165 return (is_object($this->error)); 170 $this->error = new Error($errorCode, $errorMessage); 177 return $this->error; 182 return $this->error->code; 187 return $this->error->message;
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingAuthtype.php | 40 $this->error = true; 47 $this->error = true;
|
| H A D | SettingSavedir.php | 19 $this->error = true;
|
| H A D | SettingArray.php | 55 $this->error = true; 73 } elseif ($echo && $this->error) {
|
| H A D | Setting.php | 26 protected $error = false; // only used by those classes which error check variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting 88 $this->error = true; 204 } elseif ($echo && $this->error) { 308 return $this->error;
|
| H A D | SettingImConvert.php | 21 $this->error = true;
|
| /dokuwiki/lib/exe/ |
| H A D | xmlrpc.php | 18 $server->error($e->getCode() ?: 1, $e->getMessage());
|
| /dokuwiki/inc/Remote/IXR/ |
| H A D | Client.php | 51 $this->handleError(-32300, 'transport error - ' . $this->httpClient->error); 57 … $this->handleError(-32300, 'transport error - HTTP status ' . $this->httpClient->status);
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | File.php | 67 public $error; variable in SimplePie\\File 119 $this->error = 'cURL error ' . curl_errno($fp) . ': ' . curl_error($fp); 156 $this->error = 'fsockopen error: ' . $errstr; 213 $this->error = 'Unable to decode HTTP "gzip" stream'; 228 $this->error = 'Unable to decode HTTP "deflate" stream'; 234 $this->error = 'Unknown content coding'; 240 $this->error = 'fsocket timed out'; 249 $this->error = 'file_get_contents could not read the file';
|
| /dokuwiki/lib/styles/ |
| H A D | screen.css | 7 div.error, 23 [dir=rtl] div.error, 32 div.error { 34 background-image: url(../images/error.png);
|
| H A D | print.css | 6 div.error, /* messages with msg() */
|
| /dokuwiki/inc/lang/ca-valencia/ |
| H A D | read.txt | 1 …Pot vore el còdic font, pero no pot canviar-lo. Pregunte a l'administrador si creu que és un error.
|
| /dokuwiki/inc/lang/ca/ |
| H A D | read.txt | 1 …ò no podeu canviar-la. Consulteu el vostre administrador si penseu que això és degut a algun error.
|