����JFIF��x�x�����C�      ���C  �����"�������������� �������}�!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������� ������w�!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������ ��?�����N����m?����j����EP��httpsParser.php000064400000001230152214134460006507 0ustar00 */ class SimplePie_HTTP_Parser extends Parser { } } Response.php000064400000015435152214134460007065 0ustar00get_headers() as $name => $values) { * echo $name . ': ' . implode(', ', $values); * } * * // Emit headers iteratively: * foreach ($message->get_headers() as $name => $values) { * foreach ($values as $value) { * header(sprintf('%s: %s', $name, $value), false); * } * } * * @return array> Returns an associative array of the message's headers. * Each key MUST be a header name, and each value MUST be an array of * strings for that header. */ public function get_headers(): array; /** * Checks if a header exists by the given case-insensitive name. * * @param string $name Case-insensitive header field name. * @return bool Returns true if any header names match the given header * name using a case-insensitive string comparison. Returns false if * no matching header name is found in the message. */ public function has_header(string $name): bool; /** * Retrieves a message header value by the given case-insensitive name. * * This method returns an array of all the header values of the given * case-insensitive header name. * * If the header does not appear in the message, this method MUST return an * empty array. * * @param string $name Case-insensitive header field name. * @return string[] An array of string values as provided for the given * header. If the header does not appear in the message, this method MUST * return an empty array. */ public function get_header(string $name): array; /** * Return an instance with the provided value replacing the specified header. * * This method MUST be implemented in such a way as to retain the * immutability of the message, and MUST return an instance that has the * new and/or updated header and value. * * @param string $name Case-insensitive header field name. * @param string|non-empty-array $value Header value(s). * @return static * @throws \InvalidArgumentException for invalid header names or values. */ public function with_header(string $name, $value); /** * Retrieves a comma-separated string of the values for a single header. * * This method returns all of the header values of the given * case-insensitive header name as a string concatenated together using * a comma. * * NOTE: Not all header values may be appropriately represented using * comma concatenation. For such headers, use getHeader() instead * and supply your own delimiter when concatenating. * * If the header does not appear in the message, this method MUST return * an empty string. * * @param string $name Case-insensitive header field name. * @return string A string of values as provided for the given header * concatenated together using a comma. If the header does not appear in * the message, this method MUST return an empty string. */ public function get_header_line(string $name): string; /** * get the body as string * * @return string */ public function get_body_content(): string; } ClientException.php000064400000000515152214134460010355 0ustar00 $headers * * @throws ClientException if anything goes wrong requesting the data */ public function request(string $method, string $url, array $headers = []): Response; } FileClient.php000064400000004333152214134460007300 0ustar00} */ private $options; /** * @param array{timeout?: int, redirects?: int, useragent?: string, force_fsockopen?: bool, curl_options?: array} $options */ public function __construct(Registry $registry, array $options = []) { $this->registry = $registry; $this->options = $options; } /** * send a request and return the response * * @param Client::METHOD_* $method * @param array $headers * * @throws ClientException if anything goes wrong requesting the data */ public function request(string $method, string $url, array $headers = []): Response { // @phpstan-ignore-next-line Enforce PHPDoc type. if ($method !== self::METHOD_GET) { throw new InvalidArgumentException(sprintf( '%s(): Argument #1 ($method) only supports method "%s".', __METHOD__, self::METHOD_GET ), 1); } try { $file = $this->registry->create(File::class, [ $url, $this->options['timeout'] ?? 10, $this->options['redirects'] ?? 5, $headers, $this->options['useragent'] ?? Misc::get_default_useragent(), $this->options['force_fsockopen'] ?? false, $this->options['curl_options'] ?? [] ]); } catch (Throwable $th) { throw new ClientException($th->getMessage(), $th->getCode(), $th); } if ($file->error !== null && $file->get_status_code() === 0) { throw new ClientException($file->error); } return $file; } } Psr18Client.php000064400000010537152214134460007341 0ustar00httpClient = $httpClient; $this->requestFactory = $requestFactory; $this->uriFactory = $uriFactory; } public function getHttpClient(): ClientInterface { return $this->httpClient; } public function getRequestFactory(): RequestFactoryInterface { return $this->requestFactory; } public function getUriFactory(): UriFactoryInterface { return $this->uriFactory; } /** * send a request and return the response * * @param Client::METHOD_* $method * @param string $url * @param array $headers * * @throws ClientException if anything goes wrong requesting the data */ public function request(string $method, string $url, array $headers = []): Response { if ($method !== self::METHOD_GET) { throw new InvalidArgumentException(sprintf( '%s(): Argument #1 ($method) only supports method "%s".', __METHOD__, self::METHOD_GET ), 1); } if (preg_match('/^http(s)?:\/\//i', $url)) { return $this->requestUrl($method, $url, $headers); } return $this->requestLocalFile($url); } /** * @param array $headers */ private function requestUrl(string $method, string $url, array $headers): Response { $permanentUrl = $url; $requestedUrl = $url; $remainingRedirects = $this->allowedRedirects; $request = $this->requestFactory->createRequest( $method, $this->uriFactory->createUri($requestedUrl) ); foreach ($headers as $name => $value) { $request = $request->withHeader($name, $value); } do { $followRedirect = false; try { $response = $this->httpClient->sendRequest($request); } catch (ClientExceptionInterface $th) { throw new ClientException($th->getMessage(), $th->getCode(), $th); } $statusCode = $response->getStatusCode(); // If we have a redirect if (in_array($statusCode, [300, 301, 302, 303, 307]) && $response->hasHeader('Location')) { // Prevent infinity redirect loops if ($remainingRedirects <= 0) { break; } $remainingRedirects--; $followRedirect = true; $requestedUrl = $response->getHeaderLine('Location'); if ($statusCode === 301) { $permanentUrl = $requestedUrl; } $request = $request->withUri($this->uriFactory->createUri($requestedUrl)); } } while ($followRedirect); return new Psr7Response($response, $permanentUrl, $requestedUrl); } private function requestLocalFile(string $path): Response { if (!is_readable($path)) { throw new ClientException(sprintf('file "%s" is not readable', $path)); } try { $raw = file_get_contents($path); } catch (Throwable $th) { throw new ClientException($th->getMessage(), $th->getCode(), $th); } if ($raw === false) { throw new ClientException('file_get_contents() could not read the file', 1); } return new RawTextResponse($raw, $path); } } Psr7Response.php000064400000004201152214134460007626 0ustar00response = $response; $this->permanent_url = $permanent_url; $this->requested_url = $requested_url; } public function get_permanent_uri(): string { return $this->permanent_url; } public function get_final_requested_uri(): string { return $this->requested_url; } public function get_status_code(): int { return $this->response->getStatusCode(); } public function get_headers(): array { // The filtering is probably redundant but let’s make PHPStan happy. return array_filter($this->response->getHeaders(), function (array $header): bool { return count($header) >= 1; }); } public function has_header(string $name): bool { return $this->response->hasHeader($name); } public function with_header(string $name, $value) { return new self($this->response->withHeader($name, $value), $this->permanent_url, $this->requested_url); } public function get_header(string $name): array { return $this->response->getHeader($name); } public function get_header_line(string $name): string { return $this->response->getHeaderLine($name); } public function get_body_content(): string { return $this->response->getBody()->__toString(); } } RawTextResponse.php000064400000004027152214134460010377 0ustar00> */ private $headers = []; /** * @var string */ private $requested_url; public function __construct(string $raw_text, string $filepath) { $this->raw_text = $raw_text; $this->permanent_url = $filepath; $this->requested_url = $filepath; } public function get_permanent_uri(): string { return $this->permanent_url; } public function get_final_requested_uri(): string { return $this->requested_url; } public function get_status_code(): int { return 200; } public function get_headers(): array { return $this->headers; } public function has_header(string $name): bool { return isset($this->headers[strtolower($name)]); } public function get_header(string $name): array { return isset($this->headers[strtolower($name)]) ? $this->headers[$name] : []; } public function with_header(string $name, $value) { $new = clone $this; $newHeader = [ strtolower($name) => (array) $value, ]; $new->headers = $newHeader + $this->headers; return $new; } public function get_header_line(string $name): string { return isset($this->headers[strtolower($name)]) ? implode(", ", $this->headers[$name]) : ''; } public function get_body_content(): string { return $this->raw_text; } } error_log000064400000032547152214134460006476 0ustar00[17-Dec-2025 04:49:55 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [17-Dec-2025 04:49:56 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [17-Dec-2025 04:49:57 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [17-Dec-2025 04:49:57 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [17-Dec-2025 04:49:58 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [13-Jan-2026 07:33:02 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [13-Jan-2026 07:33:05 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [13-Jan-2026 07:33:07 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [13-Jan-2026 07:33:10 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [13-Jan-2026 07:33:15 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [24-Jan-2026 04:12:44 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [24-Jan-2026 04:12:44 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [24-Jan-2026 04:12:45 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [24-Jan-2026 04:12:45 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [24-Jan-2026 04:12:46 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [20-Feb-2026 00:00:08 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [20-Feb-2026 00:00:08 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [20-Feb-2026 00:00:09 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [20-Feb-2026 00:00:10 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [20-Feb-2026 00:00:10 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [22-Feb-2026 12:27:20 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [22-Feb-2026 12:27:21 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [22-Feb-2026 12:27:21 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [22-Feb-2026 12:27:22 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [22-Feb-2026 12:27:23 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [09-Mar-2026 06:02:49 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [09-Mar-2026 06:02:52 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [09-Mar-2026 06:02:55 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [09-Mar-2026 06:02:59 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [09-Mar-2026 06:03:01 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [26-Mar-2026 18:47:50 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [26-Mar-2026 18:47:50 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [26-Mar-2026 18:47:51 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [26-Mar-2026 18:47:52 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [26-Mar-2026 18:47:53 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [30-May-2026 05:11:08 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [30-May-2026 05:11:08 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [30-May-2026 05:11:08 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [30-May-2026 05:11:09 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22 [30-May-2026 05:11:09 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [01-Jul-2026 23:27:48 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php:20 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr7Response.php on line 20 [02-Jul-2026 00:19:39 UTC] PHP Fatal error: Uncaught Error: Class "SimplePie\Exception" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php:17 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/ClientException.php on line 17 [02-Jul-2026 00:19:40 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php:21 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/FileClient.php on line 21 [02-Jul-2026 00:20:04 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Response" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php:18 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/RawTextResponse.php on line 18 [02-Jul-2026 00:20:12 UTC] PHP Fatal error: Uncaught Error: Interface "SimplePie\HTTP\Client" not found in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php:22 Stack trace: #0 {main} thrown in /home/toreyh/public_html/wp-includes/SimplePie/src/HTTP/Psr18Client.php on line 22