Zapomnienie twojego hasła administratora WordPress na localhost może być frustrujące. Ponieważ odzyskiwanie e-maila może nie działać w tym środowisku, będziesz potrzebować innych sposobów na odzyskanie dostępu.
Zalecamy zainstalowanie WordPressa lokalnie na twoim komputerze w celu nauki rozwoju WordPressa lub testowania nowych wtyczek i motywów.
Jednak kilka rzeczy nie działa na localhost tak, jak na witrynie na żywo. Obejmuje to funkcję e-mail, która będzie potrzebna do zresetowania twojego hasła.
W tym przewodniku pokażemy kilka prostych metod resetowania twojego hasła administratora WordPress na localhost.
Dlaczego resetowanie hasła nie działa na hoście lokalnym?
Taksonomia oznacza serwer lokalny, który jest niedostępny dla ogółu społeczeństwa, taki jak twój komputer osobisty.
Wielu użytkowników WordPressa instaluje go na localhost (na swoim komputerze), aby testować zmiany, projektować witryny internetowe, wypróbowywać nowe wtyczki, a nawet uczyć się WordPressa.
Jeśli jeszcze tego nie próbowałeś, poniższe poradniki pomogą ci zainstalować WordPressa na twoim komputerze:
Tutaj pojawia się problem, na który mogą natknąć się początkujący gracze.
Jeśli zapomnisz swojego hasła administratora WordPress podczas pracy na hostingu lokalnym, nie możesz go zresetować za pomocą zwykłej opcji resetowania hasła w WordPress.
Opcja resetowania hasła wysyła e-mail z odnośnikiem do zresetowania twojego hasła WordPress. Twój serwer musi włączać funkcję poczty, aby wysyłać e-maile.
Funkcja ta jest jednak domyślnie wyłączona na serwerach regionalnych, co oznacza, że WordPress nie może wysłać e-maila z resetem hasła.
Nie martw się. Istnieją proste sposoby na zresetowanie twojego hasła WordPress na localhost. Oto metody, które omówimy w tym poradniku:
Metoda 1. Resetowanie hasła administratora WordPress na hoście lokalnym za pomocą phpMyAdmin
Pokażemy, jak ustawić hasło administratora WordPress na localhost przy użyciu phpMyAdmin dla tej metody. phpMyAdmin to aplikacja internetowa, która zapewnia graficzny interfejs użytkownika do zarządzania bazami danych MySQL.
Uwaga: phpMyAdmin jest preinstalowany na pakietach serwerów lokalnych dostarczanych przez Wampserver, XAMPP i MAMP. Jeśli jednak korzystasz z„Lokalnego„, to w karcie Baza danych znajdziesz inne narzędzie o nazwie Adminer. Jest ono podobne do phpMyAdmin i możesz łatwo postępować zgodnie z poradnikiem.
Wystarczy przejść na panel sterowania phpMyAdmin, wpisując ten adres URL w pasku adresu twojej przeglądarki:
http://localhost/phpmyadmin/
Uwaga: Aby logować się do phpMyAdmin, możesz zostać poproszony o wpisz swojej nazwy użytkownika root i hasła. Zazwyczaj nazwa użytkownika to root bez hasła.
Po zalogowaniu się, kliknij na twoją bazę danych WordPress w lewej kolumnie.
Po wybraniu twojej bazy danych zobaczysz listę tabel, które się w niej znajdują.
Kliknij odnośnik „przeglądaj” obok tabeli „użytkownicy”. Domyślnie WordPress używa wp_ jako prefiksu tabeli, ale jeśli zmieniłeś go podczas instalacji, twoja baza danych będzie miała inny prefiks tabeli.
Zobaczysz teraz listę wpisów w tabeli „users”. Liczba wierszy zależy od tego, ilu użytkowników jest zarejestrowanych na twojej witrynie WordPress.
Następnie należy kliknąć odnośnik „Edytuj” obok nazwy użytkownika administratora.
Spowoduje to otwarcie formularza wyświetlającego informacje przechowywane w bazie danych WordPress dla twojego konta użytkownika.
Przewiń w dół do pola „user_pass” i wpisz nowe hasło w kolumnie „Value”. Następnie wybierz MD5 w kolumnie „Funkcja”.
Funkcja MD5 szyfruje twoje hasło WordPress za pomocą algorytmu haszującego MD5.
Nie zapomnij kliknąć przycisku „Przejdź” na dole, aby zapisać twoje zmiany.
To wszystko. Używając nowego hasła, możesz teraz logować się do twojej witryny WordPress na localhost.
Metoda 2: Resetowanie hasła za pomocą pliku Functions.php
Jeśli nie masz dostępu do phpMyAdmin lub wolisz inne podejście, możesz zresetować hasło administratora WordPress, edytując plik functions.php
twojego motywu. Ta metoda jest prosta i można ją wykonać szybko.
Krok 1: Uzyskaj dostęp do pliku Functions.php twojego motywu
Najpierw musisz zlokalizować plik functions.php dla twojego włączonego motywu. Aby to zrobić, przejdź do katalogu głównego twojej instalacji WordPress na twoim hostingu lokalnym.
W zależności od używanego oprogramowania lokalizacja katalogu głównego może się różnić. Na przykład, jeśli używasz Local, twoja witryna będzie znajdować się pod adresem:
C:\Users\yourusername\Local Sites\yoursitename\app\public\
Następnie przejdź do katalogu /wp-content/themes/
. Wewnątrz znajdziesz katalog o nazwie twojego włączanego motywu.
W katalogu twojego włączonego motywu poszukaj pliku o nazwie functions.php
i otwórz go w edytorze tekstu, takim jak Notatnik lub TextEdit.
Krok 2: Dodaj kod, aby zresetować hasło
W dolnej części pliku functions.
php należy wkleić następujący kod:
function reset_admin_password() {
$user_id = 1; // ID of the admin user
$new_password = 'newpassword123'; // Your new password
wp_set_password($new_password, $user_id);
}
add_action('init', 'reset_admin_password');
Nie zapomnij zastąpić „newpassword123” silniejszym hasłem, którego chcesz używać.
Ten kod ustawia nowe hasło dla użytkownika admin o identyfikatorze 1. Jeśli jednak nie znasz identyfikatora użytkownika, ale znasz adres e-mail administratora, możesz zamiast tego użyć tego fragmentu kodu:
function reset_admin_password_by_email() {
$user_email = 'admin@example.com'; // Admin user's email address
$user = get_user_by('email', $user_email);
if ($user) {
$new_password = 'newpassword123'; // Your new password
wp_set_password($new_password, $user->ID);
}
}
add_action('init', 'reset_admin_password_by_email');
Ten kod ustawia nowe hasło(newpassword123
) dla użytkownika admin powiązanego z podanym adresem e-mail.
Po dodaniu kodu zapisz plik functions.php
i odśwież swoją witrynę WordPress na hostingu lokalnym w przeglądarce. Teraz powinieneś być w stanie logować się przy użyciu nowego hasła.
Krok 4: Usuwanie kodu
Po pomyślnym zalogowaniu się, ważne jest, aby usuwać fragment kodu z pliku functions.
php, aby uniknąć potencjalnych zagrożeń bezpieczeństwa.
Wystarczy otworzyć plik functions.
php i usunąć dodany wcześniej kod. Nie zapomnij zapisać twoich zmian.
Zasoby bonusowe:
Poniżej znajdują się dodatkowe wskazówki i poradniki dotyczące zarządzania hasłami i kontami administratorów w WordPress:
- Jak dodać użytkownika administratora do bazy danych WordPress za pomocą MySQL
- Jak dodać użytkownika administratora w WordPressie za pomocą FTP (prosty poradnik)
- Jak łatwo i bezpiecznie zarządzać hasłami (przewodnik dla początkujących)
- Jak zabezpieczyć hasłem twój katalog administratora WordPress (wp-admin)?
Mamy nadzieję, że ten artykuł pomógł ci zresetować hasło administratora WordPress na serwerze lokalnym. Możesz również zapoznać się z naszym poradnikiem na temat włączania e-maili WordPress z hosta lokalnego za pomocą SMTP lub przyjrzeć się tworzeniu witryny przejściowej dla WordPress.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Hafiz Muhammad Ansar
Very nice blog for WordPress help. I recommend for beginners to use this platform. Thankful!
WPBeginner Support
Glad you found our article helpful!
Administrator
Abdullah
Amazing, it worked
WPBeginner Support
Glad our guide was helpful!
Administrator
Nidhi Gupta
it’s really helpful, thankyou so much
WPBeginner Support
Glad our guide was helpful!
Administrator
Habu
Omg you save my life !!! THANK YOU VERY MUCHH !!!
Jahir
I can not log in now same process…any updates?
WPBeginner Support
The most common issue would be if you did not set the function to MD5 or click go to apply the changes, you would want to ensure you have done that correctly.
Administrator
Kamondo
Wonderful! problem solved. Very Simple steps but powerful.
WPBeginner Support
Glad our guide was helpful
Administrator
Joe
I’m encoutering this problem now after installing the 2nd WordPress on MAMP. This article is very to the point and I’ll try it tomorrow!
WPBeginner Support
We hope the guide helps
Administrator
Gerron
Solid solid info right here, thanks a lot, really helped, so simple
WPBeginner Support
Glad our guide was helpful
Administrator
Odineks
Thank you so much. I always find solutions to every of my WP problems here.
I kept having problems with the login page on the frontend not recognizing my new password, I didn’t realize there is a function to pass that message to myPHPadmin.
WPBeginner Support
Glad our guide was helpful
Administrator
naved ahmed
Thanks a lot. Finally problem solved within a minute.
WPBeginner Support
Glad our guide was helpful
Administrator
Mohsin
I just love this
Love the way you write every thing
WPBeginner Support
Thank you, glad you like our content
Administrator
Jen
I tried this and while I was in there also attempted to change my username, which I realize was probably my mistake… but now I can’t log in at all. Is there a way to undo what I’ve done?
WPBeginner Support
You would need to follow the steps in the article and that would bring you back to where you could edit, you should also be able to use your email as an alternative
Administrator
Justina
Your Blog is always so full of rich articles. Thanks so much. was stuck for a while because I skip the MD5 option. You are a lifesaver.
WPBeginner Support
Glad our guide could be helpful
Administrator
Sarah
Thank you SO MUCH for this! You saved me so many more hours of tinkering with trying to figure out how to log in!!
WPBeginner Support
Glad we were able to help
Administrator
David
Thank you ever so much! Normally, I keep this stuff handy; but in this case, I did could not find where I wrote the information down.
You saved a total re-work of a site I was planning.
WPBeginner Support
Glad our guide could be helpful
Administrator
adeel kamran
You saved me, I had a lot of work there.
WPBeginner Support
Glad our guide could help
Administrator
lokesh n
thank you it’s really working thank you
WPBeginner Support
You’re welcome glad our article was helpful
Administrator
Vivek
Hi,
When I reset My password through link then what fileds affected in Database and in which table.
Kindly share this information i am waiting for your response.
WPBeginner Support
For understanding the database you would want to take a look at our article here: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-wordpress-database-management-with-phpmyadmin/
Administrator
Adnan Khan
After half an hour of search i just found my help from this site, which solves my problem in no time,
thanks a lot
keep it up guys
WPBeginner Support
You’re welcome, glad our guides can be helpful
Administrator
Tenasu Mensah
thanks a lot, kudos to you guys keep the good work doing,you guys are doing great job
WPBeginner Support
Glad our guide could help
Administrator
Anuj
It work fine, Thanku so much,
Pádraig
Really simple and great explanation.
Many thanks for sharing.
Saranya
Works Good! Thanks a lot.
Patr
Hello,
I type a new password , click continue and it does not keep the password, it shows a long string of numbers and letters. If I use this , still cannot log in. It looks simple on the video but does not work for me. Thank you.
I looked everywhere on the internet, no solution worling.
Jason
Same problem here. Did you find a solution? Is there any chance of being hacked?
Christian Gochez
when I click on the Go button this error appears:
#1881 – Operation not allowed when innodb_forced_recovery > 0
Edward
Simple and neat! worked thanks
Handel
I started to just reinstall wordpress, but then decided to do a google search, and there was GOOD OLD RELIABLE WpBeginner.com
Thanks a million!!
Sheriff
very effective… kudos
Icholia
Hello
THANKS, Wow there is no other place that you can get well explained information like this , i have been suffering but now i just followed your tutorial and it is a game changer i love you guys and i will always learn from you guys once again thanks
CJ
Thank you! For those who can’t make it work, remember to use the „MD5” function when changing the password. I almost skipped that part and was stuck for a few minutes.
mohamad hossein
so use full thank you so much
Janet
I got completely lost on the video so I tried plugging in the URL. Doesn’t work. Still lost.
Ma
Thanks so much, you saved me from what could have been a very embarrassing situation!
James
I change the password, username, userlogin and nickname not I cant login. Any advice?
suganya
i can’t able to login .because it’s shows me like email is not registered .so what can i do???
Jac
Thanks so much for providing this info – I was really stuck!
Gerhard SCHNEIBEL
Thanks a lot for your help. I am very happy with „wpbeginners”.
Renu
it worked.. thanks a ton..
Anthony
Hi…
I am so thankful for such great information you provide. I have bookmarked your site a while back.
I have been working on a site in wordpress using xampp on the Apache local server. Just recently, I am not able to login on the admin page. I have managed to create a user name and password that works on about 95% of all sites requiring me to register. I also created a file that lists all my login info for everywhere I need to login, including the WP admin login page, IF I ever forget that info.
I have read this page (https://www.wpbeginner.com/wp-tutorials/how-to-reset-wordpress-admin-password-on-localhost/) and watched the video, also. The only problem is that when I click on the wp_users in phpMyadmin, I get this error- '#1932 – Table 'bitnami_wordpress.wp_users’ doesn’t exist in engine.’
Am I reduced to re-installing WordPress, or is there another way around it?
I have tried restoring my computer (using system restore) to various past restore points, but with no luck. Can you help me with this?
I would be so thankful!!! I have put months of work into designing a site to launch, and I HAVE exported everything to a file quite a few times using WordPress import plugin (something like that).
Could you provide a solution?
Thank you so much…
Anthony
WPBeginner Support
Hi Anthony,
you can also add an admin user by adding code to your current WordPress theme’s admin file.
Administrator
Kakaire Charles
Extremely wonderful. Thank you for sharing.
Gaurav
i tried this but not working
shaikh muneer
super way to reset admin password thank you for share this