![]() |
Форум больше не используется. Присоединяйтесь к каналу #community-ru в Slack for TYPO3 community |
|
|
#2 |
|
Senior Member
Регистрация: 17.09.2012
Сообщений: 675
|
В версии 9.1 index.php
======= <?php /* * This file is part of the TYPO3 CMS project. * * It is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License, either version 2 * of the License, or any later version. * * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * * The TYPO3 project - inspiring people to share! */ // Exit early if php requirement is not satisfied. if (version_compare(PHP_VERSION, '7.2.0', '<')) { die('This version of TYPO3 CMS requires PHP 7.2 or above'); } // Set up the application for the Frontend call_user_func(function () { $classLoader = require __DIR__.'/vendor/autoload.php'; (new \TYPO3\CMS\Frontend\Http\Application($classLoader) )->run(); }); ======= А в версии 8.7.11 index.php ======= <?php require __DIR__ . '/typo3/sysext/frontend/Resources/Private/Php/frontend.php'; ======= Сам же файл frotend.php ======= <?php /* * This file is part of the TYPO3 CMS project. * * It is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License, either version 2 * of the License, or any later version. * * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * * The TYPO3 project - inspiring people to share! */ // Exit early if php requirement is not satisfied. if (version_compare(PHP_VERSION, '7.0.0', '<')) { die('This version of TYPO3 CMS requires PHP 7.0 or above'); } // Set up the application for the Frontend call_user_func(function () { $classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php'; (new \TYPO3\CMS\Frontend\Http\Application($classLoader) )->run(); }); ======= Но почему версия 8.7.11 перестала пускать в админку? Последний раз редактировалось Николай Сипко; 19.03.2018 в 14:24 |
|
|
|
| Опции темы | |
| Опции просмотра | |
|
|
Похожие темы
|
||||
| Тема | Автор | Раздел | Ответов | Последнее сообщение |
| Вход а админку. | alexk | Общие вопросы | 6 | 10.04.2008 14:28 |
| Warning и вход в админку | dmMrak | Установка | 5 | 30.01.2008 13:59 |
| Вход в админку | ronin_en | Общие вопросы | 12 | 21.11.2007 18:54 |
| вход в админку - пустой экран | studiosss | Установка | 3 | 12.11.2007 12:05 |