WordPress Session Expired ?
This is also one of the common wordpress errors.This issue also called as WordPress session expired. This issue comes due to mismatch of site address and wordpress address.You need to keep both the url’s are same either with www or without www at starting of domain name.You can set them by logging in to your dashboard.The screen shot of where the wordpress address and site address are present is shown below.As shown above change the URLs(Site Address and WordPress address) should be same.If you are nor having access to website dashboard then login to your website Control Panel using FTP. Now edit wp-config.php,add below code at the line of database connections are end.
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');
use without “www” or with “www” at the beginning of domainname.com
define('WP_HOME','http://www.example.com'); define('WP_SITEURL','http://www.example.com');
Make sure that before adding above code to your wp-config.php file,replace example.com with your domainname.com. We hope with the above article wordpress session timeout issue will be fixed.Please share the same on facebook.“Happy Coding.!”