20. ErrorException
…/­engage2015/­public_html/­_app/­vendor/­erusev/­Parsedown.php985
19. Slim\Slim handleErrors
…/­engage2015/­public_html/­_app/­vendor/­erusev/­Parsedown.php985
18. Parsedown element
…/­engage2015/­public_html/­_app/­vendor/­erusev/­Parsedown.php294
17. Parsedown lines
…/­engage2015/­public_html/­_app/­vendor/­erusev/­Parsedown.php45
16. Parsedown text
…/­engage2015/­public_html/­_app/­vendor/­erusev/­ParsedownExtra.php39
15. ParsedownExtra text
…/­engage2015/­public_html/­_app/­core/­api/­parse.php66
14. Parse markdown
…/­engage2015/­public_html/­_app/­core/­api/­content.php83
13. Content transform
…/­engage2015/­public_html/­_app/­core/­api/­content.php61
12. Content parse
…/­engage2015/­public_html/­_app/­core/­content/­contentset.php819
11. ContentSet prepare
…/­engage2015/­public_html/­_app/­core/­content/­contentset.php1097
10. ContentSet get
…/­engage2015/­public_html/­_app/­core/­api/­content.php120
9. Content get
…/­engage2015/­public_html/­_app/­routes.php446
8. {closure}
<#unknown>0
7. call_user_func_array
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Router.php172
6. Slim\Router dispatch
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Slim.php1290
5. Slim\Slim call
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Middleware/­Flash.php86
4. Slim\Middleware\Flash call
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Middleware/­MethodOverride.php94
3. Slim\Middleware\MethodOverride call
…/­engage2015/­public_html/­_app/­vendor/­Zeuxisoo/­Whoops/­Provider/­Slim/­WhoopsMiddleware.php71
2. Zeuxisoo\Whoops\Provider\Slim\WhoopsMiddleware call
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Middleware/­PrettyExceptions.php67
1. Slim\Middleware\PrettyExceptions call
…/­engage2015/­public_html/­_app/­vendor/­Slim/­Slim.php1174
0. Slim\Slim run
…/­engage2015/­public_html/­index.php68

ErrorException

