Posso accedere a livello di codice a un utente senza password?
-
-
Penso chetupossa semplicemente assegnare l'oggetto utente dell'utente che hai appena creato alla variabileglobale current_userI think you can just assign the user object of the user you just created to the current_user global variable
- 0
- 2012-05-28
- onetrickpony
-
6 risposta
- voti
-
- 2012-05-28
wp_set_auth_cookie()
accederà a un utente senza dover conoscere la suapassword.wp_set_auth_cookie()
will log a user in without having to know their password.-
Funzionavabenissimo.Tuttavia,quando lo uso,il condizionale "is_user_logged_in ()"non sembrafunzionare.Sai se staguardando qualcosa di diverso daibiscotti?This worked great. However, when I use it, the conditional `is_user_logged_in()` doesn't seem to work. Do you know if it's looking at something different than the cookies?
- 0
- 2012-05-28
- emersonthis
-
@ Emerson - a quale hook li stai collegando?deveessereprima dell'invio delleintestazioni.prova anche a [`wp_set_current_user`] (http://codex.wordpress.org/Function_Reference/wp_set_current_user)prima di accedere.@Emerson - what hook are you logging them in on? it has to be before headers are sent. also try to [`wp_set_current_user`](http://codex.wordpress.org/Function_Reference/wp_set_current_user) before logging them in.
- 2
- 2012-05-28
- Milo
-
In realtànon lo stavo chiamando affatto da ungancio.Ho appena aggiunto "wp_set_auth_cookie ()"nellamiafunzione di accesso.Credo di averbisogno di ripensarci.Cercherò anche wp_set_current_usere riporteròindietro.Graziemilleperiltuo aiuto su questo!I actually wasn't calling it from a hook at all. I just added `wp_set_auth_cookie()` into my signin function. I guess I need to rethink that. I'll also lookup wp_set_current_user and report back. Thank you very much for your help on this!
- 0
- 2012-05-28
- emersonthis
-
Bene,èpossibile accedere a un utente senza chei suoi datiesistanonel database?Bastaimpostarepochi cookienelbrowsertramite script?Perfavoremi faccia sapere.Well, is it possible to login a user without having his details exist in database? Just setting few cookies in browser through script is enough? Please let me know.
- 0
- 2014-02-06
- shasi kanth
-
- 2014-01-03
Il codice seguentefail lavoroperil login automatico,senza alcunapassword!
// Automatic login // $username = "Admin"; $user = get_user_by('login', $username ); // Redirect URL // if ( !is_wp_error( $user ) ) { wp_clear_auth_cookie(); wp_set_current_user ( $user->ID ); wp_set_auth_cookie ( $user->ID ); $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit(); }
The following code does the job for automatic login, without any password!
// Automatic login // $username = "Admin"; $user = get_user_by('login', $username ); // Redirect URL // if ( !is_wp_error( $user ) ) { wp_clear_auth_cookie(); wp_set_current_user ( $user->ID ); wp_set_auth_cookie ( $user->ID ); $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit(); }
-
Bene,funzionabenissimo.Bastailnome utente,chenonfa distinzionetramaiuscolee minuscole.Well, it works great. Just the username is enough, which is case insensitive.
- 0
- 2014-02-06
- shasi kanth
-
`get_user_by ()` restituiscefalsein caso dierrore,quindi dovresti controllarefalseinvece dell'oggetto WP_Error`get_user_by()` returns false on failure, so you should check for false instead of the WP_Error object
- 1
- 2016-04-14
- somebodysomewhere
-
@Sjoerd Linders,doveposso collegareiltuo scriptperforzare la connessione di un utente?@Sjoerd Linders, where can I hook your script in order to force a user to be connected?
- 0
- 2016-08-31
- RafaSashi
-
Dovetengo questoblocco di codicein qualefile?Where do I keep this block of code in which file?
- 0
- 2019-05-28
- sgiri
-
- 2014-07-31
Hotrovato un'altra soluzione qui che utilizza un approcciomigliore (almeno secondome ...). Non ènecessarioimpostare alcun cookie,utilizza l'API di Wordpress:
/** * Accede a livello di codice un utente * * @param string $nomeutente * @returnbool True seil login è riuscito;falso senon lofosse */ funzioneprogrammatic_login ($ username) { if (is_user_logged_in ()) { wp_logout (); } add_filter ('authenticate','allow_programmatic_login',10,3);//agganciareprima di altri callbackper cortocircuitarli $ user=wp_signon (array ('user_login'=> $ username)); remove_filter ('authenticate','allow_programmatic_login',10,3); if (is_a ($ user,'WP_User')) { wp_set_current_user ($ user- > ID,$ user- > user_login); if (is_user_logged_in ()) { restituire vero; } } returnfalse; } /** * Un callback delfiltro di "autenticazione" che autentica l'utente utilizzando soloilnome utente. * * Perevitarepotenziali vulnerabilità di sicurezza,questo dovrebbeessere utilizzato solonel contesto di un accessoprogrammatico, *e sganciatoimmediatamente dopo lo sparo. * * @param WP_User $ utente * @param string $nomeutente * @param string $password * @returnbool| WP_User un oggetto WP_User seilnome utente corrisponde a un utenteesistente ofalse senon lo è */ funzione allow_programmatic_login ($ user,$ username,$password) { returnget_user_by ('login',$ username); } Penso cheil codice sia autoesplicativo:
Ilfiltro cerca l'oggetto WP_Userperilnome utente specificatoe lo restituisce. Una chiamata allafunzione
wp_set_current_user
con l'oggetto WP_User restituito dawp_signon
,un controllo con lafunzioneis_user_logged_in
per assicurarsi di avereffettuato l'accessoe questo ètutto!Un codice carinoe pulito secondome!
I have found another solution here that uses a better approach (at least in my opinion...). No need to set any cookie, it uses the Wordpress API:
/** * Programmatically logs a user in * * @param string $username * @return bool True if the login was successful; false if it wasn't */ function programmatic_login( $username ) { if ( is_user_logged_in() ) { wp_logout(); } add_filter( 'authenticate', 'allow_programmatic_login', 10, 3 ); // hook in earlier than other callbacks to short-circuit them $user = wp_signon( array( 'user_login' => $username ) ); remove_filter( 'authenticate', 'allow_programmatic_login', 10, 3 ); if ( is_a( $user, 'WP_User' ) ) { wp_set_current_user( $user->ID, $user->user_login ); if ( is_user_logged_in() ) { return true; } } return false; } /** * An 'authenticate' filter callback that authenticates the user using only the username. * * To avoid potential security vulnerabilities, this should only be used in the context of a programmatic login, * and unhooked immediately after it fires. * * @param WP_User $user * @param string $username * @param string $password * @return bool|WP_User a WP_User object if the username matched an existing user, or false if it didn't */ function allow_programmatic_login( $user, $username, $password ) { return get_user_by( 'login', $username ); }
I think the code is self explanatory:
The filter searches for the WP_User object for the given username and returns it. A call to the function
wp_set_current_user
with the WP_User object returned bywp_signon
, a check with the functionis_user_logged_in
to make sure your are logged in, and that's it!A nice and clean piece of code in my opinion!
-
dove usareprogrammatic_login?where to use programmatic_login?
- 0
- 2016-08-31
- RafaSashi
-
Rispostaperfetta!Perfect answer!
- 0
- 2017-07-08
- Maximus
-
@Shebo Iltuo commentonon sembraessere corretto.Laprima riga dellafunzione controlla se l'array `$ credentials` è vuoto omeno.Se l'arraynon è vuoto (comenellamia risposta),i valori dell'array vengono utilizzatiper autenticare l'utente.@Shebo Your comment doesn't seem to be correct. The first line of the function checks whether the array `$credentials` is empty or not. If the array is not empty (which is the case in my answer), the values from the array are used to authenticate the user.
- 0
- 2017-09-04
- Mike
-
@ Mike wow,come hofatto aperdere ... Colpamia,scusaper averingannato.Elimineròilmioprimo commento,perevitare confusione.Ottima soluzioneperò :)@Mike wow, how do I missed it... My bad, sorry for misleading. I'll delete my first comment, to avoid confusion. Great solution though :)
- 0
- 2017-09-04
- Shebo
-
Potrebbeessere utile racchiudere `wp_signon ()`in unbloccotrye chiamare `remove_filter`nelbloccofinalmente.Ciò dovrebbegarantire cheilfiltro venga sempre rimosso.It might be worthwhile to enclose `wp_signon()` in a try block and call `remove_filter` in the finally block. This should ensure that the filter is always removed.
- 0
- 2020-07-23
- Leukipp
-
- 2015-06-09
Questofunzionabene perme:
clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user($user->ID); wp_set_auth_cookie($user->ID, true, false); update_user_caches($user);
This works well for me:
clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user($user->ID); wp_set_auth_cookie($user->ID, true, false); update_user_caches($user);
-
- 2016-08-31
Oltre a Mike,Paule Sjoerd:
Pergestiremeglioi reindirizzamenti
login.php
://---------------------Automatic login-------------------- if(!is_user_logged_in()){ $username = "user1"; if($user=get_user_by('login',$username)){ clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user( $user->ID ); wp_set_auth_cookie( $user->ID , true, false); update_user_caches($user); if(is_user_logged_in()){ $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit; } } } elseif('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] == wp_login_url()){ $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit; }
Dainserirein
wp-config.php
subito doporequire_once(ABSPATH . 'wp-settings.php');
<"FYI"
Sullabase della soluzione di cui sopra,ho rilasciato unplug-inpermantenere l'accesso dell'utente da un wordpress all'altro sincronizzandoi dati dell'utentee la sessione dei cookie:
In addition to Mike, Paul and Sjoerd:
To better handle
login.php
redirections://---------------------Automatic login-------------------- if(!is_user_logged_in()){ $username = "user1"; if($user=get_user_by('login',$username)){ clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user( $user->ID ); wp_set_auth_cookie( $user->ID , true, false); update_user_caches($user); if(is_user_logged_in()){ $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit; } } } elseif('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] == wp_login_url()){ $redirect_to = user_admin_url(); wp_safe_redirect( $redirect_to ); exit; }
To be placed in
wp-config.php
just afterrequire_once(ABSPATH . 'wp-settings.php');
FYI
Based on the above solution, I have released a plugin to keep the user logged in from one wordpress to another by synchronizing user data and cookie session:
-
- 2020-05-22
Abbastanza strano,ma l'unicomodoin cuifunzionaperme è se reindirizzoe muoio () dopo:
clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user( $user_id, $user->user_login ); wp_set_auth_cookie( $user_id, true, true ); update_user_caches( $user ); if ( is_user_logged_in() ) { $redirect_to = $_SERVER['REQUEST_URI']; header("location:".$redirect_to ); die(); }
Strange enough but the only way it works for me is if I redirect and die() after:
clean_user_cache($user->ID); wp_clear_auth_cookie(); wp_set_current_user( $user_id, $user->user_login ); wp_set_auth_cookie( $user_id, true, true ); update_user_caches( $user ); if ( is_user_logged_in() ) { $redirect_to = $_SERVER['REQUEST_URI']; header("location:".$redirect_to ); die(); }
Sto creandomanualmentegli utentiin modoprogrammaticoe desidero accedere all'utente appena creato.WP semplifica l'accesso allapassword con hash,manon alla versionein chiaro.C'è unmodoper usare wp_signon () senza lapasswordin chiaro?
Hotrovato unapersona che afferma di averlofatto qui ,manon l'hafattononfunzionaperme.
GRAZIE!