cant login into admin in my localhost site
I cant login into admin in my localhost site I did the migration from my online site and after I put all the sql that I use with all my other
wp sites (se bellow), also I change the security options Backend Access to all an in the advanced options let people acces the
wp-login , but when I try getting into the admin trought
wp-admin and or
wp-login , it will go to the xampp dashboard instead . Thanks for your support
Here is the sql I used to change all the url
UPDATE wp_options SET option_value = REPLACE(option_value, 'mysite-com', 'localhost/mysite') WHERE option_value NOT LIKE '%{%';
UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, 'mysite-com', 'localhost/mysite', 'http://localhost/mysite') WHERE meta_value NOT LIKE '%{%';
UPDATE wp_posts SET guid = REPLACE(guid, 'mysite-com', 'localhost/mysite');
UPDATE wp_posts SET post_content=(REPLACE (post_content, 'mysite-com', 'localhost/mysite'));
itook away the url becoauxse I couldnt post this messagge