我为我堂兄的面包店建了一个非常基本的小网站。我制作了一个Divi Child主题,只添加了三个非常基本的插件 - Yoast,照片库和密码保护。
从localhost迁移后,我注意到内容编辑器无法正常工作 - 既不是可视也不是文本,既不是常规也不是Divi-builder。附加的图像是显示TinyMCE问题的控制台。
我曾尝试停用所有插件,更改主题,重新上传Divi,重新上传TinyMCE,而且我不知道还能做什么。它在localhost上完全正常。
如果你们中的一个人愿意仔细看看,我会提供访问权限,因为我不知道还能做什么。
Here's the image of the console with the wp-tinemce issues
编辑:我的wp-tinemce.php文件的内容 - 自安装以来未经编辑的基本内容:
WP-tinymce.php :
<?php
/**
* Disable error reporting
*
* Set this to error_reporting( -1 ) for debugging.
*/
error_reporting(0);
$basepath = dirname(__FILE__);
function get_file($path) {
if ( function_exists('realpath') )
$path = realpath($path);
if ( ! $path || ! @is_file($path) )
return false;
return @file_get_contents($path);
}
$expires_offset = 31536000; // 1 year
header('Content-Type: application/javascript; charset=UTF-8');
header('Vary: Accept-Encoding'); // Handle proxies
header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
header("Cache-Control: public, max-age=$expires_offset");
if ( isset($_GET['c']) && 1 == $_GET['c'] && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
&& false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) {
header('Content-Encoding: gzip');
echo $file;
} else {
// Back compat. This file shouldn't be used if this condition can occur (as in, if gzip isn't accepted).
echo get_file( $basepath . '/tinymce.min.js' );
echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' );
}
exit;