16. Whoops\Exception\ErrorException
…/­src/­App/­Model/­Member.php102
15. Whoops\Run handleError
…/­src/­App/­Model/­Member.php102
14. App\Model\Member getCurrentMember
…/­view/­page_layout.php42
13. include
…/­vendor/­league/­plates/­src/­Template/­Template.php153
12. League\Plates\Template\Template render
…/­vendor/­league/­plates/­src/­Template/­Template.php160
11. League\Plates\Template\Template render
…/­vendor/­league/­plates/­src/­Engine.php277
10. League\Plates\Engine render
…/­src/­App/­Application.php916
9. App\Application render
…/­index.php496
8. {closure}
<#unknown>0
7. call_user_func_array
…/­vendor/­league/­route/­src/­Strategy/­RequestResponseStrategy.php18
6. League\Route\Strategy\RequestResponseStrategy dispatch
…/­vendor/­league/­route/­src/­Route.php92
5. League\Route\Route dispatch
<#unknown>0
4. call_user_func_array
…/­vendor/­league/­route/­src/­Dispatcher.php62
3. League\Route\Dispatcher handleFound
…/­vendor/­league/­route/­src/­Dispatcher.php43
2. League\Route\Dispatcher handle
…/­vendor/­league/­route/­src/­RouteCollection.php118
1. League\Route\RouteCollection dispatch
…/­src/­App/­Application.php905
0. App\Application run
…/­index.php1558

Whoops \ Exception \ ErrorException (E_NOTICE)

Callstack information; navigate with mouse or keyboard using Ctrl+↑ or Ctrl+↓
Copy-to-clipboard button
Exception message and its type
Code snippet where the error was thrown
Server state information
Application provided context information
Whoops\Exception\ErrorException thrown with message "Undefined index: member" Stacktrace: #16 Whoops\Exception\ErrorException in /home/admin/web/imptrust.com/public_html/src/App/Model/Member.php:102 #15 Whoops\Run:handleError in /home/admin/web/imptrust.com/public_html/src/App/Model/Member.php:102 #14 App\Model\Member:getCurrentMember in /home/admin/web/imptrust.com/public_html/view/page_layout.php:42 #13 include in /home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Template/Template.php:153 #12 League\Plates\Template\Template:render in /home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Template/Template.php:160 #11 League\Plates\Template\Template:render in /home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Engine.php:277 #10 League\Plates\Engine:render in /home/admin/web/imptrust.com/public_html/src/App/Application.php:916 #9 App\Application:render in /home/admin/web/imptrust.com/public_html/index.php:496 #8 {closure} in <#unknown>:0 #7 call_user_func_array in /home/admin/web/imptrust.com/public_html/vendor/league/route/src/Strategy/RequestResponseStrategy.php:18 #6 League\Route\Strategy\RequestResponseStrategy:dispatch in /home/admin/web/imptrust.com/public_html/vendor/league/route/src/Route.php:92 #5 League\Route\Route:dispatch in <#unknown>:0 #4 call_user_func_array in /home/admin/web/imptrust.com/public_html/vendor/league/route/src/Dispatcher.php:62 #3 League\Route\Dispatcher:handleFound in /home/admin/web/imptrust.com/public_html/vendor/league/route/src/Dispatcher.php:43 #2 League\Route\Dispatcher:handle in /home/admin/web/imptrust.com/public_html/vendor/league/route/src/RouteCollection.php:118 #1 League\Route\RouteCollection:dispatch in /home/admin/web/imptrust.com/public_html/src/App/Application.php:905 #0 App\Application:run in /home/admin/web/imptrust.com/public_html/index.php:1558

Undefined index: member

/home/admin/web/imptrust.com/public_html/src/App/Model/Member.php
            }
            return true;
        }
    }
 
    public static function getCurrentMember()
    {
        $user = R::findOne('member', 'id = ? AND active != 0', [$_SESSION['member']]);
        if (empty($user)) {
            return null;
/home/admin/web/imptrust.com/public_html/src/App/Model/Member.php
            }
            return true;
        }
    }
 
    public static function getCurrentMember()
    {
        $user = R::findOne('member', 'id = ? AND active != 0', [$_SESSION['member']]);
        if (empty($user)) {
            return null;
/home/admin/web/imptrust.com/public_html/view/page_layout.php
                <? //= $app->getImg('top_right1.jpg', true); ?><!--" />-->
 
                <!--                    <img class="top_right" src="-->
                <? //= $app->getImg("tel.jpg",true); ?><!--" style="height: 50px;margin-left: 20px">-->
 
                <ul class="list-inline fr lang_list"
                    style="margin-top:30px; font-size:18px; float:right; margin-right:20px;">
                    <?php $user = Member::getCurrentMember()->unbox();
                    if ($user) {
                        ?>
/home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Template/Template.php
            );
        }
 
        try {
            $level = ob_get_level();
            ob_start();
 
            include $this->path();
 
            $content = ob_get_clean();
/home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Template/Template.php
            include $this->path();
 
            $content = ob_get_clean();
 
            if (isset($this->layoutName)) {
                $layout = $this->engine->make($this->layoutName);
                $layout->sections = array_merge($this->sections, array('content' => $content));
                $content = $layout->render($this->layoutData);
            }
 
/home/admin/web/imptrust.com/public_html/vendor/league/plates/src/Engine.php
     * Create a new template and render it.
     * @param  string $name
     * @param  array  $data
     * @return string
     */
    public function render($name, array $data = array())
    {
        return $this->make($name)->render($data);
    }
}
/home/admin/web/imptrust.com/public_html/src/App/Application.php
    public function getPlates()
    {
        return $this->plates;
    }
 
    public function render($name, $data = [])
    {
        return $this->plates->render($name, $data);
    }
 
/home/admin/web/imptrust.com/public_html/index.php
 
        $app->redirect("password");
    });
 
    $route->map("GET", "/forget_pwd", function (ServerRequestInterface $request, ResponseInterface $response, array $args) use ($app) {
        $app->page = "forget_pwd";
 
        $html = $app->render("forget_pwd");
        $response->getBody()->write($html);
        return $response;
<#unknown>
/home/admin/web/imptrust.com/public_html/vendor/league/route/src/Strategy/RequestResponseStrategy.php
     */
    public function dispatch(callable $controller, array $vars, Route $route = null)
    {
        $response = call_user_func_array($controller, [
            $this->getRequest(),
            $this->getResponse(),
            $vars
        ]);
 
        return $this->determineResponse($response);
/home/admin/web/imptrust.com/public_html/vendor/league/route/src/Route.php
            $strategy->setRequest($request);
        }
 
        if ($strategy instanceof ResponseAwareInterface) {
            $strategy->setResponse($response);
        }
 
        return $strategy->dispatch($callable, $vars, $this);
    }
 
<#unknown>
/home/admin/web/imptrust.com/public_html/vendor/league/route/src/Dispatcher.php
     */
    protected function handleFound(
        callable               $route,
        ServerRequestInterface $request,
        ResponseInterface      $response,
        array                  $vars
    ) {
        return call_user_func_array($route, [$request, $response, $vars]);
    }
 
/home/admin/web/imptrust.com/public_html/vendor/league/route/src/Dispatcher.php
        }
 
        if ($match[0] === FastRoute::METHOD_NOT_ALLOWED) {
            $allowed = (array) $match[1];
            return $this->handleNotAllowed($response, $allowed);
        }
 
        return $this->handleFound($match[1], $request, $response, (array) $match[2]);
    }
 
/home/admin/web/imptrust.com/public_html/vendor/league/route/src/RouteCollection.php
     *
     * @return \Psr\Http\Message\ResponseInterface
     */
    public function dispatch(ServerRequestInterface $request, ResponseInterface $response)
    {
        $dispatcher = $this->getDispatcher($request);
 
        return $dispatcher->handle($request, $response);
    }
 
/home/admin/web/imptrust.com/public_html/src/App/Application.php
        } else {
            R::selectDatabase($dbname);
        }
    }
 
    public function run()
    {
        $response = $this->route->dispatch($this->container->get('request'), $this->container->get('response'));
        $this->container->get('emitter')->emit($response);
    }
/home/admin/web/imptrust.com/public_html/index.php
    $builder->build();
    $_SESSION['phrase'] = $builder->getPhrase();
    echo $builder->inline();
    exit();
});
 
try {
    $app->run();
} catch (NotFoundException $ex) {
    echo "Not Found";
empty
empty
empty
empty
empty
Key Value
REDIRECT_UNIQUE_ID ZgajxnsNM9ifSXsBinfM2AAAABY
REDIRECT_PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
REDIRECT_STATUS 200
UNIQUE_ID ZgajxnsNM9ifSXsBinfM2AAAABY
PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
HTTP_HOST trust.1416888.com
HTTP_X_FORWARDED_FOR 54.157.56.179, 54.157.56.179
HTTP_CONNECTION close
HTTP_ACCEPT_ENCODING gzip
HTTP_CF_RAY 86bf77337ab80842-IAD
HTTP_X_FORWARDED_PROTO http
HTTP_CF_VISITOR {"scheme":"http"}
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_CF_CONNECTING_IP 54.157.56.179
HTTP_CDN_LOOP cloudflare
HTTP_CF_IPCOUNTRY US
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
SERVER_SIGNATURE
SERVER_SOFTWARE Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 PHP/5.6.40
SERVER_NAME trust.1416888.com
SERVER_ADDR 172.31.16.82
SERVER_PORT 80
REMOTE_ADDR 54.157.56.179
DOCUMENT_ROOT /home/admin/web/imptrust.com/public_html
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/admin/web/imptrust.com/public_html
SERVER_ADMIN [email protected]
SCRIPT_FILENAME /home/admin/web/imptrust.com/public_html/index.php
REMOTE_PORT 48832
REDIRECT_URL /sc/forget_pwd
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.0
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /sc/forget_pwd
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711711174.048
REQUEST_TIME 1711711174
HTTP on
HTTPS on
empty
0. Whoops\Handler\PrettyPageHandler