Last active
January 29, 2025 12:29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Részletek itt: https://wphu.org/tippek-trukkok/hogyan-jussunk-wordpress-adminba-hozzaferes-nelkul/ | |
require_once('wp-blog-header.php'); | |
require_once('wp-includes/registration.php'); | |
$newusername = 'wphu.org-potkulcs'; | |
$newpassword = 'wphu.org-potjelszo'; | |
$newemail = 'wphu@org.potjelszo'; | |
if ( !username_exists($newusername) && !email_exists($newemail) ) | |
{ | |
$user_id = wp_create_user( $newusername, $newpassword, $newemail); | |
if ( is_int($user_id) ) | |
{ | |
$wp_user_object = new WP_User($user_id); | |
$wp_user_object->set_role('administrator'); | |
echo 'Sikeresen elkeszult a pothozzaferes! Most torolheted a potkulcs.php-t!'; | |
} | |
else { | |
echo 'Hiba! sajnos nem tudtuk letrehozni a pothozzaferest.'; | |
} | |
} | |
else { | |
echo 'Ez az emailcim mar regisztralva van.'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment