0

我很清楚这个问题之前已经被问过多次,但我不知道如何在我的具体情况下处理这个问题。我所做的只是修改 default/settings.php 文件,以便 drupal 中的工具栏抽屉支持更多快捷方式。

我在文档底部插入了以下代码:

 /**
 * Changing Max Shortcut Slots
 *
 * The shortcut module supports a total of seven shortcuts slots. To change 
 * the quantity of supported enabled shortcuts the 'shortcut_max_slots' must be
 * modified accordingly.
 *
 * @see https://www.drupal.org/documentation/modules/shortcut
 */
$conf['shortcut_max_slots'] = 11;

好吧,我让它工作了,这很好,但是我被一连串的警告袭击了,每个警告都说明了以下内容:

警告:无法修改标头信息 - 标头已由 drupal_send_headers() 中的(输出开始于 /home/adamdcco/public_html/hadarc.com/cms/sites/default/settings.php:1)(/home/adamdcco 的第 1221 行)发送/public_html/hadarc.com/cms/includes/bootstrap.inc)。

我迷路了,我查看了引导文件并导航到指定的行,不幸的是没有灯泡。抱歉,我是新人:),但我确实四处搜索,然后完全不知所措,感谢所有帮助:P

4

1 回答 1

1

好吧,看起来我们很好:)

我又搜索了一些,发现了这个问题/答案 How to fix "Headers already sent" error in PHP,简而言之,这是同一个问题,惊人的答案,所以是的,以防万一有人关心我输入的代码:

$conf['shortcut_max_slots'] = 11;

应该在十一个左右加上引号,并且必须删除文件开头和结尾的任何多余空格。活到老,学到老 :)

于 2014-07-02T01:53:14.477 回答