While setting up WordPress, I encountered an issue during the database details input in the first step of the installation process. I am using XAMPP and have tables in my database named wordpress_tbl_table1
and wordpress_tbl_table2
. I entered "wordpress_tbl_" in the table prefix field but it returned an error.
ERROR: "Table Prefix" must not be empty.
In the wp-config-sample file, the table prefix is set as
$table_prefix = 'wordpress_tbl_';
. After doing some research online, I found a solution that involves copying the wp-config file. However, when I try to copy or rename the 'wp-config-sample' file, it prompts me with an error stating that it needs the 'wp-config-sample' file. Am I making a mistake in the table-prefix field?
Any assistance would be greatly appreciated.