Array to string conversion

 
        if (isset($Element['text']))
        {
            $markup .= '>';
 
            if (isset($Element['handler']))
            {
                $markup .= $this->$Element['handler']($Element['text']);
            }
            else
 
        if (isset($Element['text']))
        {
            $markup .= '>';
 
            if (isset($Element['handler']))
            {
                $markup .= $this->$Element['handler']($Element['text']);
            }
            else
        # ~
 
        $markup = '';
 
        foreach ($Blocks as $Block)
        {
            $markup .= "\n";
            $markup .= isset($Block['markup']) ? $Block['markup'] : $this->element($Block['element']);
        }
 
        # remove surrounding line breaks
        $text = trim($text, "\n");
 
        # split text into lines
        $lines = explode("\n", $text);
 
        # iterate through lines to identify blocks
        $markup = $this->lines($lines);
 
        # trim line breaks
    }
 
    #
    # ~
 
    function text($text)
    {
        $markup = parent::text($text);
 
        # merge consecutive dl elements
            }
 
            self::$parsers['markdown'] = $parser;
        }
 
        // parse for markdown
        if (strtolower(Config::get('markdown_parser', 'standard')) === "parsedown") {
            $result = self::$parsers['markdown']->text($string);
        } else {
            $result = self::$parsers['markdown']->transform($string);
    public static function transform($content, $content_type=NULL) {
        $content_type = Helper::pick($content_type, Config::getContentType());
 
        // render HTML from the given $content_type
        switch (strtolower($content_type)) {
            case "markdown":
            case "md":
                $content = Parse::markdown($content);
                break;
 
 
        $parse_order = Config::getParseOrder();
 
        if ($parse_order[0] == 'tags') {
            $output = Parse::template($template_data, $data);
            $output = self::transform($output, $type);
        } else {
            $output = self::transform($template_data, $type);
            $output = Parse::template($output, $data);
        }
                    // content file exists
                    if ($content_file && File::exists($content_file)) {
                        // make this
                        $raw_file  = substr(File::get($content_file), 3);
                        $divide    = strpos($raw_file, "\n---");
 
                        $item_content['content_raw']  = trim(substr($raw_file, $divide + 4));
                        $item_content['content']      = Content::parse($item_content['content_raw'], $item);
                    }
 
     * @return array
     */
    public function get($parse_content=true, $supplement=true)
    {
        if ($supplement) {
            $this->supplement();
        }
        $this->prepare($parse_content);
        return $this->content;
    }
    public static function get($url, $parse_content=true, $supplement=true)
    {
        $hash = Debug::markStart('content', 'getting');
        $url_hash = Helper::makeHash($url, $parse_content, $supplement);
        
        if (!isset(self::$fetched_content[$url_hash])) {
            $content_set  = ContentService::getContentByURL($url);
            $content      = $content_set->get($parse_content, $supplement);
            self::$fetched_content[$url_hash] = (isset($content[0])) ? $content[0] : array();
        }
                $more   = 'Visitor came directly to this page and may have typed the URL incorrectly.';
                $aspect = 'visitor';
            }
 
            Log::error("404 - Page not found. " . $more, $aspect, "content");
        }
 
        $data          = Content::get(Path::tidy(Config::getSiteRoot() . "/404"));
        $template_list = array('404');
        $response_code = 404;
<#unknown>
 
        //Invoke middleware
        foreach ($route->getMiddleware() as $mw) {
            call_user_func_array($mw, array($route));
        }
 
        //Invoke callable
        call_user_func_array($route->getCallable(), array_values($route->getParams()));
 
        return true;
            ob_start();
            $this->applyHook('slim.before.router');
            $dispatched = false;
            $matchedRoutes = $this->router->getMatchedRoutes($this->request->getMethod(), $this->request->getResourceUri());
            foreach ($matchedRoutes as $route) {
                try {
                    $this->applyHook('slim.before.dispatch');
                    $dispatched = $this->router->dispatch($route);
                    $this->applyHook('slim.after.dispatch');
                    if ($dispatched) {
    {
        //Read flash messaging from previous request if available
        $this->loadMessages();
 
        //Prepare flash messaging for current request
        $env = $this->app->environment();
        $env['slim.flash'] = $this;
        $this->next->call();
        $this->save();
    }
            $req = new \Slim\Http\Request($env);
            $method = $req->post($this->settings['key']);
            if ($method) {
                $env['slim.method_override.original_method'] = $env['REQUEST_METHOD'];
                $env['REQUEST_METHOD'] = strtoupper($method);
            }
        }
        $this->next->call();
    }
}
			$app->config('whoops', new Run);
			$app->config('whoops')->pushHandler($app->config('whoops.error_page_handler'));
			$app->config('whoops')->pushHandler($app->config('whoops.error_json_handler'));
			$app->config('whoops')->pushHandler($app->config('whoops.slim_info_handler'));
			$app->error(array($app->config('whoops'), Run::EXCEPTION_HANDLER));
		}
 
		$this->next->call();
	}
}
 
    /**
     * Call
     */
    public function call()
    {
        try {
            $this->next->call();
        } catch (\Exception $e) {
            $env = $this->app->environment();
    {
        set_error_handler(array('\Slim\Slim', 'handleErrors'));
 
        //Apply final outer middleware layers
        $this->add(new \Slim\Middleware\PrettyExceptions());
 
        //Invoke middleware and application stack
        $this->middleware[0]->call();
 
        //Fetch status, header, and body
| All the heavy initialization and configuration happens right here.
| Let's get going!
|
*/
 
$app = require_once BASE_PATH . '/_app/start.php';
 
$app->run();
 
Key Value
Charset
Locale <none>
Application Class Slim\Slim
Route Name <none>
Route Pattern /(:segments+)
Route Middleware <none>
Key Value
URI
Request URI /services.asp
Path /services.asp
Query String Array ( [lnk] => contracts )
HTTP Method GET
Script Name
Base URL http://engage.tt
Scheme http
Port 80
Host engage.tt
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
HTTP_ACCEPT */*
CONTENT_LENGTH 0
HTTP_HOST engage.tt
HTTP_REFERER http://www.eal-caribbean.com/services.asp?lnk=contracts
HTTP_USER_AGENT claudebot
REDIRECT_UNIQUE_ID ZgXN-cWFn8D7kcA2Fw7JwwAAAIo
REDIRECT_SCRIPT_URL /services.asp
REDIRECT_SCRIPT_URI http://engage.tt/services.asp
REDIRECT_USER_ID 1442186
REDIRECT_STATUS 200
UNIQUE_ID ZgXN-cWFn8D7kcA2Fw7JwwAAAIo
SCRIPT_URL /services.asp
SCRIPT_URI http://engage.tt/services.asp
USER_ID 1442186
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME engage.tt
SERVER_ADDR 107.180.4.5
SERVER_PORT 80
REMOTE_ADDR 3.235.75.229
DOCUMENT_ROOT /home/engage2015/public_html
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/engage2015/public_html
SERVER_ADMIN webmaster@engage.tt
SCRIPT_FILENAME /home/engage2015/public_html/index.php
REMOTE_PORT 57884
REDIRECT_URL /services.asp
REDIRECT_QUERY_STRING lnk=contracts
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING lnk=contracts
REQUEST_URI /services.asp?lnk=contracts
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711656442.1433
REQUEST_TIME 1711656442
Key Value
lnk contracts
empty
empty
empty
empty
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\JsonResponseHandler
2. Whoops\Handler\CallbackHandler