You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Most HTTPD servers have a default header line length limit of 8kb, must test to avoid 500 Internal Server Error.
401
401
if (strlen($header) > self::HTTPD_HEADER_LIMIT) {
402
-
$data['rows'] = array();
403
-
$data['rows'][] = array(array('ChromePHP Error: The HTML header will surpass the limit of '.$this->_formatSize(self::HTTPD_HEADER_LIMIT).' ('.$this->_formatSize(strlen($header)).') - You can increase the HTTPD_HEADER_LIMIT on ChromePHP class, according to your Apache LimitRequestFieldsize directive'), '', self::ERROR);
402
+
$data['rows'] = [];
403
+
$data['rows'][] = [
404
+
[
405
+
'ChromePHP Error: The HTML header will surpass the limit of ' .
0 commit comments