Hello,
I’m trying to install clean / new wordpress site, but it doesn’t start installer as in manual, just displays window that wp-config.php is missing, tried changing it manually, but in that case it’s just displaying white window with nothing in it.
Any way to launch it as proper installer ?
or
Any advice what I should changed in wp-config-example.php ?
So far I changed:
define( ‘DB_NAME’, ‘wordpress’ );
/** MySQL database username */
define( ‘DB_USER’, ‘root’ );
/** MySQL database password */
define( ‘DB_PASSWORD’, ‘***********’ );
/** MySQL hostname */
define( ‘DB_HOST’, ‘localhost:3309’ );
/** Database Charset to use in creating database tables. */
define( ‘DB_CHARSET’, ‘utf8’ );
/** The Database Collate type. Don’t change this if in doubt. */
define( ‘DB_COLLATE’, ‘’ );
(I changed my port to 3309 from tutorial, otherwise did everything identical)
Thank you !