GuzzleHttp\Exception\ServerException #500

Server error: `GET https://personal-admin.aguskhaer.com/api/about` resulted in a `500 Internal Server Error` response:
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, sh (truncated...)
search →

VENDORPATH/guzzlehttp/guzzle/src/Exception/RequestException.php at line 113

106 
107         $summary = ($bodySummarizer ?? new BodySummarizer())->summarize($response);
108 
109         if ($summary !== null) {
110             $message .= ":\n{$summary}\n";
111         }
112 
113         return new $className($message, $request, $response, $previous, $handlerContext);
114     }
115 
116     /**
117      * Obfuscates URI if there is a username and a password present
118      */
119     private static function obfuscateUri(UriInterface $uri): UriInterface
120     {
  1. VENDORPATH/guzzlehttp/guzzle/src/Middleware.php : 72   —  GuzzleHttp\Exception\RequestException::create ( arguments )

    $request
    GuzzleHttp\Psr7\Request Object
    (
        [method:GuzzleHttp\Psr7\Request:private] => GET
        [requestTarget:GuzzleHttp\Psr7\Request:private] => 
        [uri:GuzzleHttp\Psr7\Request:private] => GuzzleHttp\Psr7\Uri Object
            (
                [scheme:GuzzleHttp\Psr7\Uri:private] => https
                [userInfo:GuzzleHttp\Psr7\Uri:private] => 
                [host:GuzzleHttp\Psr7\Uri:private] => personal-admin.aguskhaer.com
                [port:GuzzleHttp\Psr7\Uri:private] => 
                [path:GuzzleHttp\Psr7\Uri:private] => /api/about
                [query:GuzzleHttp\Psr7\Uri:private] => 
                [fragment:GuzzleHttp\Psr7\Uri:private] => 
                [composedComponents:GuzzleHttp\Psr7\Uri:private] => https://personal-admin.aguskhaer.com/api/about
            )
    
        [headers:GuzzleHttp\Psr7\Request:private] => Array
            (
                [User-Agent] => Array
                    (
                        [0] => GuzzleHttp/7
                    )
    
                [Host] => Array
                    (
                        [0] => personal-admin.aguskhaer.com
                    )
    
            )
    
        [headerNames:GuzzleHttp\Psr7\Request:private] => Array
            (
                [user-agent] => User-Agent
                [host] => Host
            )
    
        [protocol:GuzzleHttp\Psr7\Request:private] => 1.1
        [stream:GuzzleHttp\Psr7\Request:private] => GuzzleHttp\Psr7\Stream Object
            (
                [stream:GuzzleHttp\Psr7\Stream:private] => Resource id #149
                [size:GuzzleHttp\Psr7\Stream:private] => 0
                [seekable:GuzzleHttp\Psr7\Stream:private] => 1
                [readable:GuzzleHttp\Psr7\Stream:private] => 1
                [writable:GuzzleHttp\Psr7\Stream:private] => 1
                [uri:GuzzleHttp\Psr7\Stream:private] => php://temp
                [customMetadata:GuzzleHttp\Psr7\Stream:private] => Array
                    (
                    )
    
            )
    
    )
    
    $response
    GuzzleHttp\Psr7\Response Object
    (
        [reasonPhrase:GuzzleHttp\Psr7\Response:private] => Internal Server Error
        [statusCode:GuzzleHttp\Psr7\Response:private] => 500
        [headers:GuzzleHttp\Psr7\Response:private] => Array
            (
                [Connection] => Array
                    (
                        [0] => close
                    )
    
                [cache-control] => Array
                    (
                        [0] => private, no-cache, no-store, must-revalidate, max-age=0
                    )
    
                [pragma] => Array
                    (
                        [0] => no-cache
                    )
    
                [content-type] => Array
                    (
                        [0] => text/html
                    )
    
                [content-length] => Array
                    (
                        [0] => 800
                    )
    
                [date] => Array
                    (
                        [0] => Sun, 08 Dec 2024 09:58:56 GMT
                    )
    
                [server] => Array
                    (
                        [0] => LiteSpeed
                    )
    
                [alt-svc] => Array
                    (
                        [0] => h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
                    )
    
            )
    
        [headerNames:GuzzleHttp\Psr7\Response:private] => Array
            (
                [connection] => Connection
                [cache-control] => cache-control
                [pragma] => pragma
                [content-type] => content-type
                [content-length] => content-length
                [date] => date
                [server] => server
                [alt-svc] => alt-svc
            )
    
        [protocol:GuzzleHttp\Psr7\Response:private] => 1.1
        [stream:GuzzleHttp\Psr7\Response:private] => GuzzleHttp\Psr7\Stream Object
            (
                [stream:GuzzleHttp\Psr7\Stream:private] => Resource id #156
                [size:GuzzleHttp\Psr7\Stream:private] => 800
                [seekable:GuzzleHttp\Psr7\Stream:private] => 1
                [readable:GuzzleHttp\Psr7\Stream:private] => 1
                [writable:GuzzleHttp\Psr7\Stream:private] => 1
                [uri:GuzzleHttp\Psr7\Stream:private] => php://temp
                [customMetadata:GuzzleHttp\Psr7\Stream:private] => Array
                    (
                    )
    
            )
    
    )
    
    $previous
    $handlerContext
    Array
    (
    )
    
    $bodySummarizer

    65 
    66                 return $handler($request$options)->then(
    67                     static function (ResponseInterface $response) use ($request$bodySummarizer) {
    68                         $code $response->getStatusCode();
    69                         if ($code 400) {
    70                             return $response;
    71                         }
    72                         throw RequestException::create($request, $response, null, [], $bodySummarizer);
    73                     }
    74                 );
    75             };
    76         };
    77     }
    78 
    79     /**
    
  2. VENDORPATH/guzzlehttp/promises/src/Promise.php : 209   —  GuzzleHttp\Middleware::GuzzleHttp\{closure} ( arguments )

    #0
    GuzzleHttp\Psr7\Response Object
    (
        [reasonPhrase:GuzzleHttp\Psr7\Response:private] => Internal Server Error
        [statusCode:GuzzleHttp\Psr7\Response:private] => 500
        [headers:GuzzleHttp\Psr7\Response:private] => Array
            (
                [Connection] => Array
                    (
                        [0] => close
                    )
    
                [cache-control] => Array
                    (
                        [0] => private, no-cache, no-store, must-revalidate, max-age=0
                    )
    
                [pragma] => Array
                    (
                        [0] => no-cache
                    )
    
                [content-type] => Array
                    (
                        [0] => text/html
                    )
    
                [content-length] => Array
                    (
                        [0] => 800
                    )
    
                [date] => Array
                    (
                        [0] => Sun, 08 Dec 2024 09:58:56 GMT
                    )
    
                [server] => Array
                    (
                        [0] => LiteSpeed
                    )
    
                [alt-svc] => Array
                    (
                        [0] => h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
                    )
    
            )
    
        [headerNames:GuzzleHttp\Psr7\Response:private] => Array
            (
                [connection] => Connection
                [cache-control] => cache-control
                [pragma] => pragma
                [content-type] => content-type
                [content-length] => content-length
                [date] => date
                [server] => server
                [alt-svc] => alt-svc
            )
    
        [protocol:GuzzleHttp\Psr7\Response:private] => 1.1
        [stream:GuzzleHttp\Psr7\Response:private] => GuzzleHttp\Psr7\Stream Object
            (
                [stream:GuzzleHttp\Psr7\Stream:private] => Resource id #156
                [size:GuzzleHttp\Psr7\Stream:private] => 800
                [seekable:GuzzleHttp\Psr7\Stream:private] => 1
                [readable:GuzzleHttp\Psr7\Stream:private] => 1
                [writable:GuzzleHttp\Psr7\Stream:private] => 1
                [uri:GuzzleHttp\Psr7\Stream:private] => php://temp
                [customMetadata:GuzzleHttp\Psr7\Stream:private] => Array
                    (
                    )
    
            )
    
    )
    

    202                  * If $f throws an exception, then $handler will be in the exception
    203                  * stack trace. Since $handler contains a reference to the callable
    204                  * itself we get a circular reference. We clear the $handler
    205                  * here to avoid that memory leak.
    206                  */
    207                 $f $handler[$index];
    208                 unset($handler);
    209                 $promise->resolve($f($value));
    210             } elseif ($index === 1) {
    211                 // Forward resolution values as-is.
    212                 $promise->resolve($value);
    213             } else {
    214                 // Forward rejections down the chain.
    215                 $promise->reject($value);
    216             }
    
  3. VENDORPATH/guzzlehttp/promises/src/Promise.php : 158   —  GuzzleHttp\Promise\Promise::callHandler ( arguments )

    $index
    1
    $value
    GuzzleHttp\Psr7\Response Object
    (
        [reasonPhrase:GuzzleHttp\Psr7\Response:private] => Internal Server Error
        [statusCode:GuzzleHttp\Psr7\Response:private] => 500
        [headers:GuzzleHttp\Psr7\Response:private] => Array
            (
                [Connection] => Array
                    (
                        [0] => close
                    )
    
                [cache-control] => Array
                    (
                        [0] => private, no-cache, no-store, must-revalidate, max-age=0
                    )
    
                [pragma] => Array
                    (
                        [0] => no-cache
                    )
    
                [content-type] => Array
                    (
                        [0] => text/html
                    )
    
                [content-length] => Array
                    (
                        [0] => 800
                    )
    
                [date] => Array
                    (
                        [0] => Sun, 08 Dec 2024 09:58:56 GMT
                    )
    
                [server] => Array
                    (
                        [0] => LiteSpeed
                    )
    
                [alt-svc] => Array
                    (
                        [0] => h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
                    )
    
            )
    
        [headerNames:GuzzleHttp\Psr7\Response:private] => Array
            (
                [connection] => Connection
                [cache-control] => cache-control
                [pragma] => pragma
                [content-type] => content-type
                [content-length] => content-length
                [date] => date
                [server] => server
                [alt-svc] => alt-svc
            )
    
        [protocol:GuzzleHttp\Psr7\Response:private] => 1.1
        [stream:GuzzleHttp\Psr7\Response:private] => GuzzleHttp\Psr7\Stream Object
            (
                [stream:GuzzleHttp\Psr7\Stream:private] => Resource id #156
                [size:GuzzleHttp\Psr7\Stream:private] => 800
                [seekable:GuzzleHttp\Psr7\Stream:private] => 1
                [readable:GuzzleHttp\Psr7\Stream:private] => 1
                [writable:GuzzleHttp\Psr7\Stream:private] => 1
                [uri:GuzzleHttp\Psr7\Stream:private] => php://temp
                [customMetadata:GuzzleHttp\Psr7\Stream:private] => Array
                    (
                    )
    
            )
    
    )
    
    $handler

    151         // If the value was not a settled promise or a thenable, then resolve
    152         // it in the task queue using the correct ID.
    153         if (!is_object($value) || !method_exists($value'then')) {
    154             $id $state === self::FULFILLED 2;
    155             // It's a success, so resolve the handlers in the queue.
    156             Utils::queue()->add(static function () use ($id$value$handlers): void {
    157                 foreach ($handlers as $handler) {
    158                     self::callHandler($id, $value, $handler);
    159                 }
    160             });
    161         } elseif ($value instanceof Promise && Is::pending($value)) {
    162             // We can just merge our handlers onto the next promise.
    163             $value->handlers array_merge($value->handlers$handlers);
    164         } else {
    165             // Resolve the handlers when the forwarded promise is resolved.
    
  4. VENDORPATH/guzzlehttp/promises/src/TaskQueue.php : 52   —  GuzzleHttp\Promise\Promise::GuzzleHttp\Promise\{closure} ()

    45         $this->queue[] = $task;
    46     }
    47 
    48     public function run(): void
    49     {
    50         while ($task array_shift($this->queue)) {
    51             /** @var callable $task */
    52             $task();
    53         }
    54     }
    55 
    56     /**
    57      * The task queue will be run and exhausted by default when the process
    58      * exits IFF the exit is not the result of a PHP E_ERROR error.
    59      *
    
  5. VENDORPATH/guzzlehttp/promises/src/Promise.php : 251   —  GuzzleHttp\Promise\TaskQueue->run ( arguments )

    #0
    1

    244     }
    245 
    246     private function invokeWaitFn(): void
    247     {
    248         try {
    249             $wfn $this->waitFn;
    250             $this->waitFn null;
    251             $wfn(true);
    252         } catch (\Throwable $reason) {
    253             if ($this->state === self::PENDING) {
    254                 // The promise has not been resolved yet, so reject the promise
    255                 // with the exception.
    256                 $this->reject($reason);
    257             } else {
    258                 // The promise was already resolved, so there's a problem in
    
  6. VENDORPATH/guzzlehttp/promises/src/Promise.php : 227   —  GuzzleHttp\Promise\Promise->invokeWaitFn ()

    220     }
    221 
    222     private function waitIfPending(): void
    223     {
    224         if ($this->state !== self::PENDING) {
    225             return;
    226         } elseif ($this->waitFn) {
    227             $this->invokeWaitFn();
    228         } elseif ($this->waitList) {
    229             $this->invokeWaitList();
    230         } else {
    231             // If there's no wait function, then reject the promise.
    232             $this->reject('Cannot wait on a promise that has '
    233                 .'no internal wait function. You must provide a wait '
    234                 .'function when constructing the promise to be able to '
    
  7. VENDORPATH/guzzlehttp/promises/src/Promise.php : 272   —  GuzzleHttp\Promise\Promise->waitIfPending ()

    265     private function invokeWaitList(): void
    266     {
    267         $waitList $this->waitList;
    268         $this->waitList null;
    269 
    270         foreach ($waitList as $result) {
    271             do {
    272                 $result->waitIfPending();
    273                 $result $result->result;
    274             } while ($result instanceof Promise);
    275 
    276             if ($result instanceof PromiseInterface) {
    277                 $result->wait(false);
    278             }
    279         }
    
  8. VENDORPATH/guzzlehttp/promises/src/Promise.php : 229   —  GuzzleHttp\Promise\Promise->invokeWaitList ()

    222     private function waitIfPending(): void
    223     {
    224         if ($this->state !== self::PENDING) {
    225             return;
    226         } elseif ($this->waitFn) {
    227             $this->invokeWaitFn();
    228         } elseif ($this->waitList) {
    229             $this->invokeWaitList();
    230         } else {
    231             // If there's no wait function, then reject the promise.
    232             $this->reject('Cannot wait on a promise that has '
    233                 .'no internal wait function. You must provide a wait '
    234                 .'function when constructing the promise to be able to '
    235                 .'wait on a promise.');
    236         }
    
  9. VENDORPATH/guzzlehttp/promises/src/Promise.php : 69   —  GuzzleHttp\Promise\Promise->waitIfPending ()

    62     public function otherwise(callable $onRejected): PromiseInterface
    63     {
    64         return $this->then(null$onRejected);
    65     }
    66 
    67     public function wait(bool $unwrap true)
    68     {
    69         $this->waitIfPending();
    70 
    71         if ($this->result instanceof PromiseInterface) {
    72             return $this->result->wait($unwrap);
    73         }
    74         if ($unwrap) {
    75             if ($this->state === self::FULFILLED) {
    76                 return $this->result;
    
  10. VENDORPATH/guzzlehttp/guzzle/src/Client.php : 189   —  GuzzleHttp\Promise\Promise->wait ()

    182      *
    183      * @throws GuzzleException
    184      */
    185     public function request(string $method$uri '', array $options = []): ResponseInterface
    186     {
    187         $options[RequestOptions::SYNCHRONOUS] = true;
    188 
    189         return $this->requestAsync($method, $uri, $options)->wait();
    190     }
    191 
    192     /**
    193      * Get a client configuration option.
    194      *
    195      * These options include default request options of the client, a "handler"
    196      * (if utilized by the concrete client), and a "base_uri" if utilized by
    
  11. VENDORPATH/guzzlehttp/guzzle/src/ClientTrait.php : 44   —  GuzzleHttp\Client->request ( arguments )

    $method
    GET
    $uri
    https://personal-admin.aguskhaer.com/api/about
    $options
    Array
    (
        [synchronous] => 1
    )
    

    37      * @param string|UriInterface $uri     URI object or string.
    38      * @param array               $options Request options to apply.
    39      *
    40      * @throws GuzzleException
    41      */
    42     public function get($uri, array $options = []): ResponseInterface
    43     {
    44         return $this->request('GET', $uri, $options);
    45     }
    46 
    47     /**
    48      * Create and send an HTTP HEAD request.
    49      *
    50      * Use an absolute path to override the base path of the client, or a
    51      * relative path to append to the base path of the client. The URL can
    
  12. APPPATH/Controllers/Home.php : 39   —  GuzzleHttp\Client->get ( arguments )

    $uri
    https://personal-admin.aguskhaer.com/api/about
    $options
    Array
    (
    )
    

    32 
    33         return view('home'$data);
    34     }
    35 
    36 
    37     function getData($endPoint$params = [])
    38     {
    39         $res = $this->client->get($this->BASE_URL . $endPoint, $params);
    40 
    41         if ($res->getStatusCode() < 300) {
    42             return json_decode($res->getBody());
    43         }
    44 
    45         return [];
    46     }
    
  13. APPPATH/Controllers/Home.php : 23   —  App\Controllers\Home->getData ( arguments )

    $endPoint
    about

    16         $this->client = new Client();
    17         helper('Utils');
    18     }
    19 
    20     public function index(): string
    21     {
    22         $data = [
    23             "about" => $this->getData('about')->about,
    24             "skill" => $this->getData('skill')->skill,
    25             "personalSkill" => $this->getData('personal-skill')->personal,
    26             "imgSections" => $this->getData('img-sections')->images,
    27             "achivement" => $this->getData('achivement')->achivement,
    28             "socialMedia" => $this->getData('social-media')->social_media,
    29             "portfolio" => $this->getData('portfolio')->data_portfolio,
    30             "testimonial" => $this->getData('testimonial')->testimonial,
    
  14. SYSTEMPATH/CodeIgniter.php : 941   —  App\Controllers\Home->index ()

    934     protected function runController($class)
    935     {
    936         // This is a Web request or PHP CLI request
    937         $params $this->router->params();
    938 
    939         $output method_exists($class'_remap')
    940             ? $class->_remap($this->method, ...$params)
    941             : $class->{$this->method}(...$params);
    942 
    943         $this->benchmark->stop('controller');
    944 
    945         return $output;
    946     }
    947 
    948     /**
    
  15. SYSTEMPATH/CodeIgniter.php : 502   —  CodeIgniter\CodeIgniter->runController ( arguments )

    $class
    App\Controllers\Home Object
    (
        [helpers:protected] => Array
            (
            )
    
        [request:protected] => CodeIgniter\HTTP\IncomingRequest Object
            (
                [protocolVersion:protected] => 1.1
                [validProtocolVersions:protected] => Array
                    (
                        [0] => 1.0
                        [1] => 1.1
                        [2] => 2.0
                        [3] => 3.0
                    )
    
                [body:protected] => 
                [headers:protected] => Array
                    (
                        [Accept] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept
                                [value:protected] => text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
                            )
    
                        [Accept-Encoding] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept-Encoding
                                [value:protected] => br,gzip
                            )
    
                        [Accept-Language] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept-Language
                                [value:protected] => en-US,en;q=0.5
                            )
    
                        [Host] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Host
                                [value:protected] => aguskhaer.com
                            )
    
                        [User-Agent] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => User-Agent
                                [value:protected] => CCBot/2.0 (https://commoncrawl.org/faq/)
                            )
    
                        [If-Modified-Since] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => If-Modified-Since
                                [value:protected] => Wed, 13 Nov 2024 22:30:14 GMT
                            )
    
                        [X-Https] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => X-Https
                                [value:protected] => 1
                            )
    
                    )
    
                [headerMap:protected] => Array
                    (
                        [accept] => Accept
                        [accept-encoding] => Accept-Encoding
                        [accept-language] => Accept-Language
                        [host] => Host
                        [user-agent] => User-Agent
                        [if-modified-since] => If-Modified-Since
                        [x-https] => X-Https
                    )
    
                [method:protected] => GET
                [uri] => CodeIgniter\HTTP\SiteURI Object
                    (
                        [uriString:protected] => 
                        [baseURL:CodeIgniter\HTTP\URI:private] => 
                        [segments:protected] => Array
                            (
                            )
    
                        [scheme:protected] => https
                        [user:protected] => 
                        [password:protected] => 
                        [host:protected] => aguskhaer.com
                        [port:protected] => 
                        [path:protected] => /index.php/
                        [fragment:protected] => 
                        [query:protected] => Array
                            (
                            )
    
                        [defaultPorts:protected] => Array
                            (
                                [http] => 80
                                [https] => 443
                                [ftp] => 21
                                [sftp] => 22
                            )
    
                        [showPassword:protected] => 
                        [silent:protected] => 
                        [rawQueryString:protected] => 
                        [baseURL:CodeIgniter\HTTP\SiteURI:private] => CodeIgniter\HTTP\URI Object
                            (
                                [uriString:protected] => 
                                [baseURL:CodeIgniter\HTTP\URI:private] => 
                                [segments:protected] => Array
                                    (
                                    )
    
                                [scheme:protected] => https
                                [user:protected] => 
                                [password:protected] => 
                                [host:protected] => aguskhaer.com
                                [port:protected] => 
                                [path:protected] => /
                                [fragment:protected] => 
                                [query:protected] => Array
                                    (
                                    )
    
                                [defaultPorts:protected] => Array
                                    (
                                        [http] => 80
                                        [https] => 443
                                        [ftp] => 21
                                        [sftp] => 22
                                    )
    
                                [showPassword:protected] => 
                                [silent:protected] => 
                                [rawQueryString:protected] => 
                            )
    
                        [basePathWithoutIndexPage:CodeIgniter\HTTP\SiteURI:private] => /
                        [indexPage:CodeIgniter\HTTP\SiteURI:private] => index.php
                        [baseSegments:CodeIgniter\HTTP\SiteURI:private] => Array
                            (
                                [0] => index.php
                            )
    
                        [routePath:CodeIgniter\HTTP\SiteURI:private] => 
                    )
    
                [proxyIPs:protected] => 
                [ipAddress:protected] => 
                [globals:protected] => Array
                    (
                        [server] => Array
                            (
                                [PATH] => /usr/local/bin:/bin:/usr/bin
                                [HTTP_ACCEPT] => text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
                                [HTTP_ACCEPT_ENCODING] => br,gzip
                                [HTTP_ACCEPT_LANGUAGE] => en-US,en;q=0.5
                                [HTTP_HOST] => aguskhaer.com
                                [HTTP_USER_AGENT] => CCBot/2.0 (https://commoncrawl.org/faq/)
                                [HTTP_IF_MODIFIED_SINCE] => Wed, 13 Nov 2024 22:30:14 GMT
                                [HTTP_X_HTTPS] => 1
                                [DOCUMENT_ROOT] => /home/aguskhae/public_html
                                [REMOTE_ADDR] => 18.97.14.84
                                [REMOTE_PORT] => 49400
                                [SERVER_ADDR] => 202.52.146.208
                                [SERVER_NAME] => aguskhaer.com
                                [SERVER_ADMIN] => webmaster@aguskhaer.com
                                [SERVER_PORT] => 443
                                [REQUEST_SCHEME] => https
                                [REQUEST_URI] => /
                                [HTTPS] => on
                                [X_SPDY] => HTTP2
                                [SSL_PROTOCOL] => TLSv1.3
                                [SSL_CIPHER] => TLS_AES_256_GCM_SHA384
                                [SSL_CIPHER_USEKEYSIZE] => 256
                                [SSL_CIPHER_ALGKEYSIZE] => 256
                                [SCRIPT_FILENAME] => /home/aguskhae/public_html/index.php
                                [QUERY_STRING] => 
                                [SCRIPT_URI] => https://aguskhaer.com/
                                [SCRIPT_URL] => /
                                [SCRIPT_NAME] => /index.php
                                [SERVER_PROTOCOL] => HTTP/1.1
                                [SERVER_SOFTWARE] => LiteSpeed
                                [REQUEST_METHOD] => GET
                                [X-LSCACHE] => on
                                [PHP_SELF] => /index.php
                                [REQUEST_TIME_FLOAT] => 1733651936.0917
                                [REQUEST_TIME] => 1733651936
                                [argv] => Array
                                    (
                                    )
    
                                [argc] => 0
                                [CI_ENVIRONMENT] => development
                                [app.baseURL] => https://aguskhaer.com/
                                [BASE_URL_API] => https://personal-admin.aguskhaer.com/api/
                            )
    
                        [get] => Array
                            (
                            )
    
                    )
    
                [enableCSRF:protected] => 
                [path:protected] => 
                [files:protected] => 
                [negotiator:protected] => 
                [defaultLocale:protected] => en
                [locale:protected] => en
                [validLocales:protected] => Array
                    (
                        [0] => en
                    )
    
                [config] => Config\App Object
                    (
                        [baseURL] => https://aguskhaer.com/
                        [allowedHostnames] => Array
                            (
                            )
    
                        [indexPage] => index.php
                        [uriProtocol] => REQUEST_URI
                        [defaultLocale] => en
                        [negotiateLocale] => 
                        [supportedLocales] => Array
                            (
                                [0] => en
                            )
    
                        [appTimezone] => UTC
                        [charset] => UTF-8
                        [forceGlobalSecureRequests] => 
                        [proxyIPs] => Array
                            (
                            )
    
                        [CSPEnabled] => 
                    )
    
                [oldInput:protected] => Array
                    (
                    )
    
                [userAgent:protected] => CodeIgniter\HTTP\UserAgent Object
                    (
                        [agent:protected] => CCBot/2.0 (https://commoncrawl.org/faq/)
                        [isBrowser:protected] => 
                        [isRobot:protected] => 
                        [isMobile:protected] => 
                        [config:protected] => Config\UserAgents Object
                            (
                                [platforms] => Array
                                    (
                                        [windows nt 10.0] => Windows 10
                                        [windows nt 6.3] => Windows 8.1
                                        [windows nt 6.2] => Windows 8
                                        [windows nt 6.1] => Windows 7
                                        [windows nt 6.0] => Windows Vista
                                        [windows nt 5.2] => Windows 2003
                                        [windows nt 5.1] => Windows XP
                                        [windows nt 5.0] => Windows 2000
                                        [windows nt 4.0] => Windows NT 4.0
                                        [winnt4.0] => Windows NT 4.0
                                        [winnt 4.0] => Windows NT
                                        [winnt] => Windows NT
                                        [windows 98] => Windows 98
                                        [win98] => Windows 98
                                        [windows 95] => Windows 95
                                        [win95] => Windows 95
                                        [windows phone] => Windows Phone
                                        [windows] => Unknown Windows OS
                                        [android] => Android
                                        [blackberry] => BlackBerry
                                        [iphone] => iOS
                                        [ipad] => iOS
                                        [ipod] => iOS
                                        [os x] => Mac OS X
                                        [ppc mac] => Power PC Mac
                                        [freebsd] => FreeBSD
                                        [ppc] => Macintosh
                                        [linux] => Linux
                                        [debian] => Debian
                                        [sunos] => Sun Solaris
                                        [beos] => BeOS
                                        [apachebench] => ApacheBench
                                        [aix] => AIX
                                        [irix] => Irix
                                        [osf] => DEC OSF
                                        [hp-ux] => HP-UX
                                        [netbsd] => NetBSD
                                        [bsdi] => BSDi
                                        [openbsd] => OpenBSD
                                        [gnu] => GNU/Linux
                                        [unix] => Unknown Unix OS
                                        [symbian] => Symbian OS
                                    )
    
                                [browsers] => Array
                                    (
                                        [OPR] => Opera
                                        [Flock] => Flock
                                        [Edge] => Spartan
                                        [Edg] => Edge
                                        [Chrome] => Chrome
                                        [Opera.*?Version] => Opera
                                        [Opera] => Opera
                                        [MSIE] => Internet Explorer
                                        [Internet Explorer] => Internet Explorer
                                        [Trident.* rv] => Internet Explorer
                                        [Shiira] => Shiira
                                        [Firefox] => Firefox
                                        [Chimera] => Chimera
                                        [Phoenix] => Phoenix
                                        [Firebird] => Firebird
                                        [Camino] => Camino
                                        [Netscape] => Netscape
                                        [OmniWeb] => OmniWeb
                                        [Safari] => Safari
                                        [Mozilla] => Mozilla
                                        [Konqueror] => Konqueror
                                        [icab] => iCab
                                        [Lynx] => Lynx
                                        [Links] => Links
                                        [hotjava] => HotJava
                                        [amaya] => Amaya
                                        [IBrowse] => IBrowse
                                        [Maxthon] => Maxthon
                                        [Ubuntu] => Ubuntu Web Browser
                                        [Vivaldi] => Vivaldi
                                    )
    
                                [mobiles] => Array
                                    (
                                        [mobileexplorer] => Mobile Explorer
                                        [palmsource] => Palm
                                        [palmscape] => Palmscape
                                        [motorola] => Motorola
                                        [nokia] => Nokia
                                        [palm] => Palm
                                        [iphone] => Apple iPhone
                                        [ipad] => iPad
                                        [ipod] => Apple iPod Touch
                                        [sony] => Sony Ericsson
                                        [ericsson] => Sony Ericsson
                                        [blackberry] => BlackBerry
                                        [cocoon] => O2 Cocoon
                                        [blazer] => Treo
                                        [lg] => LG
                                        [amoi] => Amoi
                                        [xda] => XDA
                                        [mda] => MDA
                                        [vario] => Vario
                                        [htc] => HTC
                                        [samsung] => Samsung
                                        [sharp] => Sharp
                                        [sie-] => Siemens
                                        [alcatel] => Alcatel
                                        [benq] => BenQ
                                        [ipaq] => HP iPaq
                                        [mot-] => Motorola
                                        [playstation portable] => PlayStation Portable
                                        [playstation 3] => PlayStation 3
                                        [playstation vita] => PlayStation Vita
                                        [hiptop] => Danger Hiptop
                                        [nec-] => NEC
                                        [panasonic] => Panasonic
                                        [philips] => Philips
                                        [sagem] => Sagem
                                        [sanyo] => Sanyo
                                        [spv] => SPV
                                        [zte] => ZTE
                                        [sendo] => Sendo
                                        [nintendo dsi] => Nintendo DSi
                                        [nintendo ds] => Nintendo DS
                                        [nintendo 3ds] => Nintendo 3DS
                                        [wii] => Nintendo Wii
                                        [open web] => Open Web
                                        [openweb] => OpenWeb
                                        [android] => Android
                                        [symbian] => Symbian
                                        [SymbianOS] => SymbianOS
                                        [elaine] => Palm
                                        [series60] => Symbian S60
                                        [windows ce] => Windows CE
                                        [obigo] => Obigo
                                        [netfront] => Netfront Browser
                                        [openwave] => Openwave Browser
                                        [mobilexplorer] => Mobile Explorer
                                        [operamini] => Opera Mini
                                        [opera mini] => Opera Mini
                                        [opera mobi] => Opera Mobile
                                        [fennec] => Firefox Mobile
                                        [digital paths] => Digital Paths
                                        [avantgo] => AvantGo
                                        [xiino] => Xiino
                                        [novarra] => Novarra Transcoder
                                        [vodafone] => Vodafone
                                        [docomo] => NTT DoCoMo
                                        [o2] => O2
                                        [mobile] => Generic Mobile
                                        [wireless] => Generic Mobile
                                        [j2me] => Generic Mobile
                                        [midp] => Generic Mobile
                                        [cldc] => Generic Mobile
                                        [up.link] => Generic Mobile
                                        [up.browser] => Generic Mobile
                                        [smartphone] => Generic Mobile
                                        [cellphone] => Generic Mobile
                                    )
    
                                [robots] => Array
                                    (
                                        [googlebot] => Googlebot
                                        [msnbot] => MSNBot
                                        [baiduspider] => Baiduspider
                                        [bingbot] => Bing
                                        [slurp] => Inktomi Slurp
                                        [yahoo] => Yahoo
                                        [ask jeeves] => Ask Jeeves
                                        [fastcrawler] => FastCrawler
                                        [infoseek] => InfoSeek Robot 1.0
                                        [lycos] => Lycos
                                        [yandex] => YandexBot
                                        [mediapartners-google] => MediaPartners Google
                                        [CRAZYWEBCRAWLER] => Crazy Webcrawler
                                        [adsbot-google] => AdsBot Google
                                        [feedfetcher-google] => Feedfetcher Google
                                        [curious george] => Curious George
                                        [ia_archiver] => Alexa Crawler
                                        [MJ12bot] => Majestic-12
                                        [Uptimebot] => Uptimebot
                                    )
    
                            )
    
                        [platform:protected] => Unknown Platform
                        [browser:protected] => 
                        [version:protected] => 
                        [mobile:protected] => 
                        [robot:protected] => 
                        [referrer:protected] => 
                    )
    
            )
    
        [response:protected] => CodeIgniter\HTTP\Response Object
            (
                [protocolVersion:protected] => 1.1
                [validProtocolVersions:protected] => Array
                    (
                        [0] => 1.0
                        [1] => 1.1
                        [2] => 2.0
                        [3] => 3.0
                    )
    
                [body:protected] => 
                [headers:protected] => Array
                    (
                        [Cache-Control] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Cache-Control
                                [value:protected] => Array
                                    (
                                        [0] => no-store
                                        [1] => max-age=0
                                        [2] => no-cache
                                    )
    
                            )
    
                        [Content-Type] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Content-Type
                                [value:protected] => text/html; charset=UTF-8
                            )
    
                    )
    
                [headerMap:protected] => Array
                    (
                        [cache-control] => Cache-Control
                        [content-type] => Content-Type
                    )
    
                [reason:protected] => Internal Server Error
                [statusCode:protected] => 500
                [pretend:protected] => 
                [CSPEnabled:protected] => 
                [CSP] => CodeIgniter\HTTP\ContentSecurityPolicy Object
                    (
                        [baseURI:protected] => 
                        [childSrc:protected] => self
                        [connectSrc:protected] => self
                        [defaultSrc:protected] => 
                        [fontSrc:protected] => 
                        [formAction:protected] => self
                        [frameAncestors:protected] => 
                        [frameSrc:protected] => 
                        [imageSrc:protected] => self
                        [mediaSrc:protected] => 
                        [objectSrc:protected] => self
                        [pluginTypes:protected] => 
                        [reportURI:protected] => 
                        [sandbox:protected] => 
                        [scriptSrc:protected] => Array
                            (
                                [0] => self
                            )
    
                        [styleSrc:protected] => Array
                            (
                                [0] => self
                            )
    
                        [manifestSrc:protected] => 
                        [upgradeInsecureRequests:protected] => 
                        [reportOnly:protected] => 
                        [validSources:protected] => Array
                            (
                                [0] => self
                                [1] => none
                                [2] => unsafe-inline
                                [3] => unsafe-eval
                            )
    
                        [nonces:protected] => Array
                            (
                            )
    
                        [styleNonce:protected] => 
                        [scriptNonce:protected] => 
                        [styleNonceTag:protected] => {csp-style-nonce}
                        [scriptNonceTag:protected] => {csp-script-nonce}
                        [autoNonce:protected] => 1
                        [tempHeaders:protected] => Array
                            (
                            )
    
                        [reportOnlyHeaders:protected] => Array
                            (
                            )
    
                        [CSPEnabled:protected] => 
                    )
    
                [cookieStore:protected] => CodeIgniter\Cookie\CookieStore Object
                    (
                        [cookies:protected] => Array
                            (
                            )
    
                    )
    
                [cookiePrefix:protected] => 
                [cookieDomain:protected] => 
                [cookiePath:protected] => /
                [cookieSecure:protected] => 
                [cookieHTTPOnly:protected] => 
                [cookieSameSite:protected] => lax
                [cookies:protected] => Array
                    (
                    )
    
                [bodyFormat:protected] => html
            )
    
        [logger:protected] => CodeIgniter\Log\Logger Object
            (
                [logLevels:protected] => Array
                    (
                        [emergency] => 1
                        [alert] => 2
                        [critical] => 3
                        [error] => 4
                        [warning] => 5
                        [notice] => 6
                        [info] => 7
                        [debug] => 8
                    )
    
                [loggableLevels:protected] => Array
                    (
                        [0] => emergency
                        [1] => alert
                        [2] => critical
                        [3] => error
                        [4] => warning
                        [5] => notice
                        [6] => info
                        [7] => debug
                        [8] => 
                    )
    
                [filePermissions:protected] => 420
                [dateFormat:protected] => Y-m-d H:i:s
                [fileExt:protected] => 
                [handlers:protected] => Array
                    (
                        [CodeIgniter\Log\Handlers\FileHandler] => CodeIgniter\Log\Handlers\FileHandler Object
                            (
                                [handles:protected] => Array
                                    (
                                        [0] => critical
                                        [1] => alert
                                        [2] => emergency
                                        [3] => debug
                                        [4] => error
                                        [5] => info
                                        [6] => notice
                                        [7] => warning
                                    )
    
                                [dateFormat:protected] => Y-m-d H:i:s
                                [path:protected] => /home/aguskhae/personal-ci-core/writable/logs/
                                [fileExtension:protected] => log
                                [filePermissions:protected] => 420
                            )
    
                    )
    
                [handlerConfig:protected] => Array
                    (
                        [CodeIgniter\Log\Handlers\FileHandler] => Array
                            (
                                [handles] => Array
                                    (
                                        [0] => critical
                                        [1] => alert
                                        [2] => emergency
                                        [3] => debug
                                        [4] => error
                                        [5] => info
                                        [6] => notice
                                        [7] => warning
                                    )
    
                                [fileExtension] => 
                                [filePermissions] => 420
                                [path] => 
                            )
    
                    )
    
                [logCache] => Array
                    (
                        [0] => Array
                            (
                                [level] => critical
                                [msg] => GuzzleHttp\Exception\ServerException: Server error: `GET https://personal-admin.aguskhaer.com/api/about` resulted in a `500 Internal Server Error` response:
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, sh (truncated...)
    
    in VENDORPATH/guzzlehttp/guzzle/src/Exception/RequestException.php on line 113.
     1 VENDORPATH/guzzlehttp/guzzle/src/Middleware.php(72): GuzzleHttp\Exception\RequestException::create(Object(GuzzleHttp\Psr7\Request), Object(GuzzleHttp\Psr7\Response), null, [], null)
     2 VENDORPATH/guzzlehttp/promises/src/Promise.php(209): GuzzleHttp\Middleware::GuzzleHttp\{closure}(Object(GuzzleHttp\Psr7\Response))
     3 VENDORPATH/guzzlehttp/promises/src/Promise.php(158): GuzzleHttp\Promise\Promise::callHandler(1, Object(GuzzleHttp\Psr7\Response), null)
     4 VENDORPATH/guzzlehttp/promises/src/TaskQueue.php(52): GuzzleHttp\Promise\Promise::GuzzleHttp\Promise\{closure}()
     5 VENDORPATH/guzzlehttp/promises/src/Promise.php(251): GuzzleHttp\Promise\TaskQueue->run(true)
     6 VENDORPATH/guzzlehttp/promises/src/Promise.php(227): GuzzleHttp\Promise\Promise->invokeWaitFn()
     7 VENDORPATH/guzzlehttp/promises/src/Promise.php(272): GuzzleHttp\Promise\Promise->waitIfPending()
     8 VENDORPATH/guzzlehttp/promises/src/Promise.php(229): GuzzleHttp\Promise\Promise->invokeWaitList()
     9 VENDORPATH/guzzlehttp/promises/src/Promise.php(69): GuzzleHttp\Promise\Promise->waitIfPending()
    10 VENDORPATH/guzzlehttp/guzzle/src/Client.php(189): GuzzleHttp\Promise\Promise->wait()
    11 VENDORPATH/guzzlehttp/guzzle/src/ClientTrait.php(44): GuzzleHttp\Client->request('GET', 'https://personal-admin.aguskhaer.com/api/about', [...])
    12 APPPATH/Controllers/Home.php(39): GuzzleHttp\Client->get('https://personal-admin.aguskhaer.com/api/about', [])
    13 APPPATH/Controllers/Home.php(23): App\Controllers\Home->getData('about')
    14 SYSTEMPATH/CodeIgniter.php(941): App\Controllers\Home->index()
    15 SYSTEMPATH/CodeIgniter.php(502): CodeIgniter\CodeIgniter->runController(Object(App\Controllers\Home))
    16 SYSTEMPATH/CodeIgniter.php(361): CodeIgniter\CodeIgniter->handleRequest(null, Object(Config\Cache), false)
    17 FCPATH/index.php(79): CodeIgniter\CodeIgniter->run()
                            )
    
                    )
    
                [cacheLogs:protected] => 1
            )
    
        [forceHTTPS:protected] => 0
        [validator:protected] => 
        [BASE_URL:protected] => https://personal-admin.aguskhaer.com/api/
        [client:protected] => GuzzleHttp\Client Object
            (
                [config:GuzzleHttp\Client:private] => Array
                    (
                        [handler] => GuzzleHttp\HandlerStack Object
                            (
                                [handler:GuzzleHttp\HandlerStack:private] => Closure Object
                                    (
                                        [static] => Array
                                            (
                                                [default] => GuzzleHttp\Handler\CurlMultiHandler Object
                                                    (
                                                        [factory:GuzzleHttp\Handler\CurlMultiHandler:private] => GuzzleHttp\Handler\CurlFactory Object
                                                            (
                                                                [handles:GuzzleHttp\Handler\CurlFactory:private] => Array
                                                                    (
                                                                    )
    
                                                                [maxHandles:GuzzleHttp\Handler\CurlFactory:private] => 50
                                                            )
    
                                                        [selectTimeout:GuzzleHttp\Handler\CurlMultiHandler:private] => 1
                                                        [active:GuzzleHttp\Handler\CurlMultiHandler:private] => 0
                                                        [handles:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                            (
                                                            )
    
                                                        [delays:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                            (
                                                            )
    
                                                        [options:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                            (
                                                            )
    
                                                    )
    
                                                [sync] => GuzzleHttp\Handler\CurlHandler Object
                                                    (
                                                        [factory:GuzzleHttp\Handler\CurlHandler:private] => GuzzleHttp\Handler\CurlFactory Object
                                                            (
                                                                [handles:GuzzleHttp\Handler\CurlFactory:private] => Array
                                                                    (
                                                                        [0] => CurlHandle Object
                                                                            (
                                                                            )
    
                                                                    )
    
                                                                [maxHandles:GuzzleHttp\Handler\CurlFactory:private] => 3
                                                            )
    
                                                    )
    
                                            )
    
                                        [parameter] => Array
                                            (
                                                [$request] => <required>
                                                [$options] => <required>
                                            )
    
                                    )
    
                                [stack:GuzzleHttp\HandlerStack:private] => Array
                                    (
                                        [0] => Array
                                            (
                                                [0] => Closure Object
                                                    (
                                                        [static] => Array
                                                            (
                                                                [bodySummarizer] => 
                                                            )
    
                                                        [parameter] => Array
                                                            (
                                                                [$handler] => <required>
                                                            )
    
                                                    )
    
                                                [1] => http_errors
                                            )
    
                                        [1] => Array
                                            (
                                                [0] => Closure Object
                                                    (
                                                        [parameter] => Array
                                                            (
                                                                [$handler] => <required>
                                                            )
    
                                                    )
    
                                                [1] => allow_redirects
                                            )
    
                                        [2] => Array
                                            (
                                                [0] => Closure Object
                                                    (
                                                        [parameter] => Array
                                                            (
                                                                [$handler] => <required>
                                                            )
    
                                                    )
    
                                                [1] => cookies
                                            )
    
                                        [3] => Array
                                            (
                                                [0] => Closure Object
                                                    (
                                                        [parameter] => Array
                                                            (
                                                                [$handler] => <required>
                                                            )
    
                                                    )
    
                                                [1] => prepare_body
                                            )
    
                                    )
    
                                [cached:GuzzleHttp\HandlerStack:private] => Closure Object
                                    (
                                        [static] => Array
                                            (
                                                [handler] => GuzzleHttp\RedirectMiddleware Object
                                                    (
                                                        [nextHandler:GuzzleHttp\RedirectMiddleware:private] => Closure Object
                                                            (
                                                                [static] => Array
                                                                    (
                                                                        [handler] => GuzzleHttp\PrepareBodyMiddleware Object
                                                                            (
                                                                                [nextHandler:GuzzleHttp\PrepareBodyMiddleware:private] => Closure Object
                                                                                    (
                                                                                        [static] => Array
                                                                                            (
                                                                                                [default] => GuzzleHttp\Handler\CurlMultiHandler Object
                                                                                                    (
                                                                                                        [factory:GuzzleHttp\Handler\CurlMultiHandler:private] => GuzzleHttp\Handler\CurlFactory Object
                                                                                                            (
                                                                                                                [handles:GuzzleHttp\Handler\CurlFactory:private] => Array
                                                                                                                    (
                                                                                                                    )
    
                                                                                                                [maxHandles:GuzzleHttp\Handler\CurlFactory:private] => 50
                                                                                                            )
    
                                                                                                        [selectTimeout:GuzzleHttp\Handler\CurlMultiHandler:private] => 1
                                                                                                        [active:GuzzleHttp\Handler\CurlMultiHandler:private] => 0
                                                                                                        [handles:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                                                                            (
                                                                                                            )
    
                                                                                                        [delays:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                                                                            (
                                                                                                            )
    
                                                                                                        [options:GuzzleHttp\Handler\CurlMultiHandler:private] => Array
                                                                                                            (
                                                                                                            )
    
                                                                                                    )
    
                                                                                                [sync] => GuzzleHttp\Handler\CurlHandler Object
                                                                                                    (
                                                                                                        [factory:GuzzleHttp\Handler\CurlHandler:private] => GuzzleHttp\Handler\CurlFactory Object
                                                                                                            (
                                                                                                                [handles:GuzzleHttp\Handler\CurlFactory:private] => Array
                                                                                                                    (
                                                                                                                        [0] => CurlHandle Object
                                                                                                                            (
                                                                                                                            )
    
                                                                                                                    )
    
                                                                                                                [maxHandles:GuzzleHttp\Handler\CurlFactory:private] => 3
                                                                                                            )
    
                                                                                                    )
    
                                                                                            )
    
                                                                                        [parameter] => Array
                                                                                            (
                                                                                                [$request] => <required>
                                                                                                [$options] => <required>
                                                                                            )
    
                                                                                    )
    
                                                                            )
    
                                                                    )
    
                                                                [parameter] => Array
                                                                    (
                                                                        [$request] => <required>
                                                                        [$options] => <required>
                                                                    )
    
                                                            )
    
                                                    )
    
                                                [bodySummarizer] => 
                                            )
    
                                        [parameter] => Array
                                            (
                                                [$request] => <required>
                                                [$options] => <required>
                                            )
    
                                    )
    
                            )
    
                        [allow_redirects] => Array
                            (
                                [max] => 5
                                [protocols] => Array
                                    (
                                        [0] => http
                                        [1] => https
                                    )
    
                                [strict] => 
                                [referer] => 
                                [track_redirects] => 
                            )
    
                        [http_errors] => 1
                        [decode_content] => 1
                        [verify] => 1
                        [cookies] => 
                        [idn_conversion] => 
                        [headers] => Array
                            (
                                [User-Agent] => GuzzleHttp/7
                            )
    
                    )
    
            )
    
    )
    

    495             if (! method_exists($controller'_remap') && ! is_callable([$controller$this->method], false)) {
    496                 throw PageNotFoundException::forMethodNotFound($this->method);
    497             }
    498 
    499             // Is there a "post_controller_constructor" event?
    500             Events::trigger('post_controller_constructor');
    501 
    502             $returned = $this->runController($controller);
    503         } else {
    504             $this->benchmark->stop('controller_constructor');
    505             $this->benchmark->stop('controller');
    506         }
    507 
    508         // If $returned is a string, then the controller output something,
    509         // probably a view, instead of echoing it directly. Send it along
    
  16. SYSTEMPATH/CodeIgniter.php : 361   —  CodeIgniter\CodeIgniter->handleRequest ( arguments )

    $routes
    $cacheConfig
    Config\Cache Object
    (
        [handler] => file
        [backupHandler] => dummy
        [storePath] => /home/aguskhae/personal-ci-core/writable/cache/
        [cacheQueryString] => 
        [prefix] => 
        [ttl] => 60
        [reservedCharacters] => {}()/\@:
        [file] => Array
            (
                [storePath] => /home/aguskhae/personal-ci-core/writable/cache/
                [mode] => 416
            )
    
        [memcached] => Array
            (
                [host] => 127.0.0.1
                [port] => 11211
                [weight] => 1
                [raw] => 
            )
    
        [redis] => Array
            (
                [host] => 127.0.0.1
                [password] => 
                [port] => 6379
                [timeout] => 0
                [database] => 0
            )
    
        [validHandlers] => Array
            (
                [dummy] => CodeIgniter\Cache\Handlers\DummyHandler
                [file] => CodeIgniter\Cache\Handlers\FileHandler
                [memcached] => CodeIgniter\Cache\Handlers\MemcachedHandler
                [predis] => CodeIgniter\Cache\Handlers\PredisHandler
                [redis] => CodeIgniter\Cache\Handlers\RedisHandler
                [wincache] => CodeIgniter\Cache\Handlers\WincacheHandler
            )
    
    )
    
    $returnResponse

    354 
    355         $this->getRequestObject();
    356         $this->getResponseObject();
    357 
    358         $this->spoofRequestMethod();
    359 
    360         try {
    361             $this->response = $this->handleRequest($routes, config(Cache::class), $returnResponse);
    362         } catch (ResponsableInterface|DeprecatedRedirectException $e) {
    363             $this->outputBufferingEnd();
    364             if ($e instanceof DeprecatedRedirectException) {
    365                 $e = new RedirectException($e->getMessage(), $e->getCode(), $e);
    366             }
    367 
    368             $this->response $e->getResponse();
    
  17. FCPATH/index.php : 79   —  CodeIgniter\CodeIgniter->run ()

    72  *---------------------------------------------------------------
    73  * LAUNCH THE APPLICATION
    74  *---------------------------------------------------------------
    75  * Now that everything is set up, it's time to actually fire
    76  * up the engines and make this app do its thang.
    77  */
    78 
    79 $app->run();
    80 
    81 // Save Config Cache
    82 // $factoriesCache->save('config');
    83 // ^^^ Uncomment this line if you want to use Config Caching.
    84 
    85 // Exits the application, setting the exit code for CLI-based applications
    86 // that might be watching.
    

