=== Plugin Name === Contributors: Nick Bettison - LINICKX Donate link: http://www.linickx.com/index.php?content=donate Tags: login, logout, authentication, cookie Requires at least: 2.0.9 Tested up to: 2.1.2 Stable tag: 1.2 root-cookie changes the path of your cookie to the full domain; i.e. from mydomain.com/wordpress to mydomain.com == Description == If you want to integrate the wordpress authentication magic into another script within your website you may come across authentication issues because your code cannot read the wordpress cookie. By default the wordpress cookie exactly matches the URL of your installation, this plugin removes any subfolders from the cookie so that your whole domain has access to it. For Example if you have wordpress installed in http://mydomain.com/wordpress any php stored in http://mydomain.com/mymagiccode cannot see the cookie due to browser security. This plugin changes the path to http://mydomain.com so that any php code on your site can access the cookie, so in our above example http://mydomain.com/mymagiccode/checkauthentication.php can now check the cookie to see if you have logged into wordpress. == Installation == This section describes how to install the plugin and get it working. e.g. 1. Upload `root-cookie.php` to the `/wp-content/plugins/` directory 1. Activate the plugin through the 'Plugins' menu in WordPress 1. Log out 1. Log in 1. Done :o)