Warning: php.ini settings: Please disable mbstring.encoding_translation or set mbstring.http_input to "pass" in /home/youevans/public_html/2017/concrete/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup.php on line 42
concrete5 has encountered an issue.
RuntimeException
Failed to start the session because headers have already been sent by "/home/youevans/public_html/2017/concrete/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup.php" at line 42. RuntimeException thrown with message "Failed to start the session because headers have already been sent by "/home/youevans/public_html/2017/concrete/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup.php" at line 42." Stacktrace: #10 RuntimeException in /home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:134 #9 Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage:start in /home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:258 #8 Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage:getBag in /home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Session.php:79 #7 Symfony\Component\HttpFoundation\Session\Session:has in /home/youevans/public_html/2017/concrete/src/User/User.php:229 #6 Concrete\Core\User\User:__construct in /home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:423 #5 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:setSystemLocale in /home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:185 #4 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:bootHttpSapi in /home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:124 #3 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:boot in /home/youevans/public_html/2017/concrete/src/Foundation/Runtime/DefaultRuntime.php:80 #2 Concrete\Core\Foundation\Runtime\DefaultRuntime:boot in /home/youevans/public_html/2017/concrete/bootstrap/start.php:35 #1 require in /home/youevans/public_html/2017/concrete/dispatcher.php:31 #0 require in /home/youevans/public_html/2017/index.php:3
Stack frames (11):
10 RuntimeException
…/­vendor/­symfony/­http-foundation/­Session/­Storage/­NativeSessionStorage.php134
9 Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage start
…/­vendor/­symfony/­http-foundation/­Session/­Storage/­NativeSessionStorage.php258
8 Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage getBag
…/­vendor/­symfony/­http-foundation/­Session/­Session.php79
7 Symfony\Component\HttpFoundation\Session\Session has
…/­src/­User/­User.php229
6 Concrete\Core\User\User __construct
…/­src/­Foundation/­Runtime/­Boot/­DefaultBooter.php423
5 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter setSystemLocale
…/­src/­Foundation/­Runtime/­Boot/­DefaultBooter.php185
4 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter bootHttpSapi
…/­src/­Foundation/­Runtime/­Boot/­DefaultBooter.php124
3 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter boot
…/­src/­Foundation/­Runtime/­DefaultRuntime.php80
2 Concrete\Core\Foundation\Runtime\DefaultRuntime boot
…/­bootstrap/­start.php35
1 require
…/­dispatcher.php31
0 require
/­home/­youevans/­public_html/­2017/­index.php3
/home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
        if ($this->started) {
            return true;
        }
 
        if (\PHP_SESSION_ACTIVE === session_status()) {
            throw new \RuntimeException('Failed to start the session: already started by PHP.');
        }
 
        if (ini_get('session.use_cookies') && headers_sent($file, $line)) {
            throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line));
        }
 
        // ok to try and start the session
        if (!session_start()) {
            throw new \RuntimeException('Failed to start the session');
        }
 
        $this->loadSession();
 
        return true;
/home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
    public function getBag($name)
    {
        if (!isset($this->bags[$name])) {
            throw new \InvalidArgumentException(sprintf('The SessionBagInterface %s is not registered.', $name));
        }
 
        if ($this->saveHandler->isActive() && !$this->started) {
            $this->loadSession();
        } elseif (!$this->started) {
            $this->start();
        }
 
        return $this->bags[$name];
    }
 
    /**
     * Sets the MetadataBag.
     *
     * @param MetadataBag $metaBag
     */
/home/youevans/public_html/2017/concrete/vendor/symfony/http-foundation/Session/Session.php
    {
        return $this->storage->start();
    }
 
    /**
     * {@inheritdoc}
     */
    public function has($name)
    {
        return $this->storage->getBag($this->attributeName)->has($name);
    }
 
    /**
     * {@inheritdoc}
     */
    public function get($name, $default = null)
    {
        return $this->storage->getBag($this->attributeName)->get($name, $default);
    }
 
/home/youevans/public_html/2017/concrete/src/User/User.php
                if ($ux && is_object($ux)) {
                    $this->uID = $ux->getUserID();
                    $this->uName = $ux->getUserName();
                    $this->superUser = $ux->getUserID() == USER_SUPER_ID;
                    if ($ux->getUserDefaultLanguage()) {
                        $this->uDefaultLanguage = $ux->getUserDefaultLanguage();
                    }
                    $this->uTimezone = $ux->getUserTimezone();
                }
            } elseif ($session->has('uID')) {
                $this->uID = $session->get('uID');
                $this->uName = $session->get('uName');
                $this->uTimezone = $session->get('uTimezone');
                if ($session->has('uDefaultLanguage')) {
                    $this->uDefaultLanguage = $session->get('uDefaultLanguage');
                }
                $this->superUser = ($session->get('uID') == USER_SUPER_ID) ? true : false;
            } else {
                $this->uID = null;
                $this->uName = null;
/home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
    {
        $app->setupPackageAutoloaders();
    }
 
    /**
     * Initialize localization.
     */
    private function setSystemLocale()
    {
        $u = new User();
        $lan = $u->getUserLanguageToDisplay();
        $loc = Localization::getInstance();
        $loc->setContextLocale('ui', $lan);
    }
}
 
/home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
            require DIR_BASE_CORE . '/bootstrap/preprocess.php';
 
            /*
             * ----------------------------------------------------------------------------
             * Set the active language for the site, based either on the site locale, or the
             * current user record. This can be changed later as well, during runtime.
             * Start localization library.
             * ----------------------------------------------------------------------------
             */
            $this->setSystemLocale();
        }
    }
 
    /**
     * Enable configuration.
     *
     * @param Application $app
     *
     * @return Repository
     */
/home/youevans/public_html/2017/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
         * Registries for theme paths, assets, routes and file types.
         * ----------------------------------------------------------------------------
         */
        $this->initializeAssets($config);
        $this->initializeRoutes($config);
        $this->initializeFileTypes($config);
 
        // If we're not in the CLI SAPI, lets do additional booting for HTTP
        if (!$this->app->isRunThroughCommandLineInterface()) {
            return $this->bootHttpSapi($config, $app);
        }
    }
 
    /**
     * @param $config
     * @param $app
     *
     * @return null|Response
     */
    private function bootHttpSapi($config, $app)
/home/youevans/public_html/2017/concrete/src/Foundation/Runtime/DefaultRuntime.php
    }
 
    /**
     * Initialize the environment and prepare for running.
     */
    public function boot()
    {
        $booter = $this->getBooter();
 
        if ($response = $booter->boot()) {
            $this->sendResponse($response);
        } else {
            $this->status = self::STATUS_ACTIVE;
        }
    }
 
    /**
     * Begin the runtime.
     */
    public function run()
/home/youevans/public_html/2017/concrete/bootstrap/start.php
/** @var \Concrete\Core\Application\Application $cms */
$cms = require DIR_APPLICATION . '/bootstrap/start.php';
$cms->instance('app', $cms);
 
// Bind fully application qualified class names
$cms->instance('Concrete\Core\Application\Application', $cms);
$cms->instance('Illuminate\Container\Container', $cms);
 
// Boot the runtime
$cms->getRuntime()->boot();
 
return $cms;
 
/home/youevans/public_html/2017/concrete/dispatcher.php
 */
require $__DIR__ . '/bootstrap/autoload.php';
 
/*
 * ----------------------------------------------------------------------------
 * Begin concrete5 startup.
 * ----------------------------------------------------------------------------
 */
/** @var \Concrete\Core\Application\Application $cms */
$cms = require $__DIR__ . '/bootstrap/start.php';
 
/*
 * ----------------------------------------------------------------------------
 * Run the runtime.
 * ----------------------------------------------------------------------------
 */
