Wordpress keeps redirecting to install-php after migration
I had a similar problem. I got the install.php after moving files and creating a new database. It seems the install screen shows up it there is a problem finding the correct database tables.
I fixed the problem by changing the following settings to be correct:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'HikeforLife_dev11');
/** MySQL database username */
define('DB_USER', 'HikeforLife_dev11');
$table_prefix = 'wphk_';
search table prefix it is fiffrent from wp_collate
Comments
Post a Comment