Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Puchar WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Jak zresetować hasło administratora WordPress na Localhost

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.

Resetting the admin password in WordPress on 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:

  1. Zainstaluj WordPress lokalnie w systemie Windows
  2. Zainstaluj WordPress lokalnie na komputerze Mac

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.

Adminer the phyMyAdmin alternative in LocalWP

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.

Open your database in phpMyAdmin

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.

Open users table in WordPress database

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.

Edit user in WordPress database

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”.

Add new user password

Funkcja MD5 szyfruje twoje hasło WordPress za pomocą algorytmu haszującego MD5.

Nie zapomnij kliknąć przycisku „Przejdź” na dole, aby zapisać twoje zmiany.

Save database changes

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.

Locating your theme folder

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:

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.

Ujawnienie: Nasze treści są wspierane przez czytelników. Oznacza to, że jeśli klikniesz na niektóre z naszych linków, możemy otrzymać prowizję. Zobacz jak WPBeginner jest finansowany, dlaczego to ma znaczenie i jak możesz nas wspierać. Oto nasz proces redakcyjny.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

Najlepszy zestaw narzędzi WordPress

Uzyskaj BEZPŁATNY dostęp do naszego zestawu narzędzi - zbiór produktów i zasobów związanych z WordPressem, które każdy profesjonalista powinien mieć!

Reader Interactions

63 komentarzeZostaw odpowiedź

  1. 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

    • WPBeginner Support

      Glad our guide was helpful!

      Administrator

  2. Nidhi Gupta

    it’s really helpful, thankyou so much

    • WPBeginner Support

      Glad our guide was helpful!

      Administrator

  3. Habu

    Omg you save my life !!! THANK YOU VERY MUCHH !!!

  4. 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

  5. Kamondo

    Wonderful! problem solved. Very Simple steps but powerful.

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrator

  6. 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

  7. Gerron

    Solid solid info right here, thanks a lot, really helped, so simple

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrator

  8. 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

  9. naved ahmed

    Thanks a lot. Finally problem solved within a minute.

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrator

  10. Mohsin

    I just love this
    Love the way you write every thing

    • WPBeginner Support

      Thank you, glad you like our content :)

      Administrator

  11. 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

  12. 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

  13. 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

  14. 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

  15. adeel kamran

    You saved me, I had a lot of work there.

    • WPBeginner Support

      Glad our guide could help :)

      Administrator

  16. lokesh n

    thank you it’s really working thank you

    • WPBeginner Support

      You’re welcome glad our article was helpful :)

      Administrator

  17. 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.

  18. 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

  19. 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

  20. Anuj

    It work fine, Thanku so much,

  21. Pádraig

    Really simple and great explanation.

    Many thanks for sharing.

  22. Saranya

    Works Good! Thanks a lot.

  23. 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?

  24. Christian Gochez

    when I click on the Go button this error appears:

    #1881 – Operation not allowed when innodb_forced_recovery > 0

  25. Edward

    Simple and neat! worked thanks

  26. 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!!

  27. 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

  28. 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.

  29. mohamad hossein

    so use full thank you so much

  30. Janet

    I got completely lost on the video so I tried plugging in the URL. Doesn’t work. Still lost.

  31. Ma

    Thanks so much, you saved me from what could have been a very embarrassing situation!

  32. 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???

  33. Jac

    Thanks so much for providing this info – I was really stuck!

  34. Gerhard SCHNEIBEL

    Thanks a lot for your help. I am very happy with „wpbeginners”.

  35. 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

  36. Kakaire Charles

    Extremely wonderful. Thank you for sharing.

  37. Gaurav

    i tried this but not working

  38. shaikh muneer

    super way to reset admin password thank you for share this

Zostaw odpowiedź

Dziękujemy za pozostawienie komentarza. Pamiętaj, że wszystkie komentarze są moderowane zgodnie z naszymi polityka komentarzy, a Twój adres e-mail NIE zostanie opublikowany. NIE używaj słów kluczowych w polu nazwy. Przeprowadźmy osobistą i konstruktywną rozmowę.