Po nitce do kłębka i własnie to był problem. Ale dziwne jest to, że nie było żadnych modyfikacji w bazie robionych. Tak jakby to zrobiło się samo....
Wielkie dzięki za pomoc.
- Polskie forum Contao
- Ogląda profil: Posty: Cosention
Witamy na polskim forum Contao
Zarejestruj się teraz, aby skorzystać ze wszystkich funkcji forum. Kiedy się zalogujesz, będziesz mógł tworzyć tematy, pisać posty, rozdawać punkty reputacji, korzystać z prywatnych wiadomości i zarządzać swoim profilem. Jeśli posiadasz już konto, zaloguj się - w przeciwnym wypadku zarejestruj się już teraz!
Zarejestruj się teraz, aby skorzystać ze wszystkich funkcji forum. Kiedy się zalogujesz, będziesz mógł tworzyć tematy, pisać posty, rozdawać punkty reputacji, korzystać z prywatnych wiadomości i zarządzać swoim profilem. Jeśli posiadasz już konto, zaloguj się - w przeciwnym wypadku zarejestruj się już teraz!
Cosention
Cosention
Użytkownik od 18 cze 2012Offline Ostatnio aktywny cze 20 2012 16:41
Statystyki społeczności
- Grupa: Zarejestrowani
- Aktywnych postów 5
- Wyświetleń profilu 4 524
- Tytuł użytkownika Nowy na forum
- Wiek Wiek nieznany
- Urodzony Data urodzin nie została podana
-
Płeć
Nie powiem
0
Neutralna
Narzędzia użytkownika
Znajomi
Cosention nie posiada jeszcze znajomych.
Ostatni goście
Nie ma ostatnich gości do pokazania
W temacie:Brak modułów w panelu admina
20 czerwca 2012 - 10:48
W temacie:Brak modułów w panelu admina
19 czerwca 2012 - 23:18
Tak wygląda plik /system/config/dcaconfig.php:
A tak /modules/backend/config/config.php
Porównałem pliki lokalnie i na serwerze i nie ma w nich żadnych różnic...
<?php if (!defined('TL_ROOT')) die('You cannot access this file directly!'); /** * Contao Open Source CMS * Copyright (C) 2005-2011 Leo Feyer * * Formerly known as TYPOlight Open Source CMS. * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program. If not, please visit the Free * Software Foundation website at <http://www.gnu.org/licenses/>. * * PHP version 5 * @copyright Leo Feyer 2005-2011 * @author Leo Feyer <http://www.contao.org> * @package Config * @license LGPL * @filesource */ /** * ------------------------------------------------------------------------- * DATA CONTAINER SETTINGS * ------------------------------------------------------------------------- * * If you want to modify a data container file, you do not have to edit it * directly. You can save your changes in this configuration file instead. * Thus, you can update or replace the original files without having to * worry about your modifications. * * Usage example: * * $GLOBALS['TL_DCA']['tl_article']['config']['doNotCopyRecords'] = true; * * This line would prevent articles from being duplicated when you duplicate * a page in module site structure. */ ?>
A tak /modules/backend/config/config.php
<?php if (!defined('TL_ROOT')) die('You cannot access this file directly!'); /** * Contao Open Source CMS * Copyright (C) 2005-2011 Leo Feyer * * Formerly known as TYPOlight Open Source CMS. * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program. If not, please visit the Free * Software Foundation website at <http://www.gnu.org/licenses/>. * * PHP version 5 * @copyright Leo Feyer 2005-2011 * @author Leo Feyer <http://www.contao.org> * @package Backend * @license LGPL * @filesource */ /** * Back end modules */ $GLOBALS['BE_MOD'] = array ( // Content modules 'content' => array ( 'article' => array ( 'tables' => array('tl_article', 'tl_content'), 'table' => array('TableWizard', 'importTable'), 'list' => array('ListWizard', 'importList') ), 'form' => array ( 'tables' => array('tl_form', 'tl_form_field') ) ), // Design modules 'design' => array ( 'themes' => array ( 'tables' => array('tl_theme', 'tl_module', 'tl_style_sheet', 'tl_style', 'tl_layout'), 'importTheme' => array('Theme', 'importTheme'), 'exportTheme' => array('Theme', 'exportTheme'), 'import' => array('StyleSheets', 'importStyleSheet') ), 'page' => array ( 'tables' => array('tl_page') ) ), // Account modules 'accounts' => array ( 'member' => array ( 'tables' => array('tl_member') ), 'mgroup' => array ( 'tables' => array('tl_member_group') ), 'user' => array ( 'tables' => array('tl_user') ), 'group' => array ( 'tables' => array('tl_user_group') ) ), // System modules 'system' => array ( 'files' => array ( 'tables' => array('tl_files') ), 'log' => array ( 'tables' => array('tl_log') ), 'settings' => array ( 'tables' => array('tl_settings') ), 'maintenance' => array ( 'callback' => 'ModuleMaintenance' ) ), // User modules 'profile' => array ( 'undo' => array ( 'tables' => array('tl_undo') ), 'login' => array ( 'tables' => array('tl_user'), 'callback' => 'ModuleUser' ), 'tasks' => array ( 'callback' => 'ModuleTasks' ) ) ); /** * Form fields */ $GLOBALS['BE_FFL'] = array ( 'text' => 'TextField', 'password' => 'Password', 'textStore' => 'TextStore', 'textarea' => 'TextArea', 'select' => 'SelectMenu', 'checkbox' => 'CheckBox', 'checkboxWizard' => 'CheckBoxWizard', 'radio' => 'RadioButton', 'radioTable' => 'RadioTable', 'inputUnit' => 'InputUnit', 'trbl' => 'TrblField', 'chmod' => 'ChmodTable', 'pageTree' => 'PageTree', 'fileTree' => 'FileTree', 'tableWizard' => 'TableWizard', 'listWizard' => 'ListWizard', 'optionWizard' => 'OptionWizard', 'moduleWizard' => 'ModuleWizard', 'keyValueWizard' => 'KeyValueWizard', 'imageSize' => 'ImageSize', 'timePeriod' => 'TimePeriod' ); /** * Page types */ $GLOBALS['TL_PTY'] = array ( 'regular' => 'PageRegular', 'forward' => 'PageForward', 'redirect' => 'PageRedirect', 'root' => 'PageRoot', 'error_403' => 'PageError403', 'error_404' => 'PageError404' ); /** * Maintenance */ $GLOBALS['TL_MAINTENANCE'] = array ( 'PurgeData', 'LiveUpdate', 'RebuildIndex' ); /** * Cache tables */ $GLOBALS['TL_CACHE'] = array ( 'tl_undo', 'tl_version', 'tl_search', 'tl_search_index' ); /** * Cron jobs */ $GLOBALS['TL_CRON']['daily'][] = array('Automator', 'purgeTempFolder'); $GLOBALS['TL_CRON']['daily'][] = array('Automator', 'checkForUpdates'); $GLOBALS['TL_CRON']['weekly'][] = array('Automator', 'generateSitemap'); $GLOBALS['TL_CRON']['weekly'][] = array('StyleSheets', 'updateStyleSheets'); /** * Hooks */ $GLOBALS['TL_HOOKS'] = array(); /** * Mime types */ $GLOBALS['TL_MIME'] = array(); ?>
Porównałem pliki lokalnie i na serwerze i nie ma w nich żadnych różnic...
W temacie:Brak modułów w panelu admina
19 czerwca 2012 - 20:46
Wszystko sie przekopiowało. Nic nie wskazuje na to aby czegoś brakowało na nowym serwerze.
Czy Contao ma jakieś narzędzia do migracji z serwera na serwer?
Czy Contao ma jakieś narzędzia do migracji z serwera na serwer?
W temacie:Brak modułów w panelu admina
19 czerwca 2012 - 16:12
Tak. Dokładnie te same dane podczas logowania na lokalnym i na nazwa.pl.
- Polskie forum Contao
- → Ogląda profil: Posty: Cosention