简体   繁体   中英

Drupal - Why do I keep getting error message "Table variable already exists." when trying to setup drupal on my XAMPP localhost

I am using PHPMyAdmin 4.2.11 and Drupal 7.37

I created a database in PHPMyAdmin called drupaldatabase and now I'm trying to add it on Drupal using database name: drupaldatabase and username root with no password.

If you need any more info let me know.

You should make sure your database is empty by killing it

mysql> DROP DATABASE drupaldatabase;

And create database again:

mysql> CREATE DATABASE drupaldatabase;

MySQL配置:

autocommit = on

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM