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

Come resettare la password dell’amministratore di WordPress su localhost

Dimenticare la password di amministrazione di WordPress on localhost può essere frustrante. Poiché il recupero delle email potrebbe non funzionare in questo ambiente, avrete bisogno di altri modi per riottenere l’accesso.

Si consiglia di installare WordPress in locale sul proprio computer per imparare lo sviluppo di WordPress o per testare nuovi plugin e temi.

Tuttavia, diverse cose non funzionano su localhost come su un sito live. Tra queste, la funzionalità email, necessaria per reimpostare la password.

In questa guida vi mostreremo diversi metodi semplici per reimpostare la password di amministrazione di WordPress su localhost.

Resetting the admin password in WordPress on localhost

Perché la reimpostazione della password non funziona su Localhost

Il termine localhost indica un server locale non disponibile al pubblico, come ad esempio il vostro computer personale.

Molti utenti di WordPress installano WordPress su localhost (sul proprio computer) per testare le modifiche, progettare siti web, provare nuovi plugin e persino imparare WordPress.

Se non l’avete mai provato, le esercitazioni seguenti vi aiuteranno a installare WordPress sul vostro computer:

  1. Installare WordPress in locale su Windows
  2. Installare WordPress in locale su Mac

Ecco il problema che alcuni principianti possono incontrare.

Se si dimentica la password di amministrazione di WordPress mentre si lavora su localhost, non è possibile reimpostare la password utilizzando la normale opzione di reimpostazione di WordPress.

L’opzione di reimpostazione della password invia via email un link per reimpostare la password di WordPress. Il vostro server deve abilitare la funzione di posta per l’invio delle email.

Ma questa funzione è off di default sui server locali, il che significa che WordPress non può inviare l’email di reimposta della password.

Non preoccupatevi. Esistono modi semplici per reimpostare la password di WordPress su localhost. Ecco i metodi che metteremo in copertina in questo tutorial:

Metodo 1. Reimposta la password dell’amministratore di WordPress su localhost usando phpMyAdmin

Per questo metodo vi mostreremo come impostare la password di amministrazione di WordPress su localhost utilizzando phpMyAdmin. phpMyAdmin è un’applicazione basata sul web che fornisce un’interfaccia utente grafica per la gestione dei database MySQL.

Nota: phpMyAdmin è preinstallato sui pacchetti di server locali forniti da Wampserver, XAMPP e MAMP. Tuttavia, se si utilizza“Local“, si troverà uno strumento diverso chiamato Adminer sotto la scheda Database. È simile a phpMyAdmin e si può seguire facilmente il tutorial.

Adminer the phyMyAdmin alternative in LocalWP

È sufficiente visitare il pannello di controllo phpMyAdmin digitando questo URL nella barra degli indirizzi del browser:

http://localhost/phpmyadmin/

Nota: per accedere a phpMyAdmin potrebbe essere richiesto di inserire il nome utente e la password di root. In genere, il nome utente è root senza password.

Una volta effettuato l’accesso, fate clic sul database di WordPress nella colonna di sinistra.

Open your database in phpMyAdmin

Una volta selezionato il database, verrà visualizzato un elenco di tabelle.

Fare clic sul link sfoglia accanto alla tabella “utenti”. Di default, WordPress utilizza wp_ per il prefisso della tabella, ma se lo avete modificato durante l’installazione, il vostro database avrà un prefisso diverso.

Open users table in WordPress database

Ora si vedrà l’elenco delle voci della tabella “utenti”. Il numero di righe dipende dal numero di utenti registrati sul sito WordPress.

Successivamente, è necessario fare clic sul link “Modifica” accanto al nome utente dell’amministratore.

Edit user in WordPress database

Si aprirà un modulo che mostrerà le informazioni memorizzate nel database di WordPress per quell’account utente.

Scendere fino al campo “user_pass” e digitare una nuova password nella colonna “Value”. Quindi, selezionare MD5 nella colonna “funzione”.

Add new user password

La funzione MD5 cripta la password di WordPress utilizzando l’algoritmo di hashing MD5.

Non dimenticate di cliccare sul pulsante “Vai” in basso per salvare le modifiche.

Save database changes

Tutto-in-uno. Utilizzando la nuova password, è ora possibile effettuare l’accesso al sito WordPress su localhost.

Metodo 2: reimposta la password tramite il file Functions.php

Se non avete accesso a phpMyAdmin o preferite un approccio diverso, potete reimpostare la password di amministrazione di WordPress modificando il file functions.php del tema. Questo metodo è semplice e può essere eseguito rapidamente.

Fase 1: accedere al file Functions.php del tema

Per prima cosa, è necessario individuare il file functions.php del tema attivato. A tale scopo, navigare nella directory principale dell’installazione di WordPress sull’host locale.

A seconda del software utilizzato, la posizione della directory principale può variare. Ad esempio, se si utilizza Local, il sito si troverà in:

C:´Utente´Nomeutente´Siti locali´Nomeutente´apparente´pubblico´.