$_SERVER

Key Value
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_ENCODING br,gzip
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_HOST aguskhaer.com
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_IF_MODIFIED_SINCE Wed, 13 Nov 2024 22:30:14 GMT
HTTP_X_HTTPS 1
DOCUMENT_ROOT /home/aguskhae/public_html
REMOTE_ADDR 18.97.14.84
REMOTE_PORT 49400
SERVER_ADDR 202.52.146.208
SERVER_NAME aguskhaer.com
SERVER_ADMIN webmaster@aguskhaer.com
SERVER_PORT 443
REQUEST_SCHEME https
REQUEST_URI /
HTTPS on
X_SPDY HTTP2
SSL_PROTOCOL TLSv1.3
SSL_CIPHER TLS_AES_256_GCM_SHA384
SSL_CIPHER_USEKEYSIZE 256
SSL_CIPHER_ALGKEYSIZE 256
SCRIPT_FILENAME /home/aguskhae/public_html/index.php
QUERY_STRING
SCRIPT_URI https://aguskhaer.com/
SCRIPT_URL /
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
X-LSCACHE on
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1733651936.0917
REQUEST_TIME
1733651936
argv
Array
(
)
argc
0
CI_ENVIRONMENT development
app.baseURL https://aguskhaer.com/
BASE_URL_API https://personal-admin.aguskhaer.com/api/

