The server returned a "500 - Whoops, looks like something went wrong."
* @return void
*/
protected function parse_attr($node, $name, &$space)
{
// Per sourceforge: https://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037
// If the attribute is already defined inside a tag, only pay attention
// to the first one as opposed to the last one.
// https://stackoverflow.com/a/26341866
if (isset($node->attr[$name])) {
return;
}
// [2] Whitespace between "=" and the value
$space[2] = $this->copy_skip($this->token_blank);
switch ($this->char) {
case '"': // value is anything between double quotes
$node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE;
$this->char = (++$this->pos < $this->size) ? $this->doc[$this->pos] : null; // next
$node->attr[$name] = $this->restore_noise($this->copy_until_char('"'));
$this->char = (++$this->pos < $this->size) ? $this->doc[$this->pos] : null; // next
break;
case '\'': // value is anything between single quotes
$node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_SINGLE;
$this->char = (++$this->pos < $this->size) ? $this->doc[$this->pos] : null; // next
$node->attr[$name] = $this->restore_noise($this->copy_until_char('\''));
$this->char = (++$this->pos < $this->size) ? $this->doc[$this->pos] : null; // next
break;
default: // value is anything until the first space or end tag
$node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_NO;
$node->attr[$name] = $this->restore_noise($this->copy_until($this->token_attr));
}
// PaperG: Attributes should not have \r or \n in them, that counts as
// html whitespace.
$node->attr[$name] = str_replace("\r", '', $node->attr[$name]);
$node->attr[$name] = str_replace("\n", '', $node->attr[$name]);
// PaperG: If this is a "class" selector, lets get rid of the preceeding
// and trailing space since some people leave it in the multi class case.
if ($name === 'class') {
$node->attr[$name] = trim($node->attr[$name]);
"Allowed memory size of 1073741824 bytes exhausted (tried to allocate 20480 bytes)"
}
/**
* Special case to deal with Fatal errors and the like.
*
* @return void
*/
public function handleShutdown()
{
// If we reached this step, we are in shutdown handler.
// An exception thrown in a shutdown handler will not be propagated
// to the exception handler. Pass that information along.
$this->canThrowExceptions = false;
$error = $this->system->getLastError();
if ($error && Misc::isLevelFatal($error['type'])) {
// If there was a fatal error,
// it was not handled in handleError yet.
$this->allowQuit = false;
$this->handleError(
$error['type'],
$error['message'],
$error['file'],
$error['line']
);
}
}
/**
* @param InspectorFactoryInterface $factory
*
* @return void
*/
public function setInspectorFactory(InspectorFactoryInterface $factory)
{
$this->inspectorFactory = $factory;
}
public function addFrameFilter($filterCallback)
}
// Propagate error to the next handler.
if ($this->platformExceptionHandler) {
call_user_func_array($this->platformExceptionHandler, [&$exception]);
}
}
/**
* Special case to deal with Fatal errors and the like.
*/
public function handleShutdown()
{
$handler = $this->whoopsShutdownHandler;
$error = $this->getLastError();
// Ignore core warnings and errors.
if ($error && !($error['type'] & (E_CORE_WARNING | E_CORE_ERROR))) {
$handler();
}
}
}
| Key | Value |
| id | "7"
|
| view | "category"
|
| Key | Value |
| joomla | "TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mjp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzg4NzE4NjEzO3M6NDoibGFzdCI7aToxNzg4NzE4NjEzO3M6Mzoibm93IjtpOjE3ODg3MTg2MTM7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9"
|
| Key | Value |
| PATH | "/usr/local/bin:/usr/bin:/bin"
|
| TEMP | "/tmp"
|
| TMP | "/tmp"
|
| TMPDIR | "/tmp"
|
| PWD | "/"
|
| LSCAPI_CRIU_SYNC_FD | "7"
|
| DOCUMENT_ROOT | "/home/udqb0598/dys10.fr"
|
| HTTP_ACCEPT | "*/*"
|
| CONTENT_LENGTH | "0"
|
| HTTP_HOST | "www.dys10.fr"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_X_COUNTRY_CODE | "US"
|
| HTTP_X_AUTONOMOUS_SYSTEM | "16509"
|
| HTTP_X_REAL_IP | "216.73.216.159"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_FORWARDED_PORT | "443"
|
| HTTP_X_SSL | "yes"
|
| HTTP_X_HTTPS | "1"
|
| UNIQUE_ID | "ap2uFZTC5tGPa8obo8asrgAAAFA"
|
| SCRIPT_URL | "/index.php/blog-dys-10"
|
| SCRIPT_URI | "https://www.dys10.fr/index.php/blog-dys-10"
|
| HTTPS | "on"
|
| SSL_TLS_SNI | "www.dys10.fr"
|
| SERVER_SIGNATURE | "" |
| SERVER_SOFTWARE | "Apache"
|
| SERVER_NAME | "www.dys10.fr"
|
| SERVER_ADDR | "109.234.165.90"
|
| SERVER_PORT | "443"
|
| REMOTE_ADDR | "216.73.216.159"
|
| REQUEST_SCHEME | "https"
|
| CONTEXT_PREFIX | "" |
| CONTEXT_DOCUMENT_ROOT | "/home/udqb0598/dys10.fr"
|
| SERVER_ADMIN | "webmaster@dys10fr.udqb0598.odns.fr"
|
| SCRIPT_FILENAME | "/home/udqb0598/dys10.fr/index.php"
|
| REMOTE_PORT | "59500"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| REQUEST_METHOD | "GET"
|
| QUERY_STRING | "id=7&view=category"
|
| REQUEST_URI | "/index.php/blog-dys-10?id=7&view=category"
|
| SCRIPT_NAME | "/index.php"
|
| PATH_INFO | "/blog-dys-10"
|
| PATH_TRANSLATED | "/home/udqb0598/dys10.fr/blog-dys-10"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1788718613.2427
|
| REQUEST_TIME | 1788718613
|