Quindi, accedere alla cartella /wp-content/themes/. Al suo interno troverete una cartella con il nome del tema attivato.

Locating your theme folder

Nella cartella del tema attivato, cercare un file chiamato functions.php e aprirlo in un editor di testo come Notepad o TextEdit.

Passo 2: Aggiungere il codice per reimpostare la password

In fondo al file functions.php, è necessario incollare il seguente codice:

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

Non dimenticate di sostituire “newpassword123” con una password più forte che volete usare.

Questo codice imposta una nuova password per l’utente admin con ID 1. Tuttavia, se non si conosce l’ID dell’utente ma si conosce l’indirizzo email dell’admin, si può usare questo frammento di codice:

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

Questo codice imposta una nuova password(newpassword123) per l’utente admin associato all’indirizzo email specificato.

Dopo aver aggiunto il codice, salvare il file functions.php e aggiornare il sito WordPress dell’host locale nel browser. Ora dovreste essere in grado di effettuare l’accesso utilizzando la nuova password.

Passo 4: rimuovere il codice

Una volta effettuato l’accesso, importa rimuovere il frammento di codice dal file functions.php per evitare potenziali rischi per la sicurezza.

È sufficiente aprire il file functions.php ed eliminare il codice aggiunto in precedenza. Non dimenticate di salvare le modifiche.

Risorse bonus:

Di seguito sono riportati ulteriori suggerimenti e tutorial sulla gestione delle password e degli account di amministrazione in WordPress:

Speriamo che questo articolo vi abbia aiutato a reimpostare la password di amministrazione di WordPress su un server locale. Potreste anche consultare il nostro tutorial su come abilitare le email di WordPress da localhost con SMTP o dare un’occhiata alla creazione di un sito di staging per WordPress.

Se questo articolo vi è piaciuto, iscrivetevi al nostro canale YouTube per le esercitazioni video su WordPress. Potete trovarci anche su Twitter e Facebook.

Divulgazione: I nostri contenuti sono sostenuti dai lettori. Ciò significa che se cliccate su alcuni dei nostri link, potremmo guadagnare una commissione. Vedi come WPBeginner è finanziato , perché è importante e come puoi sostenerci. Ecco il nostro processo editoriale .

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.

Il kit di strumenti WordPress definitivo

Ottenete l'accesso gratuito al nostro kit di strumenti - una raccolta di prodotti e risorse relative a WordPress che ogni professionista dovrebbe avere!

Reader Interactions

64 commentiLascia una risposta

  1. Syed Balkhi

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

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

      Admin

    • WPBeginner Support

      Glad our guide was helpful!

      Admin

  3. Nidhi Gupta

    it’s really helpful, thankyou so much

    • WPBeginner Support

      Glad our guide was helpful!

      Admin

  4. Habu

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

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

      Admin

  6. Kamondo

    Wonderful! problem solved. Very Simple steps but powerful.

    • WPBeginner Support

      Glad our guide was helpful :)

      Admin

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

      Admin

  8. Gerron

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

    • WPBeginner Support

      Glad our guide was helpful :)

      Admin

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

      Admin

  10. naved ahmed

    Thanks a lot. Finally problem solved within a minute.

    • WPBeginner Support

      Glad our guide was helpful :)

      Admin

  11. Mohsin

    I just love this
    Love the way you write every thing

    • WPBeginner Support

      Thank you, glad you like our content :)

      Admin

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

      Admin

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

      Admin

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

      Admin

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

      Admin

  16. adeel kamran

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

    • WPBeginner Support

      Glad our guide could help :)

      Admin

  17. lokesh n

    thank you it’s really working thank you

    • WPBeginner Support

      You’re welcome glad our article was helpful :)

      Admin

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

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

      Admin

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

      Admin

  21. Anuj

    It work fine, Thanku so much,

  22. Pádraig

    Really simple and great explanation.

    Many thanks for sharing.

  23. Saranya

    Works Good! Thanks a lot.

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

  25. Christian Gochez

    when I click on the Go button this error appears:

    #1881 – Operation not allowed when innodb_forced_recovery > 0

  26. Edward

    Simple and neat! worked thanks

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

  28. Sheriff

    very effective… kudos

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

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

  31. mohamad hossein

    so use full thank you so much

  32. Janet

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

  33. Ma

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

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

  35. Jac

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

  36. Gerhard SCHNEIBEL

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

  37. Renu

    it worked.. thanks a ton..

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

  39. Kakaire Charles

    Extremely wonderful. Thank you for sharing.

  40. Gaurav

    i tried this but not working

  41. shaikh muneer

    super way to reset admin password thank you for share this

Lascia una risposta

Grazie per aver scelto di lasciare un commento. Tenga presente che tutti i commenti sono moderati in base alle nostre politica dei commenti e il suo indirizzo e-mail NON sarà pubblicato. Si prega di NON utilizzare parole chiave nel campo del nome. Avremo una conversazione personale e significativa.