2015-06-11 42 views
1

我设立使用TYPO3 7.2版门户网站。我在红帽4.8.2-16机器上成功安装了this article之后的TYPO3。一切正常,我创建了一些页面,直到出于某种原因,页面树不再显示任何内容。所以,现在的后端看起来像这样http://goo.gl/3p0uQn空pagetree在TYPO3 7.2后端

我的浏览器的调试控制台只能返回此错误:

TypeError: TYPO3ViewportInstance.DebugConsole is null backend.php:79:5 

,但我不知道如果这是关系到空pagetree。 这发生在Firefox,Chrome和IE上,所以我想它与浏览器无关。 另外,我以管理员身份登录,因此它不应该是由于访问权限错误造成的。

有谁知道这是怎么回事呢?

UPDATE: 的TYPO3日志给我一些PHP警告

Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Http/AjaxRequestHandler.php line 255 
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Http/AjaxRequestHandler.php line 250 
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Core/Bootstrap.php line 1193 
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 439  
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 438  
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 425  
Core: Error handler (BE): PHP Warning: Cannot modify header information - headers already sent in /var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php line 424 

同时,我安装了7.2完全新鲜的(即使有一个新的数据库)更新,我仍然得到一个空pagetree。我也试过6.2 LTS,但也在这里,没有pagetree。我开始认为我的PHP设置存在问题。我使用PHP 5.6.9和MariaDB 10.0.19。

回答

1

尝试TU把那你的php.ini:

always_populate_raw_post_data = -1

它为我工作。 祝您有愉快的一天。

拉夫

+0

修复它,我不能够感谢你! – tmistelb

0

你在某处有一个PHP错误。请检查您的网络服务器日志或php日志中是否有错误消息。您还可以通过在安装工具中选择开发预设或通过将上下文环境变量设置为Development来显示错误消息。

确保清除缓存通过至少一次(重要行动)安装工具。

+0

日志给了我很多PHP警告像这样...的 'PHP的警告:不能更改头信息 - 头已经在/var/www/typo3_src-7.2.0/typo3/sysext发送/core/Classes/Http/AjaxRequestHandler.php线255 PHP的警告:不能更改头信息 - 在/var/www/typo3_src-7.2.0/typo3/sysext/core/Classes/Http/AjaxRequestHandler.php线已经发送了头250' – tmistelb

+0

然后,您在开启'<?php'标记之前有一个PHP错误,或者其中一个PHP文件包含空格。这些消息意味着,你的输出已经开始,这在TYPO3中不应该发生。 – pgampe

+0

感谢提示,但同时我重新安装了7.2,即使没有更改任何设置或创建任何内容,我也会得到相同的错误。然后,我安装了6.2 LTS,并得到了相同的结果 - 无页树。难道我的PHP设置有问题吗? – tmistelb