Constants

Key Value
FCPATH /home/aguskhae/public_html/
APPPATH /home/aguskhae/personal-ci-core/app/
ROOTPATH /home/aguskhae/personal-ci-core/
SYSTEMPATH /home/aguskhae/personal-ci-core/vendor/codeigniter4/framework/system/
WRITEPATH /home/aguskhae/personal-ci-core/writable/
TESTPATH /home/aguskhae/personal-ci-core/tests/
APP_NAMESPACE App
COMPOSER_PATH /home/aguskhae/personal-ci-core/vendor/autoload.php
SECOND
1
MINUTE
60
HOUR
3600
DAY
86400
WEEK
604800
MONTH
2592000
YEAR
31536000
DECADE
315360000
EXIT_SUCCESS
0
EXIT_ERROR
1
EXIT_CONFIG
3
EXIT_UNKNOWN_FILE
4
EXIT_UNKNOWN_CLASS
5
EXIT_UNKNOWN_METHOD
6
EXIT_USER_INPUT
7
EXIT_DATABASE
8
EXIT__AUTO_MIN
9
EXIT__AUTO_MAX
125
EVENT_PRIORITY_LOW
200
EVENT_PRIORITY_NORMAL
100
EVENT_PRIORITY_HIGH
10
VENDORPATH /home/aguskhae/personal-ci-core/vendor/
ENVIRONMENT development
SHOW_DEBUG_BACKTRACE
1
CI_DEBUG
1
KINT_DIR /home/aguskhae/personal-ci-core/vendor/codeigniter4/framework/system/ThirdParty/Kint
KINT_WIN

                                                                    
KINT_PHP72
1
KINT_PHP73
1
KINT_PHP74
1
KINT_PHP80
1
KINT_PHP81
1
KINT_PHP82

                                                                    
KINT_PHP83

                                                                    
KINT_PHP84

                                                                    
Path https://aguskhaer.com/index.php/
HTTP Method GET
IP Address 18.97.14.84
Is AJAX Request? no
Is CLI Request? no
Is Secure Request? yes
User Agent CCBot/2.0 (https://commoncrawl.org/faq/)
No $_GET, $_POST, or $_COOKIE Information to show.

Headers

Header Value
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding br,gzip
Accept-Language en-US,en;q=0.5
Host aguskhaer.com
User-Agent CCBot/2.0 (https://commoncrawl.org/faq/)
If-Modified-Since Wed, 13 Nov 2024 22:30:14 GMT
X-Https 1
Response Status 200 - OK

Headers

Header Value
Cache-Control no-store, max-age=0, no-cache
Content-Type text/html; charset=UTF-8
  1. FCPATH/index.php
  2. APPPATH/Config/Paths.php
  3. SYSTEMPATH/bootstrap.php
  4. APPPATH/Config/Constants.php
  5. APPPATH/Common.php
  6. SYSTEMPATH/Common.php
  7. SYSTEMPATH/Config/AutoloadConfig.php
  8. APPPATH/Config/Autoload.php
  9. SYSTEMPATH/Modules/Modules.php
  10. APPPATH/Config/Modules.php
  11. SYSTEMPATH/Autoloader/Autoloader.php
  12. SYSTEMPATH/Config/BaseService.php
  13. SYSTEMPATH/Config/Services.php
  14. APPPATH/Config/Services.php
  15. VENDORPATH/autoload.php
  16. VENDORPATH/composer/autoload_real.php
  17. VENDORPATH/composer/platform_check.php
  18. VENDORPATH/composer/ClassLoader.php
  19. VENDORPATH/composer/autoload_static.php
  20. VENDORPATH/ralouphie/getallheaders/src/getallheaders.php
  21. VENDORPATH/symfony/deprecation-contracts/function.php
  22. VENDORPATH/myclabs/deep-copy/src/DeepCopy/deep_copy.php
  23. VENDORPATH/guzzlehttp/guzzle/src/functions_include.php
  24. VENDORPATH/guzzlehttp/guzzle/src/functions.php
  25. VENDORPATH/phpunit/phpunit/src/Framework/Assert/Functions.php
  26. VENDORPATH/composer/InstalledVersions.php
  27. VENDORPATH/composer/installed.php
  28. SYSTEMPATH/Autoloader/FileLocator.php
  29. SYSTEMPATH/Helpers/url_helper.php
  30. APPPATH/Helpers/Utils_helper.php
  31. SYSTEMPATH/Config/DotEnv.php
  32. SYSTEMPATH/Config/Factories.php
  33. SYSTEMPATH/Config/Factory.php
  34. SYSTEMPATH/Config/BaseConfig.php
  35. APPPATH/Config/App.php
  36. SYSTEMPATH/CodeIgniter.php
  37. APPPATH/Config/Cache.php
  38. SYSTEMPATH/Cache/CacheFactory.php
  39. SYSTEMPATH/Cache/Handlers/FileHandler.php
  40. SYSTEMPATH/Cache/Handlers/BaseHandler.php
  41. SYSTEMPATH/Cache/CacheInterface.php
  42. SYSTEMPATH/Cache/ResponseCache.php
  43. APPPATH/Config/Boot/development.php
  44. APPPATH/Config/Exceptions.php
  45. VENDORPATH/psr/log/Psr/Log/LogLevel.php
  46. SYSTEMPATH/Debug/Exceptions.php
  47. SYSTEMPATH/API/ResponseTrait.php
  48. SYSTEMPATH/ThirdParty/Kint/init.php
  49. SYSTEMPATH/ThirdParty/Kint/Kint.php
  50. SYSTEMPATH/ThirdParty/Kint/FacadeInterface.php
  51. SYSTEMPATH/ThirdParty/Kint/Utils.php
  52. SYSTEMPATH/ThirdParty/Kint/init_helpers.php
  53. APPPATH/Config/Kint.php
  54. SYSTEMPATH/ThirdParty/Kint/Renderer/AbstractRenderer.php
  55. SYSTEMPATH/ThirdParty/Kint/Renderer/RendererInterface.php
  56. APPPATH/Config/ContentSecurityPolicy.php
  57. SYSTEMPATH/HTTP/ContentSecurityPolicy.php
  58. SYSTEMPATH/ThirdParty/Kint/Renderer/RichRenderer.php
  59. SYSTEMPATH/ThirdParty/Kint/Renderer/CliRenderer.php
  60. SYSTEMPATH/ThirdParty/Kint/Renderer/TextRenderer.php
  61. SYSTEMPATH/Helpers/kint_helper.php
  62. SYSTEMPATH/Debug/Timer.php
  63. SYSTEMPATH/HTTP/IncomingRequest.php
  64. SYSTEMPATH/HTTP/Request.php
  65. SYSTEMPATH/HTTP/OutgoingRequest.php
  66. SYSTEMPATH/HTTP/Message.php
  67. SYSTEMPATH/HTTP/MessageTrait.php
  68. SYSTEMPATH/HTTP/MessageInterface.php
  69. SYSTEMPATH/HTTP/OutgoingRequestInterface.php
  70. SYSTEMPATH/HTTP/RequestTrait.php
  71. SYSTEMPATH/HTTP/RequestInterface.php
  72. SYSTEMPATH/Superglobals.php
  73. SYSTEMPATH/HTTP/SiteURIFactory.php
  74. SYSTEMPATH/HTTP/URI.php
  75. SYSTEMPATH/HTTP/SiteURI.php
  76. SYSTEMPATH/HTTP/UserAgent.php
  77. APPPATH/Config/UserAgents.php
  78. SYSTEMPATH/HTTP/Header.php
  79. SYSTEMPATH/HTTP/Response.php
  80. SYSTEMPATH/HTTP/ResponseTrait.php
  81. SYSTEMPATH/HTTP/ResponseInterface.php
  82. SYSTEMPATH/Cookie/Cookie.php
  83. SYSTEMPATH/Cookie/CloneableCookieInterface.php
  84. SYSTEMPATH/Cookie/CookieInterface.php
  85. SYSTEMPATH/Cookie/CookieStore.php
  86. APPPATH/Config/Cookie.php
  87. SYSTEMPATH/Events/Events.php
  88. APPPATH/Config/Events.php
  89. APPPATH/Config/Toolbar.php
  90. SYSTEMPATH/Debug/Toolbar.php
  91. SYSTEMPATH/Debug/Toolbar/Collectors/Timers.php
  92. SYSTEMPATH/Debug/Toolbar/Collectors/BaseCollector.php
  93. SYSTEMPATH/Debug/Toolbar/Collectors/Database.php
  94. APPPATH/Config/Database.php
  95. SYSTEMPATH/Database/Config.php
  96. SYSTEMPATH/Debug/Toolbar/Collectors/Logs.php
  97. SYSTEMPATH/Debug/Toolbar/Collectors/Views.php
  98. SYSTEMPATH/Debug/Toolbar/Collectors/Files.php
  99. SYSTEMPATH/Debug/Toolbar/Collectors/Routes.php
  100. SYSTEMPATH/Debug/Toolbar/Collectors/Events.php
  101. SYSTEMPATH/Router/RouteCollection.php
  102. SYSTEMPATH/Router/RouteCollectionInterface.php
  103. APPPATH/Config/Routing.php
  104. SYSTEMPATH/Config/Routing.php
  105. VENDORPATH/laminas/laminas-escaper/src/Escaper.php
  106. SYSTEMPATH/Helpers/array_helper.php
  107. APPPATH/Config/Routes.php
  108. SYSTEMPATH/Router/Router.php
  109. SYSTEMPATH/Router/RouterInterface.php
  110. APPPATH/Config/Feature.php
  111. APPPATH/Config/Filters.php
  112. SYSTEMPATH/Filters/Filters.php
  113. APPPATH/Controllers/Home.php
  114. APPPATH/Controllers/BaseController.php
  115. SYSTEMPATH/Controller.php
  116. APPPATH/Config/GlobalSettings.php
  117. VENDORPATH/guzzlehttp/guzzle/src/Client.php
  118. VENDORPATH/guzzlehttp/guzzle/src/ClientTrait.php
  119. VENDORPATH/guzzlehttp/guzzle/src/ClientInterface.php
  120. VENDORPATH/psr/http-client/src/ClientInterface.php
  121. VENDORPATH/guzzlehttp/guzzle/src/HandlerStack.php
  122. VENDORPATH/guzzlehttp/guzzle/src/Utils.php
  123. VENDORPATH/guzzlehttp/guzzle/src/Handler/Proxy.php
  124. VENDORPATH/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
  125. VENDORPATH/guzzlehttp/guzzle/src/Handler/CurlFactory.php
  126. VENDORPATH/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
  127. VENDORPATH/guzzlehttp/guzzle/src/Handler/CurlHandler.php
  128. VENDORPATH/guzzlehttp/guzzle/src/Middleware.php
  129. VENDORPATH/guzzlehttp/guzzle/src/RedirectMiddleware.php
  130. SYSTEMPATH/Log/Logger.php
  131. VENDORPATH/psr/log/Psr/Log/LoggerInterface.php
  132. APPPATH/Config/Logger.php
  133. VENDORPATH/guzzlehttp/guzzle/src/RequestOptions.php
  134. VENDORPATH/guzzlehttp/psr7/src/Utils.php
  135. VENDORPATH/guzzlehttp/psr7/src/Uri.php
  136. VENDORPATH/psr/http-message/src/UriInterface.php
  137. VENDORPATH/guzzlehttp/psr7/src/Request.php
  138. VENDORPATH/guzzlehttp/psr7/src/MessageTrait.php
  139. VENDORPATH/psr/http-message/src/RequestInterface.php
  140. VENDORPATH/psr/http-message/src/MessageInterface.php
  141. VENDORPATH/guzzlehttp/psr7/src/Stream.php
  142. VENDORPATH/psr/http-message/src/StreamInterface.php
  143. VENDORPATH/guzzlehttp/promises/src/Create.php
  144. VENDORPATH/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
  145. VENDORPATH/guzzlehttp/guzzle/src/Handler/EasyHandle.php
  146. VENDORPATH/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
  147. VENDORPATH/guzzlehttp/psr7/src/Response.php
  148. VENDORPATH/psr/http-message/src/ResponseInterface.php
  149. VENDORPATH/guzzlehttp/promises/src/FulfilledPromise.php
  150. VENDORPATH/guzzlehttp/promises/src/PromiseInterface.php
  151. VENDORPATH/guzzlehttp/promises/src/Utils.php
  152. VENDORPATH/guzzlehttp/promises/src/TaskQueue.php
  153. VENDORPATH/guzzlehttp/promises/src/TaskQueueInterface.php
  154. VENDORPATH/guzzlehttp/promises/src/Promise.php
  155. VENDORPATH/guzzlehttp/promises/src/Is.php
  156. VENDORPATH/guzzlehttp/guzzle/src/Exception/RequestException.php
  157. VENDORPATH/guzzlehttp/guzzle/src/Exception/TransferException.php
  158. VENDORPATH/guzzlehttp/guzzle/src/Exception/GuzzleException.php
  159. VENDORPATH/psr/http-client/src/ClientExceptionInterface.php
  160. VENDORPATH/psr/http-client/src/RequestExceptionInterface.php
  161. VENDORPATH/guzzlehttp/guzzle/src/BodySummarizer.php
  162. VENDORPATH/guzzlehttp/guzzle/src/BodySummarizerInterface.php
  163. VENDORPATH/guzzlehttp/psr7/src/Message.php
  164. VENDORPATH/guzzlehttp/guzzle/src/Exception/ServerException.php
  165. VENDORPATH/guzzlehttp/guzzle/src/Exception/BadResponseException.php
  166. SYSTEMPATH/Log/Handlers/FileHandler.php
  167. SYSTEMPATH/Log/Handlers/BaseHandler.php
  168. SYSTEMPATH/Log/Handlers/HandlerInterface.php
  169. SYSTEMPATH/Debug/ExceptionHandler.php
  170. SYSTEMPATH/Debug/BaseExceptionHandler.php
  171. SYSTEMPATH/Debug/ExceptionHandlerInterface.php
  172. APPPATH/Views/errors/html/error_exception.php
  173. SYSTEMPATH/Validation/FormatRules.php
Memory Usage 6 MB
Peak Memory Usage: 6 MB
Memory Limit: 128M