2

将我的 Wordpress 安装更新到 3.9 后,我不断收到以下错误:

Warning: mysql_query(): Access denied for user 'www-data'@'localhost' (using password: NO) in /home/sites/wordpress/site/wp-content/plugins/crm/main.php on line 20

Warning: mysql_query(): A link to the server could not be established in /home/sites/wordpress/site/wp-content/plugins/crm/main.php on line 20

Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in /home/sites/wordpress/site/wp-content/plugins/crm/main.php on line 21

我无法完全弄清楚出了什么问题。这是 3.9 之前的代码:

<?php 
session_start();
/**
 * Plugin Name: CRM
 * Description:  
 * Version:
 * Author: 
 *
 */

add_action( 'admin_menu', 'menu' );

function menu() {
    add_menu_page( 'CRM', 'CRM', 3,'form', 'form' );
}

function form() {
    global $wpdb,$current_user,$user_ID;
    echo "<h3>CRM</h3>";
    $count = mysql_query("SELECT COUNT(id) FROM user_form_data");
    $nume2 = mysql_fetch_row($count);
    $nume = $nume2[0];

我已经剪掉了其余部分,因为它似乎与错误无关:)

解决方案:

找到了。

错误出现在 3.9 升级中。

http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/

“在 WordPress 3.9 中,我们为 WPDB 添加了一个额外的层,使其在使用 PHP 5.5 或更高版本时切换到使用 mysqli PHP 库。

对于插件开发者来说,这意味着你绝对不应该再使用 PHP 的 mysql_*() 函数——你可以使用等效的 WPDB 函数。”

4

4 回答 4

3

你应该阅读这篇文章http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/

在 WordPress 3.9 中,我们向 WPDB 添加了一个额外的层,使其在使用 PHP 5.5 或更高版本时切换到使用 mysqli PHP 库。

对于插件开发人员,这意味着您绝对不应该再使用 PHP 的 mysql_*() 函数——您可以使用等效的 WPDB 函数。

于 2014-04-17T14:47:12.543 回答
2

将此更改为 wp_results

$count = mysql_query("SELECT COUNT(id) FROM user_form_data");
$nume2 = mysql_fetch_row($count);

$count =  $wpdb->get_results("SELECT COUNT(id) FROM user_form_data",ARRAY_A);
$nume2 = $wpdb->num_rows; ====== it will return same as mysql_fetch_row
于 2014-05-28T15:56:03.863 回答
0
Try this hope this help



    <?php 
        /**
         * Plugin Name: CRM
         * Description:  any desc
         * Author: ABS
         *
         */

        add_action( 'admin_menu', 'user_data_menu' );

        function user_data_menu() {
                add_menu_page( 'CRM', 'CRM', 3,'user_data_form', 'user_data_form' );
        }

        function user_data_form() {
                @session_start();
                global $wpdb,$current_user,$user_ID;
                echo "<h3>CRM</h3>";
                $count = mysql_query("SELECT COUNT(id) FROM user_form_data");
                $nume2 = mysql_fetch_row($count);
                $nume = $nume2[0];
                if ( $limit < $nume && empty($_POST['searching']) && empty($_POST['filter_flag']) && empty($_POST['rowsselect']) ) {
                        $start = $_GET['start'];
                        $eu = ($start - 0);
                        $limit = 20;
                        $this4 = $eu + $limit;
                        $back = $eu - $limit;
                        $next = $eu + $limit;   
                }
} ?>
于 2014-04-17T11:18:56.310 回答
-1

看起来更新更改了mysql用户名和密码。所以问题不在于代码。

如果这些设置已更改且不正确,请检查 wp-config.php 文件

于 2014-04-17T11:19:30.093 回答