qsdklsqkdmqskdmlqskd azoepqikdomlqskdjmlqs qpfklqjsfmklqsjdmqlsjdsqd Basic.php000064400000004755152331453650006320 0ustar00user, $this->pass) = $args; return; } if ($args !== null) { throw InvalidArgument::create(1, '$args', 'array|null', gettype($args)); } } /** * Register the necessary callbacks * * @see \WpOrg\Requests\Auth\Basic::curl_before_send() * @see \WpOrg\Requests\Auth\Basic::fsockopen_header() * @param \WpOrg\Requests\Hooks $hooks Hook system */ public function register(Hooks $hooks) { $hooks->register('curl.before_send', [$this, 'curl_before_send']); $hooks->register('fsockopen.after_headers', [$this, 'fsockopen_header']); } /** * Set cURL parameters before the data is sent * * @param resource|\CurlHandle $handle cURL handle */ public function curl_before_send(&$handle) { curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($handle, CURLOPT_USERPWD, $this->getAuthString()); } /** * Add extra headers to the request before sending * * @param string $out HTTP header string */ public function fsockopen_header(&$out) { $out .= sprintf("Authorization: Basic %s\r\n", base64_encode($this->getAuthString())); } /** * Get the authentication string (user:pass) * * @return string */ public function getAuthString() { return $this->user . ':' . $this->pass; } } error_log000064400000001334152331453650006471 0ustar00[09-May-2026 08:04:54 UTC] PHP Fatal error: Interface 'WpOrg\Requests\Auth' not found in /home/broads13/public_html/modpromatl.com/wp-includes/Requests/src/Auth/Basic.php on line 23 [02-Jun-2026 14:49:36 UTC] PHP Fatal error: Interface 'WpOrg\Requests\Auth' not found in /home/broads13/public_html/modpromatl.com/wp-includes/Requests/src/Auth/Basic.php on line 23 [13-Jun-2026 05:55:32 UTC] PHP Fatal error: Interface 'WpOrg\Requests\Auth' not found in /home/broads13/public_html/modpromatl.com/wp-includes/Requests/src/Auth/Basic.php on line 23 [02-Jul-2026 01:07:36 UTC] PHP Fatal error: Interface 'WpOrg\Requests\Auth' not found in /home/broads13/public_html/modpromatl.com/wp-includes/Requests/src/Auth/Basic.php on line 23