我的服务器在类编辑器上有问题。Php/$Button

时间:2013-12-11 作者:mashup

我的服务器在显示视觉和文本按钮时出现问题,按钮的代码根本就不存在,任何明显的解决方案都不起作用。

//空白默认安装,无插件,默认主题//整个服务器上出现问题//不是wp配置。php问题/相关脚本等

出于某种奇怪的原因,我的服务器无法处理$buttons 因此按钮不可见。有什么想法吗?可能是什么问题?

这是PHP配置问题吗?

我根本没有得到任何JS错误,所以几乎不知道如何修复它,因为源代码中只缺少代码。

if ( self::$this_quicktags && self::$this_tinymce ) {
    $switch_class = \'html-active\';

    // \'html\' and \'switch-html\' are used for the "Text" editor tab.
    if ( \'html\' == wp_default_editor() ) {
        add_filter(\'the_editor_content\', \'wp_htmledit_pre\');
    } else {
        add_filter(\'the_editor_content\', \'wp_richedit_pre\');
        $switch_class = \'tmce-active\';
    }

    $buttons .= \'<a id="\' . $editor_id . \'-html" class="wp-switch-editor switch-html" onclick="switchEditors.switchto(this);">\' . _x( \'Text\', \'Name for the Text editor tab (formerly HTML)\' ) . "</a>\\n";
    $buttons .= \'<a id="\' . $editor_id . \'-tmce" class="wp-switch-editor switch-tmce" onclick="switchEditors.switchto(this);">\' . __(\'Visual\') . "</a>\\n";
}

1 个回复
SO网友:mashup

最终的问题是APC

我的php。ini文件丢弃了apc配置,这会破坏JS,其他一切都正常

结束

相关推荐