[wpmu-trac] Re: [WordPress MU Trac] #775: COOKIEHASH not defined in
WPMU 2.6.2 as it is in WP2.6.2
WordPress MU Trac
wpmu-trac at lists.automattic.com
Fri Jan 9 11:38:46 GMT 2009
#775: COOKIEHASH not defined in WPMU 2.6.2 as it is in WP2.6.2
---------------------------------------+------------------------------------
Reporter: eagano | Owner: somebody
Type: enhancement | Status: new
Priority: normal | Milestone: 2.7
Component: General | Version:
Severity: normal | Resolution:
Keywords: cookiehash cookie bbpress |
---------------------------------------+------------------------------------
Changes (by c2h5oh):
* type: defect => enhancement
* component: component1 => General
* milestone: WPMU 2.0 => 2.7
Comment:
How about setting cookie hash based on last 2 segments of domain name
ignoring any subdomains/subdirectories?
{{{
$cookiehash = str_replace(array('http://','https://'),
'',get_option('siteurl'));
$cookiehash = explode('/',$cookiehash);
if (is_array($cookiehash))
{
$cookiehash = $cookiehash[0];
}
$cookiehash = explode('.',$cookiehash);
if (is_array($cookiehash))
{
$domaincount = count($cookiehash);
$cookiehash = $cookiehash[$domaincount -2].'.'.[$domaincount -2];
}
$cookiehash = md5($cookiehash);
}}}
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/775#comment:6>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list