Installing WordPress on Windows 10 with manual MySQL install
-
Ok. I have Windows 10 Pro with IIS and PHP (latest versions) installed. I have the latest MySQL and MySQLWorkbench. When I start the WordPress 5.1.1 install it displays this long error:
WordPress database error Table ‘wordpress.wp_options’ doesn’t exist for query INSERT INTO
wp_options
(option_name
,option_value
,autoload
) VALUES (‘nonce_key’, blah blah blah – it goes on forever)So I have verified my PHP is correct because I can create a table in the WordPress database by running this in a test.php file:
$sql = “CREATE TABLE MyGuests (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
firstname VARCHAR(30) NOT NULL,
lastname VARCHAR(30) NOT NULL,
email VARCHAR(50),
reg_date TIMESTAMP
)”;I installed MariaDB just to rule out this new MySQL and I GET the EXACT same error. Any ideas?
- The topic ‘Installing WordPress on Windows 10 with manual MySQL install’ is closed to new replies.