Fatal Error After Install

sdjustinj wrote on Sunday, October 30, 2016:

I just installed and everything works ok but when I click on Modules I get the following error:

** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU Affero General Public License as* published by the Free Software Foundation, either version 3 of the* License, or (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU Affero General Public License for more details.** You should have received a copy of the GNU Affero General Public License* along with this program. If not, see .* @author Jacob T.Paul * @author Shalini Balakrishnan ** ±-----------------------------------------------------------------------------+/return array( ‘controllers’ => array( ‘invokables’ => array( ‘Installer\Controller\Installer’ => ‘Installer\Controller\InstallerController’, ), ), ‘router’ => array( ‘routes’ => array( ‘Installer’ => array( ‘type’ => ‘segment’, ‘options’ => array( ‘route’ => ‘/Installer[/:action][/:id]’, ‘constraints’ => array( ‘action’ => '[a-zA-Z][a-zA-Z0-9_-]’, ‘id’ => ‘[0-9]+’, ), ‘defaults’ => array( ‘controller’ => ‘Installer\Controller\Installer’, ‘action’ => ‘index’, ), ), ), ), ), ‘view_manager’ => array( ‘template_map’ => array( ‘site/layout’ => DIR . ‘/…/view/layout/layout.phtml’, ), ‘template_path_stack’ => array( ‘installer’ => DIR . ‘/…/view’, ), ‘layout’ => ‘site/layout’, ), ‘session’ => array( ‘remember_me_seconds’ => 2419200, ‘use_cookies’ => true, ‘cookie_httponly’ => true, ), ‘moduleconfig’ => array( ),);

Anybody have any ideas??

Thanks!