• I have the same problem as many people have but I can’t login. I change my website url from tomfowlerphotography.com/blog/ to tomfowlerphotography.com and now I can’t login. I have looked through the site and I can’t figure it out. If someone could maybe do it for me? I’ll give you all my info because i have no idea what I am doing or how to get my blog back.

Viewing 16 replies (of 16 total)
  • If you look through your wp-config.php, you’ll find a list of defines that are already set:

    define('AUTH_KEY',         'put your unique phrase here');
    define('SECURE_AUTH_KEY',  'put your unique phrase here');

    Add your defines underneath here without any <?php or what not.

    so basically it’ll look like this:

    define('AUTH_KEY',         'put your unique phrase here');
    define('SECURE_AUTH_KEY',  'put your unique phrase here');
    define('LOGGED_IN_KEY',    'put your unique phrase here');
    define('NONCE_KEY',        'put your unique phrase here');
    define('AUTH_SALT',        'put your unique phrase here');
    define('SECURE_AUTH_SALT', 'put your unique phrase here');
    define('LOGGED_IN_SALT',   'put your unique phrase here');
    define('NONCE_SALT',       'put your unique phrase here');
    define('WP_HOME','https://tomfowlerphotography.com/blog/');
    define('WP_SITEURL','https://tomfowlerphotography.com/blog/');
Viewing 16 replies (of 16 total)
  • The topic ‘Can't login’ is closed to new replies.