$runtime = $cms->getRuntime();
if ($response = $runtime->run()) {
 
    /*
/home/youevans/public_html/2017/index.php
<?php
//testing
require 'concrete/dispatcher.php';
 

Environment & details:

Key Value
Version 8.1.0
Installed Version 8.1.0
Key Value
concrete.version 8.1.0
concrete.version_installed 8.1.0
concrete.version_db 20170123000000
concrete.installed true
concrete.locale en_US
concrete.charset UTF-8
concrete.maintenance_mode false
concrete.debug.display_errors true
concrete.debug.detail debug
concrete.proxy.host null
concrete.proxy.port null
concrete.proxy.user null
concrete.proxy.password null
concrete.upload.extensions *.flv;*.jpg;*.gif;*.jpeg;*.ico;*.docx;*.xla;*.png;*.psd;*.swf;*.doc;*.txt;*.xls;*.xlsx;*.csv;*.pdf;*.tiff;*.rtf;*.m4a;*.mov;*.wmv;*.mpeg;*.mpg;*.wav;*.3gp;*.avi;*.m4v;*.mp4;*.mp3;*.qt;*.ppt;*.pptx;*.kml;*.xml;*.svg;*.webm;*.ogg;*.ogv
concrete.interface.panel.page_relations false
concrete.mail.method PHP_MAIL
concrete.mail.methods.smtp.server
concrete.mail.methods.smtp.port
concrete.mail.methods.smtp.username
concrete.mail.methods.smtp.password
concrete.mail.methods.smtp.encryption
concrete.cache.enabled true
concrete.cache.lifetime 21600
concrete.cache.overrides true
concrete.cache.blocks true
concrete.cache.assets true
concrete.cache.theme_css true
concrete.cache.pages 0
concrete.cache.doctrine_dev_mode false
concrete.cache.full_page_lifetime default
concrete.cache.full_page_lifetime_value null
concrete.cache.full_contents_assets_hash false
concrete.cache.directory /home/youevans/public_html/2017/application/files/cache
concrete.cache.directory_relative null
concrete.cache.page.directory /home/youevans/public_html/2017/application/files/cache/pages
concrete.cache.page.adapter file
concrete.cache.environment.file environment.cache
concrete.cache.levels.expensive.drivers.core_ephemeral.class \Stash\Driver\Ephemeral
concrete.cache.levels.expensive.drivers.core_filesystem.class \Stash\Driver\FileSystem
concrete.cache.levels.expensive.drivers.core_filesystem.options.path /home/youevans/public_html/2017/application/files/cache
concrete.cache.levels.expensive.drivers.core_filesystem.options.dirPermissions 493
concrete.cache.levels.expensive.drivers.core_filesystem.options.filePermissions 420
concrete.cache.levels.object.drivers.core_ephemeral.class \Stash\Driver\Ephemeral
concrete.multilingual.redirect_home_to_default_locale false
concrete.multilingual.use_browser_detected_locale false
concrete.multilingual.default_locale false
concrete.multilingual.default_source_locale en_US
concrete.design.enable_custom true
concrete.design.enable_layouts true
concrete.log.emails true
concrete.log.errors true
concrete.log.spam false
concrete.log.queries.log false
concrete.log.queries.clear_on_reload false
concrete.jobs.enable_scheduling true
concrete.filesystem.temp_directory null
concrete.filesystem.permissions.file 420
concrete.filesystem.permissions.directory 493
concrete.email.enabled true
concrete.email.default.address concrete5-noreply@concrete5
concrete.email.default.name
concrete.email.form_block.address false
concrete.email.forgot_password.address null
concrete.email.forgot_password.name null
concrete.email.validate_registration.address null
concrete.email.validate_registration.name null
concrete.marketplace.enabled true
concrete.marketplace.request_timeout 30
concrete.marketplace.token null
concrete.marketplace.site_token null
concrete.marketplace.intelligent_search true
concrete.marketplace.log_requests false
concrete.external.intelligent_search_help true
concrete.external.news_overlay false
concrete.external.news true
concrete.misc.user_timezones false
concrete.misc.package_backup_directory /home/youevans/public_html/2017/application/files/trash
concrete.misc.enable_progressive_page_reindex true
concrete.misc.mobile_theme_id 0
concrete.misc.sitemap_approve_immediately true
concrete.misc.enable_translate_locale_en_us false
concrete.misc.page_search_index_lifetime 259200
concrete.misc.enable_trash_can true
concrete.misc.app_version_display_in_header true
concrete.misc.default_jpeg_image_compression 80
concrete.misc.help_overlay true
concrete.misc.require_version_comments false
concrete.misc.login_redirect HOMEPAGE
concrete.misc.access_entity_updated 1499094276
concrete.misc.do_page_reindex_check false
concrete.misc.latest_version 8.2.1
concrete.misc.login_redirect_cid 0
concrete.theme.compress_preprocessor_output false
concrete.theme.generate_less_sourcemap false
concrete.updates.enable_auto_update_packages false
concrete.updates.enable_permissions_protection true
concrete.updates.check_threshold 172800
concrete.updates.services.get_available_updates http://www.concrete5.org/tools/update_core
concrete.updates.services.inspect_update http://www.concrete5.org/tools/inspect_update
concrete.paths.trash /!trash
concrete.paths.drafts /!drafts
concrete.icons.page_template.width 120
concrete.icons.page_template.height 90
concrete.icons.theme_thumbnail.width 120
concrete.icons.theme_thumbnail.height 90
concrete.icons.file_manager_listing.handle file_manager_listing
concrete.icons.file_manager_listing.width 60
concrete.icons.file_manager_listing.height 60
concrete.icons.file_manager_detail.handle file_manager_detail
concrete.icons.file_manager_detail.width 400
concrete.icons.user_avatar.width 80
concrete.icons.user_avatar.height 80
concrete.icons.user_avatar.default /concrete/images/avatar_none.png
concrete.file_manager.images.use_exif_data_to_rotate_images false
concrete.file_manager.images.manipulation_library gd
concrete.file_manager.results 10
concrete.search_users.results 10
concrete.sitemap_xml.file sitemap.xml
concrete.sitemap_xml.frequency weekly
concrete.sitemap_xml.priority 0.5
concrete.accessibility.toolbar_titles false
concrete.accessibility.toolbar_large_font false
concrete.accessibility.display_help_system true
concrete.accessibility.toolbar_tooltips true
concrete.i18n.choose_language_login false
concrete.urls.concrete5 http://www.concrete5.org
concrete.urls.concrete5_secure https://www.concrete5.org
concrete.urls.newsflow http://newsflow.concrete5.org
concrete.urls.background_feed //backgroundimages.concrete5.org/wallpaper
concrete.urls.background_feed_secure https://backgroundimages.concrete5.org/wallpaper
concrete.urls.background_info http://backgroundimages.concrete5.org/get_image_data.php
concrete.urls.videos https://www.youtube.com/user/concrete5cms/videos
concrete.urls.help.developer http://documentation.concrete5.org/developers
concrete.urls.help.user http://documentation.concrete5.org/editors
concrete.urls.help.forum http://www.concrete5.org/community/forums
concrete.urls.paths.menu_help_service /tools/get_remote_help_list/
concrete.urls.paths.site_page /private/sites
concrete.urls.paths.newsflow_slot_content /tools/slot_content/
concrete.urls.paths.marketplace.connect /marketplace/connect
concrete.urls.paths.marketplace.connect_success /marketplace/connect/-/connected
concrete.urls.paths.marketplace.connect_validate /marketplace/connect/-/validate
concrete.urls.paths.marketplace.connect_new_token /marketplace/connect/-/generate_token
concrete.urls.paths.marketplace.checkout /cart/-/add/
concrete.urls.paths.marketplace.purchases /marketplace/connect/-/get_available_licenses
concrete.urls.paths.marketplace.item_information /marketplace/connect/-/get_item_information
concrete.urls.paths.marketplace.item_free_license /marketplace/connect/-/enable_free_license
concrete.urls.paths.marketplace.remote_item_list /marketplace/
concrete.urls.background_url /application/files/3815/0456/1653/login_screen_background.jpg
concrete.white_label.logo false
concrete.white_label.name false
concrete.white_label.dashboard_background null
concrete.white_label.background_url /application/files/3815/0456/1653/login_screen_background.jpg
concrete.session.name CONCRETE5
concrete.session.handler file
concrete.session.save_path null
concrete.session.max_lifetime 7200
concrete.session.cookie.cookie_path false
concrete.session.cookie.cookie_lifetime 0
concrete.session.cookie.cookie_domain false
concrete.session.cookie.cookie_secure false
concrete.session.cookie.cookie_httponly true
concrete.user.registration.enabled false
concrete.user.registration.type disabled
concrete.user.registration.captcha true
concrete.user.registration.email_registration false
concrete.user.registration.validate_email false
concrete.user.registration.approval false
concrete.user.registration.notification false
concrete.user.group.badge.default_point_value 50
concrete.user.username.maximum 64
concrete.user.username.minimum 3
concrete.user.username.allow_spaces false
concrete.user.password.maximum 128
concrete.user.password.minimum 5
concrete.user.password.hash_portable false
concrete.user.password.hash_cost_log2 12
concrete.user.password.legacy_salt
concrete.user.private_messages.throttle_max 20
concrete.user.private_messages.throttle_max_timespan 15
concrete.spam.whitelist_group 0
concrete.spam.notify_email
concrete.security.session.invalidate_on_user_agent_mismatch true
concrete.security.session.invalidate_on_ip_mismatch true
concrete.security.ban.ip.enabled true
concrete.security.ban.ip.attempts 5
concrete.security.ban.ip.time 300
concrete.security.ban.ip.length 10
concrete.security.misc.x_frame_options SAMEORIGIN
concrete.permissions.forward_to_login true
concrete.permissions.model advanced
concrete.seo.tracking.code
concrete.seo.tracking.code_position bottom
concrete.seo.exclude_words a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with
concrete.seo.url_rewriting false
concrete.seo.url_rewriting_all false
concrete.seo.redirect_to_canonical_url 0
concrete.seo.canonical_url null
concrete.seo.canonical_ssl_url null
concrete.seo.trailing_slash false
concrete.seo.title_format %2$s :: %1$s
concrete.seo.title_segment_separator ::
concrete.seo.page_path_separator -
concrete.seo.group_name_separator /
concrete.seo.segment_max_length 128
concrete.seo.paging_string ccm_paging_p
concrete.statistics.track_downloads true
concrete.limits.sitemap_pages 100
concrete.limits.delete_pages 100
concrete.limits.copy_pages 10
concrete.limits.page_search_index_batch 200
concrete.limits.job_queue_batch 10
concrete.limits.style_customizer.size_min -50
concrete.limits.style_customizer.size_max 200
concrete.page.search.always_reindex false
concrete.version_db_installed 20170123000000
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/bin:/usr/bin:/bin
REDIRECT_HANDLER application/x-httpd-ea-php56
REDIRECT_STATUS 200
UNIQUE_ID aWO7vY0dLtk_q3APzV_QogAAAMo
HTTPS on
SSL_TLS_SNI www.2017.youthopportunity.org
HTTP_ACCEPT */*
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_HOST www.2017.youthopportunity.org
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.2017.youthopportunity.org
SERVER_ADDR 96.125.168.244
SERVER_PORT 443
REMOTE_ADDR 216.73.216.41
DOCUMENT_ROOT /home/youevans/public_html/2017
REQUEST_SCHEME https
CONTEXT_PREFIX /cgi-sys
CONTEXT_DOCUMENT_ROOT /usr/local/cpanel/cgi-sys/
SERVER_ADMIN webmaster@2017.youthopportunity.org
SCRIPT_FILENAME /home/youevans/public_html/2017/index.php
REMOTE_PORT 35332
REDIRECT_URL /index.php
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /
SCRIPT_NAME /index.php
ORIG_SCRIPT_FILENAME /usr/local/cpanel/cgi-sys/ea-php56
ORIG_PATH_INFO /index.php
ORIG_PATH_TRANSLATED /home/youevans/public_html/2017/index.php
ORIG_SCRIPT_NAME /cgi-sys/ea-php56
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1768143805.3499
REQUEST_TIME 1768143805
argv Array ( )
argc 0
empty
0. Concrete\Core\Error\Handler\ErrorHandler
1. Concrete\Core\Error\Handler\JsonErrorHandler