I have tried installation for a hundred time.
At the beginning, after I keyed everything like the name of database,password, etc., then I got the password and the login page. On the login page, after I keyed the name "admin" and also the password, intead of the admin page, the login page with the empty name and empty password come again. Then, I reinstalled. Before I clicked to go into the login page, I checked the "wp-config.php" and found this:
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define('VHOST', 'no');
$base = '/';
define('DOMAIN_CURRENT_SITE', 'honhac.com' );
define('PATH_CURRENT_SITE', '' );
define('SITE_ID_CURRENT_SITE', 1);
define('BLOGID_CURRENT_SITE', '1' );
Then I changed to:
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define('VHOST', 'no');
$base = '/';
define('DOMAIN_CURRENT_SITE', 'honhac.com' );
define('PATH_CURRENT_SITE', '/' );
define('SITE_ID_CURRENT_SITE', 1);
define('BLOGID_CURRENT_SITE', '1' );
After this change, I saw the admin page finally.
However, I got another problem. On the front page, I click on "hello word" and also "create a new blog", it only bring me to a error page.
What's up?
Anybody would give me a hand?