[wpmu-trac] [WordPress MU Trac] #775: COOKIEHASH not defined in
WPMU 2.6.2 as it is in W P2.6.2
WordPress MU Trac
wpmu-trac at lists.automattic.com
Tue Oct 21 17:15:24 GMT 2008
#775: COOKIEHASH not defined in WPMU 2.6.2 as it is in W P2.6.2
------------------------+---------------------------------------------------
Reporter: eagano | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: component1 | Version:
Severity: normal | Keywords:
------------------------+---------------------------------------------------
COOKIEHASH is defined in WP 2.6.2 as the md5 hash of the domain in wp-
settings.php
{{{
if ( ! defined('WP_INSTALLING') ) {
// Used to guarantee unique hash cookies
$cookiehash = md5(get_option('siteurl'));
/**
* Used to guarantee unique hash cookies
* @since 1.5
*/
define('COOKIEHASH', $cookiehash);
}
}}}
In WPMU 2.6.2 wp-settings.php, COOKIEHASH is never actually set:
{{{
// Used to guarantee unique hash cookies
$cookiehash = '';
/**
* Used to guarantee unique hash cookies
* @since 1.5
*/
define('COOKIEHASH', '' );
}}}
This causes problems with bbPress integration (at 1.0-alhpa-2), as the
cookie names are different. bbPress also uses the md5 hash of the domain,
and since WPMU is not nothing is appended to the cookie name so they are
truly different cookies. get_option('site_url') returns the domain, so it
should not cause problems with sub-domain installs.
This probably only causes problems with bbPress integration, but most WPMU
installs would probably like to use bbPress as well.
Better yet, for performance, calculate the hash once at install time and
put it it wp-config.php?
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/775>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list