Is it possible to tell if a user is logged into WordPress from looking at the cookies which are set?

You could use Javascript <script type=”text/javascript”> function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(“;”); for (i=0;i<ARRcookies.length;i++) { x=ARRcookies[i].substr(0,ARRcookies[i].indexOf(“=”)); y=ARRcookies[i].substr(ARRcookies[i].indexOf(“=”)+1); x=x.replace(/^\s+|\s+$/g,””); if (x==c_name) { return unescape(y); } } } var logged_in=getCookie(“wordpress_logged_in_[HASH]”); if (logged_in!=null && logged_in!=””) { alert(“You are logged in!”); } else { alert(“You are logged out!”); } </script> NOTE: WordPress logged in cookie info can be found here. … Read more

Help please i cant login to wordpress panel [closed]

There’s absolutely no reason you should be paying for a domain for a site run in MAMP. MAMP lets you run WordPress on your local computer, but the site is not accessible over the internet, so you can’t give it a domain name. If you just want a nicer URL for your personal use locally, … Read more

WordPress blog fails to open

Normally, you’ll get those kinds of results because you have file permissions issues. The files all need to be readable and executable by whatever user the WordPress installation is running as (e.g. on most typical webservers, including if you’re running LAMP/MAMP locally, it’s usually something like the www user and staff group). You’ll need to … Read more

My website’s wp-admin redirects to another website’s wp-admin after pointing the site url to a subdirectiory

I’m still having trouble following your question. You say you’re familiar with giving WP it’s own directory, but I think you may be confusing installing a second WordPress install in a separate sub-directory with giving WordPress it’s own sub-directory. Possible file structures: Single site: /index.php (and all the rest of wordpress installed at root) Multiple … Read more

Taking over a WordPress site

You are using an old version of WordPress. Because you do not have proper access to the panel, you need to update as follows: Access your FTP and copy the files that are there to your computer as a backup. Download the latest version of WordPress here: https://wordpress.org/ If they are zipped, extract the downloaded … Read more