I have upgraded WordPress from 2.2 to 4.3.1 manually and also updated all the related plugins, but after update WordPress, the user of my site is not able to login.
When user puts its email id and password and after clicking to the submit button the page gets redirected to wp-login.php with error message invalid user name even with correct user name and password, even after register the user's are not able to login. In general after login the users are suppose to go their profile page.
I had tried every possible solutions.
adding redirection code in my function.php
Changing login password.
custom login code instead to send in wp-login.php
Renaming my current theme then manually update with fresh WordPress
In general after login the users are suppose to go, to their profile page.
Nothing works in my case.
There might be the plugin issue. Did you tried deactivating the plugins and see if users can logged in after deactivating the plugins. Try deactivating the plugins.
can you confirm that your wp-settings.php matches this one?
https://github.com/WordPress/WordPress/blob/4.0/wp-settings.php
Specifically line 122 that requires session.php, and that session.php also matches
https://github.com/WordPress/WordPress/blob/4.0/wp-includes/session.php
If you still getting issue.
Try to reference from here
After WordPress3.7 , it automatic updates the WordPress and it won't allow admin or anybody to login so This post guides you to ix it
http://onl9class.com/solved-cant-login-after-wordpress-update/
Related
I have just installed https://wordpress.org/plugins/two-factor plugin on my wordpress site and enabled email and google authenticator code. I saved the changes and logged out. Now when I try to login again, after email and password and it shows a disabled form that I can't interact. Now I am not able to login. Please help.
There seems a bug in this plugin. I inspected the form and inside form element, there was an input type submit element. Which was disabled. I removed its disabled css property and form was intractable. I was able to enter code and login.
Deleted this plugin. Will try another one.
I'm new to wordpress, literally the first time using it, and now i am frustrated because i cannot even get in on the page even as an admin because of the error on the title.
So here's how it went :
i wanted to add social login for my web
i install nextend social login and use the google platform for it
i did every step right (i made sure of it, there's a list of steps in the nextend i just simply follow it)
i copy the secret id and cope, i verify it and i wanted to test it out
so i log out of my user, and i don't even see the google button to login (maybe because i haven't add it (i thought it's automatic))
and so i went to login using user and password turns out it gives me an error
ERROR :reCAPTCHA verification failed. Please Try Again.
i have searched at google, youtube and nothing seems to work, please help
Note : i cannot get into my account
Option 1: Examine what other plugins you have installed.
Perhaps one of them is interfering e.g if you have cache plugin, you might want to clear your browser cache and try again and/or disable the cache plugin entirely
Option 2: Disable and re-install
If you have access to the host account, you can disable and re-install the plugin via phpmyadmin or ftp as shown in the following article.
https://kinsta.com/knowledgebase/disable-wordpress-plugins/
Go to your hosting login to WP through there to your admin panel.
Go to your google reCAPTCHA account get keys and paste them to your reCAPTCHA plugin on Wordpress again.
I recently upgraded to Wordpress 5.3 with PHP version 7.2.24. After a couple hours Wordpress appears to log me out (permission based pages and widgets are not displayed). When I select to login it presents the normal Wordpress login page where I enter my username and password. When I click login the site redirects me to a page"
https://example.com/login-2/?redirect_to=https%3A%2F%2Fexample.com%2Fwp-admin%2Findex.php&action=confirm_admin_email
This page indicates that I am already logged in.
If while logged in (not waiting for the session to expire) I log out and try to login the same thing happens, it redirects me and says I'm already logged in.
After the redirect I am logged in, the issue is it is confusing users and one of the plugins we use shows users logged and until the plugin refreshes (with AJAX) it shows that I am logged in multiple times.
This happens to all users.
I have cleared my cookies.
I have checked functions.php in my parent and child themes for
anything related to cookie expiration.
I have looked for a plugin related to persistent logins.
I and checked and recreated my .htaccess
Anyone have any ideas?
I am trying to make a wordpress site which will allow users to register by themselves and log into the site and have a profile. IS there such a plugin that will allow me to incorporate this into my site? I have looked around and being that I have very little experience with making sites/wordpress I have decided to ask some experts.
I know with wordpress you get a "blog" sort of site, but i'm hoping that if the plug-in i'm looking for exists then I can make my site to look different. The reason I am asking for each individual member to have their own "profile page/ private page" is because I want to be able to upload data to their specific pages and they should be able to see the data without seeing others'.
Thanks for any and all help you can provide me.
If I can't find a suitable solution, I will try to build a site with joomla, I had gone with wordpress because I had heard that it was easier to use.
Yeah, There is one plugin to do all these in wordpress. Plugin name: Profile Builder - front-end user registration, login and edit profile
plugin Link: http://wordpress.org/plugins/profile-builder/
Yeah, There is one plugin to do with all the things which you want. Plugin Name : "Theme My Login"
Plugin Features :
Your registration, log in, and password recovery pages will all match
the rest of your website
Includes a customizable widget to login anywhere from your blog
Redirect users upon log in and log out based upon their role
Show gravatar to users who are logged in.
Assign custom links to users who are logged in based on their role
Customize user emails for registration and/or password recovery
Send user emails in HTML format
Allow users to set their own password upon registration
Require users to be approved or confirm e-mail address upon
registration
Theme user profiles
Please refer the following Location :
Theme My Login
I'm having a wordpress site(still offline) which is basically a news paper site. Users has to registered to comment. My problem is that when users login for commenting on any article, they are redirected to profile page (or to home page if i use some plugins)... but the standard should be redirecting them to the referring page as to comment on that was the reason they logged in. What is the solution for this?
And another thing is the user profile, my site actually don't need a user profile but need option to change the password. By default the profile is same like the wp dashboard, how do i template it? Is it author.php file that i have to work on?
Regarding the redirection. You can simply specify the wp login url, where it should take them after they login..
For example.
Login
Takes you to the current page, after the login.. So place a link after the comment.
for disabling profile page modify wp-admin/profile.php like
define('IS_PROFILE_PAGE', true);
Change to:
define('IS_PROFILE_PAGE', false);
I hope you can find the wp comments login link easily in template files.