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

Localhost’ta WordPress Yönetici Parolası Nasıl Sıfırlanır

Localhost’ta WordPress yönetici şifrenizi unutmak sinir bozucu olabilir. E-posta kurtarma bu ortamda işe yaramayabileceğinden, erişimi yeniden kazanmak için başka yollara ihtiyacınız olacaktır.

WordPress geliştirmeyi öğrenmek veya yeni eklentileri ve temaları test etmek için WordPress’i bilgisayarınıza yerel olarak yüklemenizi öneririz.

Ancak, bazı şeyler localhost’ta canlı bir sitede olduğu gibi çalışmaz. Buna, şifrenizi sıfırlamak için ihtiyaç duyacağınız e-posta işlevi de dahildir.

Bu kılavuzda, localhost’ta WordPress yönetici şifrenizi sıfırlamak için birkaç kolay yöntem göstereceğiz.

Resetting the admin password in WordPress on localhost

Parola Sıfırlama Neden Localhost’ta Çalışmıyor?

Localhost terimi, kişisel bilgisayarınız gibi genel kullanıma açık olmayan yerel bir sunucu anlamına gelir.

Birçok WordPress kullanıcısı değişiklikleri test etmek, web sitesi tasarlamak, yeni eklentileri denemek ve hatta WordPress‘i öğrenmek için WordPress‘i localhost’a (bilgisayarlarına) yükler.

Eğer henüz denemediyseniz, aşağıdaki eğitimler WordPress’i bilgisayarınıza kurmanıza yardımcı olacaktır:

  1. WordPress’i Windows’ta yerel olarak yükleme
  2. Mac’te WordPress’i yerel olarak yükleme

Şimdi, burada bazı yeni başlayanların karşılaşabileceği bir sorun var.

Localhost üzerinde çalışırken WordPress yönetici parolanızı unutursanız, WordPress’teki normal parola sıfırlama seçeneğini kullanarak parolanızı sıfırlayamazsınız.

Parola sıfırlama seçeneği, WordPress parolanızı sıfırlamanız için size bir bağlantı e-postası gönderir. Sunucunuzun e-posta göndermek için posta işlevini etkinleştirmesi gerekir.

Ancak bu işlev yerel sunucularda varsayılan olarak kapalıdır, yani WordPress parola sıfırlama e-postasını gönderemez.

Endişelenmeyin. Localhost’ta WordPress şifrenizi sıfırlamanın kolay yolları var. İşte bu eğitimde ele alacağımız yöntemler:

Yöntem 1. phpMyAdmin Kullanarak Localhost’ta WordPress Yönetici Parolasını Sıfırlama

Bu yöntem için phpMyAdmin kullanarak localhost üzerinde WordPress yönetici şifresini nasıl ayarlayacağınızı göstereceğiz. phpMyAdmin, MySQL veritabanlarını yönetmek için grafiksel bir kullanıcı arayüzü sağlayan web tabanlı bir uygulamadır.

Not: phpMyAdmin Wampserver, XAMPP ve MAMP tarafından sağlanan yerel sunucu paketlerinde önceden yüklenmiş olarak gelir. Ancak, eğer‘Local‘ kullanıyorsanız, Veritabanı sekmesi altında Adminer adında farklı bir araç bulacaksınız. Bu phpMyAdmin’e benzer ve öğreticiyi kolayca takip edebilirsiniz.

Adminer the phyMyAdmin alternative in LocalWP

Tarayıcınızın adres çubuğuna bu URL’yi yazarak phpMyAdmin kontrol panelini ziyaret etmeniz yeterlidir:

http://localhost/phpmyadmin/

Not: phpMyAdmin’de oturum açmak için root kullanıcı adınızı ve parolanızı girmeniz istenebilir. Tipik olarak, kullanıcı adı parolasız root’tur.

Giriş yaptıktan sonra, sol sütundaki WordPress veritabanınıza tıklayın.

Open your database in phpMyAdmin

Veritabanınızı seçtiğinizde, içindeki tabloların bir listesini göreceksiniz.

Devam edin ve ‘users’ tablosunun yanındaki gözat bağlantısına tıklayın. WordPress varsayılan olarak tablo öneki için wp_ kullanır, ancak kurulum sırasında değiştirdiyseniz, veritabanınız farklı bir tablo önekine sahip olacaktır.

Open users table in WordPress database

Şimdi ‘kullanıcılar’ tablosundaki girişlerin listesini göreceksiniz. Satır sayısı, WordPress sitenizde kaç kullanıcının kayıtlı olduğuna bağlıdır.

Ardından, yönetici kullanıcının kullanıcı adının yanındaki ‘Düzenle’ bağlantısına tıklamanız gerekir.

Edit user in WordPress database

Bu, söz konusu kullanıcı hesabı için WordPress veritabanınızda depolanan bilgileri gösteren bir form açacaktır.

‘user_pass’ alanına ilerleyin ve ‘Value’ sütununa yeni bir parola yazın. Ardından, ‘işlev’ sütununda MD5 ‘i seçin.

Add new user password

MD5 işlevi, MD5 karma algoritmasını kullanarak WordPress parolanızı şifreler.

Değişikliklerinizi kaydetmek için en alttaki ‘Git’ düğmesine tıklamayı unutmayın.

Save database changes

Hepsi bu kadar. Yeni parolayı kullanarak artık localhost’taki WordPress sitenize giriş yapabilirsiniz.

Yöntem 2: Functions.php Dosyası Üzerinden Şifre Sıfırlama

PhpMyAdmin’e erişiminiz yoksa veya farklı bir yaklaşım tercih ediyorsanız, temanızın functions. php dosyasını düzenleyerek WordPress yönetici şifrenizi sıfırlayabilirsiniz. Bu yöntem basittir ve hızlı bir şekilde yapılabilir.

