0

我在 wordpress 仪表板中的某些页面上收到此错误消息。

谷歌分析统计

警告:array_merge():参数 #1 不是第 40 行 /home/c5280den/public_html/wp-content/plugins/google-analyticator/google-api-php-client/src/Google_Client.php 中的数组

致命错误:类名必须是第 104 行 /home/c5280den/public_html/wp-content/plugins/google-analyticator/google-api-php-client/src/Google_Client.php 中的有效对象或字符串

任何帮助都非常感谢!

4

1 回答 1

1

更新你的插件兄弟..如果已经更新,试试这个。

文件 - google-analyticator > google-api-php-client > src > Google_Client.php

旧代码(从第 35 行开始)

require_once "config.php";
// If a local configuration file is found, merge it's values with the default configuration
if (file_exists(dirname(__FILE__)  . '/local_config.php')) {
$defaultConfig = $apiConfig;
require_once (dirname(__FILE__)  . '/local_config.php');
$apiConfig = array_merge($defaultConfig, $apiConfig);

新代码(从第 35 行开始)

require_once (dirname(__FILE__) . "/config.php");
// If a local configuration file is found, merge it's values with the default configuration
if (file_exists(dirname(__FILE__)  . '/local_config.php')) {
$defaultConfig = $apiConfig;
require_once (dirname(__FILE__)  . '/local_config.php');
$apiConfig = array_merge($defaultConfig, $apiConfig);

添加到第 35 行...

require_once (dirname(__FILE__) . "/config.php");

代替...

require_once "config.php";

似乎已经解决了这个问题。

从这里获取它https://wordpress.org/support/topic/recent-update-throws-error-in-settings-page

于 2015-02-18T14:34:06.083 回答