wpswiss
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: v4.9.6 wp-admin loop after installUnfortunately not, on the plugin settings. I can’t get in to look at them.
Forum: Fixing WordPress
In reply to: v4.9.6 wp-admin loop after installThere is no error message, it just returns to the WP login with the user name in place and the pw space blank.
Here is the prelogin attempt url:
Here is the failed login attempt url:
I have now tested it with my PC, laptop and iPad. All produce the same negative login result, so I’m thinking the IP address may be the problem.
If it is not something you see in the url, can you point me to how unlock an IP address from C-Panel or FTP. On this last, I use Loginizer and I tried disabling it but it made no difference.
Thanks, for you input.
Forum: Fixing WordPress
In reply to: v4.9.6 wp-admin loop after installI meant v4.9.6.
Forum: Fixing WordPress
In reply to: v4.9.6 wp-admin loop after installNo. I did not remove the theme. And I did not make any changes to the system other than the update. I did not update any plugins either, because after the update they all read as “compatibility unknown” for v6.9.6, except for Contact Form 7 which I left as is.
Below is the code for htaccess from public_html in case it helps.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.net$
RewriteCond %{REQUEST_URI} !^/livewebsite/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /livewebsite/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.net$
RewriteRule ^(/)?$ livewebsite/index.php [L]
</IfModule># END WordPress