ccore
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How do I login?A way to bypass this.
Replace line 390 in index-install.php Before install or on a reinstall.It will input YourPassword as the password.
$user_id = wpmu_create_user( ‘admin’, $pass, $email);
Change to:
$user_id = wpmu_create_user( ‘admin’, YOURPASSWORD, $email);
Change the code back after install for secuirty.
Forum: Installing WordPress
In reply to: No Password provided at Step2A way to bypass the bug is this.
Replace line 390 in index-install.php before install or on a reinstall.It will input YourPassword as the password.
$user_id = wpmu_create_user( ‘admin’, $pass, $email);
Change to:
$user_id = wpmu_create_user( ‘admin’, YOURPASSWORD, $email);
Change the code back after install for secuirty.
Forum: Everything else WordPress
In reply to: Installed, but I cant get my password.A way to bypass the bug is this.
Replace line 390 in index-install.php before install or on a reinstall.It will input YourPassword as the password.
$user_id = wpmu_create_user( ‘admin’, $pass, $email);
Change to:
$user_id = wpmu_create_user( ‘admin’, YOURPASSWORD, $email);
Change the code back after install for secuirty.
Forum: Fixing WordPress
In reply to: Activate user w/o mail server (no onboard smtp)A way to bypass the bug is this.
Replace line 390 in index-install.php before install or on a reinstall.It will input YourPassword as the password.
$user_id = wpmu_create_user( ‘admin’, $pass, $email);
Change to:
$user_id = wpmu_create_user( ‘admin’, YOURPASSWORD, $email);
Change the code back after install for secuirty.
Forum: Fixing WordPress
In reply to: no admin password and loginNote: If you got stuck on first page or it bypassed database fields setup, like mail server. Open upgrade-schema.php from your wp-admin directory and find.
add_option(‘admin_email’, ‘[email protected]’);
add_option(‘mailserver_url’, ‘mail.example.com’);
add_option(‘mailserver_login’, ‘[email protected]’);
add_option(‘mailserver_pass’, ‘password’);and put in your information.
Forum: Fixing WordPress
In reply to: no admin password and loginA way to bypass the bug is this.
Replace line 390 in index-install.php before install or on a reinstall.It will input YourPassword as the password.
$user_id = wpmu_create_user( ‘admin’, $pass, $email);
Change to:
$user_id = wpmu_create_user( ‘admin’, YOURPASSWORD, $email);
Change the code back after install for secuirty.