QQ internet login (1054) Unknown column "conuintoken" in "field list"

Source: Internet
Author: User
Tags php file phpmyadmin

Error message


Problem analysis

"Conuintoken" in "field list". The mysql master knows that this column does not exist. To solve this problem, you only need to add a column.

Solution

1. Modify the config/config_global.php file to find the following code and change 0 to 1. Enable the background to directly run SQL

$ _ Config ['admincp'] ['runquery'] = '0 ';

2. In the background-Webmaster-database-upgrade, paste the following code for submission:

Alter table pre_common_member_connect add conuintoken char (32) not null;
Alter table pre_common_connect_guest add conuintoken char (32) not null;

Or directly upgrade the database using phpmyadmin.
 
Open phpmyadmin, select the database of the forum, and click SQL,

Run the following sentence: (the pre _ prefix is the table prefix of your forum database. If it is not the default one, modify it)

Alter table 'pre _ common_member_connect 'add column conuintoken char (32) not null default '';
Alter table 'pre _ common_connect_guest 'add column conuintoken char (32) not null default '';

You can solve your problem. Here, the Unknown column "conuintoken" in "field list" is solved.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.