在我将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];
我已经剪断了其余部分,因为它似乎与错误无关:)
SOLUTION:
找到它。
错误发生在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函数。“
答案 0 :(得分: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函数。
答案 1 :(得分: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
答案 2 :(得分: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;
}
} ?>
答案 3 :(得分:-1)
看起来更新改变了mysql用户名和密码。所以问题不在于代码。
如果这些设置被更改且不正确,请检查wp-config.php文件