I run into a problem I can't seem to fix. I went back and forth and even used $wpdb->prepare()
and $wpdb->query()
functions, nothing helps.
$table_prefix."users"
returns wp_2qttgdv7ac_2_users
(slightly changed in post for security purposes). Yes, I've tried $wpdb->prefix
as well. Same result.
$wpdb->update($table_prefix."users", array('user_email' => $fetch_data['new_email']), array('user_login' => $fetch_data['username']))
This was not working, but on running...
var_dump( $wpdb->last_error)
I get the error:
string(59) "Table 'A41K421094D3615.wp_2qttgdv7ac_2_users' doesn't exist"
Here A41K421094D3615 is the database name. I am running in a multi-site environment. However, accessing custom tables does not add database name in front of the table. How can I get it to stop adding it? Or at least make it honor the table. Usually database_name.table_name should work, right? However, it's returning that it does not exist. Any suggestions?
I run into a problem I can't seem to fix. I went back and forth and even used $wpdb->prepare()
and $wpdb->query()
functions, nothing helps.
$table_prefix."users"
returns wp_2qttgdv7ac_2_users
(slightly changed in post for security purposes). Yes, I've tried $wpdb->prefix
as well. Same result.
$wpdb->update($table_prefix."users", array('user_email' => $fetch_data['new_email']), array('user_login' => $fetch_data['username']))
This was not working, but on running...
var_dump( $wpdb->last_error)
I get the error:
string(59) "Table 'A41K421094D3615.wp_2qttgdv7ac_2_users' doesn't exist"
Here A41K421094D3615 is the database name. I am running in a multi-site environment. However, accessing custom tables does not add database name in front of the table. How can I get it to stop adding it? Or at least make it honor the table. Usually database_name.table_name should work, right? However, it's returning that it does not exist. Any suggestions?
Share Improve this question edited May 18, 2019 at 15:22 fuxia♦ 107k39 gold badges255 silver badges459 bronze badges asked May 16, 2019 at 4:17 Mafuyu-ChamaMafuyu-Chama 12 bronze badges 2 |1 Answer
Reset to default 1Use $wpdb->base_prefix for 'users' table.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745482220a4629609.html
use A41K421094D3615; select * from wp_2qttgdv7ac_2_users;
in MySQL and you'll get the same error even though the database name wasn't in the SELECT. Does that table actually exist? – Rup Commented May 16, 2019 at 16:30