• Resolved willow_twf

    (@willow_twf)


    Today I again attempted to update my blog / site to WordPress 4.1. I use the manual update option as auto updates have failed in the past.

    My site is https://www.theworldforgot.com

    My host is 1and1

    After updating whenever I go to the /wp-admin or /wp-login it simply redirects me back to a URL that ends with wp-login.php?redirect_to=http%3A%2F%2Fwww.theworldforgot.com%2Fwp-admin%2F&reauth=1

    If I enter an incorrect password the screen shakes like it’s supposed to.
    If I enter the correct password it just reloads the login page.

    Things I have tried:
    – disabled all plugins
    – deleted all plugins
    – cleared browswer, cookies, cache, and used a different browser
    – deleted .htaccess
    – edited wp-config.php and changed all the Authentication Unique Keys
    – updated PHP to PHP 5.5
    – did an emergency password reset

    Nothing gets me to the admin dashboard. Nothing. It simply loops back to the login URL ending in reauth=1

    One thing I am trying to resolve. With my host the MySQL database is too large and (at least through phpMyAdmin) I can’t optimize the table in question (wp_commentmeta) because I believe they’ve blocked me from INSERT command due to the database being over the limit. (FYI – The database has 101 MB of Akismet logs that have never been purged in the past 5 years).

    PHP Info

    System 	Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
    Build Date 	Dec 12 2014 12:00:15
    Configure Command 	'./configure' '--build=i486-linux-gnu' '--prefix=/usr' '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--sysconfdir=/etc' '--localstatedir=/var' '--libexecdir=${prefix}/lib' '--disable-maintainer-mode' '--disable-dependency-tracking' '--program-suffix=5.5' '--bindir=/usr/bin' '--libdir=/usr/lib/php5.5' '--includedir=/usr/include' '--with-pear=/usr/lib/php5.5' '--with-config-file-path=/usr/lib/php5.5' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--with-mysql=mysqlnd' '--with-kerberos' '--with-imap-ssl' '--enable-soap' '--with-xsl' '--enable-mbstring=all' '--with-curl' '--with-mcrypt' '--with-gd' '--with-freetype-dir' '--with-libxml-dir' '--with-zlib' '--enable-debug=no' '--enable-safe-mode=no' '--enable-discard-path=no' '--with-png-dir' '--enable-track-vars' '--with-db' '--with-gdbm' '--enable-force-cgi-redirect' '--with-ttf' '--enable-ftp' '--enable-memory-limit' '--enable-calendar' '--enable-wddx' '--with-jpeg-dir' '--enable-bcmath' '--enable-gd-imgstrttf' '--enable-shmop' '--with-openssl' '--enable-xslt' '--with-xslt-sablot' '--with-dom' '--with-dom-xslt' '--with-dom-exslt' '--with-imap' '--with-iconv' '--with-bz2' '--with-gettext' '--enable-exif' '--with-sqlite' '--enable-sqlite-utf8' '--enable-zip' '--with-tidy' '--enable-intl' '--enable-opcache'
    Server API 	CGI/FastCGI
    Virtual Directory Support 	disabled
    Configuration File (php.ini) Path 	/usr/lib/php5.5

Viewing 5 replies - 1 through 5 (of 5 total)
  • What’s in your “.htaccess” file?

    https://codex.www.ads-software.com/htaccess

    Thread Starter willow_twf

    (@willow_twf)

    “.htaccess” reads as follows

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Problem persists whether or not the .htaccess file is present or deleted entirely.

    Looks like you were missing a line.

    RewriteRule ^index\.php$ - [L]

    Try deleting your old “.htaccess” file and replacing it with this.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    You can also add this rule to prevent people from browsing your web server’s files. A.K.A wp-includes,wp-admin, and wp-content folders and other subfolders. To add this. Copy and paste this at the very bottom of your .htaccess file, after #END WordPress.

    IndexIgnore *

    Thread Starter willow_twf

    (@willow_twf)

    Is there a donate button for you? I’ve been struggling with this for almost 10 months (I kept rolling back to WordPress 3.9x in order to be able to view my admin dashboard).

    Thanks so much.

    Glad I could help ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘4.1 (Intsall from 3.9) Can't Login – Loops into redirect …. reauth=1’ is closed to new replies.