Adım 1: Temanızın Functions.php Dosyasına Erişin

İlk olarak, aktif temanız için functions.php dosyasını bulmanız gerekir. Bunu yapmak için localhost’unuzdaki WordPress kurulumunuzun kök dizinine gidin.

Hangi yazılımı kullandığınıza bağlı olarak, kök dizinin konumu farklı olabilir. Örneğin, Local kullanıyorsanız, siteniz şu adreste bulunacaktır:

C:\Users\yourusername\Local Sites\yoursitename\app\public\

Ardından, /wp-content/themes/ klasörüne gidin. İçinde, etkin temanızın adını taşıyan bir klasör bulacaksınız.

Locating your theme folder

Aktif tema klasörünüzün içinde functions.php adlı bir dosya bulun ve Notepad veya TextEdit gibi bir metin düzenleyicide açın.

Adım 2: Şifreyi Sıfırlamak için Kodu Ekleyin

functions.php dosyasının en altına aşağıdaki kodu yapıştırmanız gerekir:

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');

‘newpassword123’ yerine kullanmak istediğiniz daha güçlü bir şifre koymayı unutmayın.

Bu kod, 1 ID’li yönetici kullanıcısı için yeni bir şifre belirler. Ancak, kullanıcı ID’sini bilmiyorsanız ancak yönetici e-posta adresini biliyorsanız, bunun yerine bu kod parçacığını kullanabilirsiniz:

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');

Bu kod, belirtilen e-posta adresiyle ilişkili yönetici kullanıcısı için yeni bir parola(newpassword123) belirler.

Kodu ekledikten sonra functions.php dosyasını kaydedin ve localhost WordPress sitenizi tarayıcınızda yenileyin. Artık yeni parolayı kullanarak giriş yapabiliyor olmalısınız.

Adım 4: Kodu Kaldırın

Başarılı bir şekilde giriş yaptıktan sonra, olası güvenlik risklerinden kaçınmak için kod parçacığını functions.php dosyasından kaldırmanız önemlidir.

Basitçe functions.php dosyasını açın ve daha önce eklediğiniz kodu silin. Değişikliklerinizi kaydetmeyi unutmayın.

Bonus Kaynaklar:

Aşağıda WordPress’te parolaları ve yönetici hesaplarını yönetmeye ilişkin ek ipuçları ve eğitimler yer almaktadır:

Umarız bu makale yerel bir sunucuda WordPress yönetici parolanızı sıfırlamanıza yardımcı olmuştur. Ayrıca SMTP ile localhost’tan WordPress e-postalarını etkinleştirme eğitimimizi görmek veya WordPress için bir hazırlık sitesi oluşturmaya göz atmak isteyebilirsiniz.

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.

Açıklama: İçeriğimiz okuyucu desteklidir. Bu, bazı bağlantılarımıza tıklarsanız komisyon kazanabileceğimiz anlamına gelir. WPBeginner'ın nasıl finanse edildiğini, neden önemli olduğunu ve nasıl destek olabileceğinizi görün. İşte editoryal sürecimiz.

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.

Ultimate WordPress Araç Kiti

Araç setimize ÜCRETSİZ erişim sağlayın - her profesyonelin sahip olması gereken WordPress ile ilgili ürün ve kaynaklardan oluşan bir koleksiyon!

Reader Interactions

63 yorumBir Cevap Bırakın

  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!

      Yönetici

    • WPBeginner Support

      Glad our guide was helpful!

      Yönetici

  2. Nidhi Gupta

    it’s really helpful, thankyou so much

    • WPBeginner Support

      Glad our guide was helpful!

      Yönetici

  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.

      Yönetici

  5. Kamondo

    Wonderful! problem solved. Very Simple steps but powerful.

    • WPBeginner Support

      Glad our guide was helpful :)

      Yönetici

  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 :)

      Yönetici

  7. Gerron

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

    • WPBeginner Support

      Glad our guide was helpful :)

      Yönetici

  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 :)

      Yönetici

  9. naved ahmed

    Thanks a lot. Finally problem solved within a minute.

    • WPBeginner Support

      Glad our guide was helpful :)

      Yönetici

  10. Mohsin

    I just love this
    Love the way you write every thing

    • WPBeginner Support

      Thank you, glad you like our content :)

      Yönetici

  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

      Yönetici

  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 :)

      Yönetici

  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 :)

      Yönetici

  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 :)

      Yönetici

  15. adeel kamran

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

    • WPBeginner Support

      Glad our guide could help :)

      Yönetici

  16. lokesh n

    thank you it’s really working thank you

    • WPBeginner Support

      You’re welcome glad our article was helpful :)

      Yönetici

  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 :)

      Yönetici

  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 :)

      Yönetici

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

    very effective… kudos

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

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

  30. mohamad hossein

    so use full thank you so much

  31. Janet

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

  32. Ma

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

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

  34. Jac

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

  35. Gerhard SCHNEIBEL

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

  36. Renu

    it worked.. thanks a ton..

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

  38. Kakaire Charles

    Extremely wonderful. Thank you for sharing.

  39. Gaurav

    i tried this but not working

  40. shaikh muneer

    super way to reset admin password thank you for share this

Bir Cevap Bırakın

Yorum bırakmayı seçtiğiniz için teşekkür ederiz. Lütfen tüm yorumların yorum poli̇ti̇kasi uyarınca denetlendiğini ve e-posta adresinizin yayımlanmayacağını unutmayın. Ad alanında anahtar kelime KULLANMAYIN. Kişisel ve anlamlı bir sohbet edelim.