Opened 15 years ago
Closed 15 years ago
#12848 closed enhancement (fixed)
Network instructions need to be more verbose
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.0 | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | Multisite | Keywords: | has-patch |
Focuses: | Cc: |
Description
Since the release of WP 3.0 beta 1 we have had a number of people testing the network configuration. The only problem is a number of them seem to be placing the required code in wp-config.php below the line reading:
/* That's all, stop editing! Happy blogging. */
Add a few extra words to the instructions to specify that it should go above.
Attachments (1)
Change History (7)
#1
@
15 years ago
- Cc matt@… added
- Keywords has-patch added
Attached patch adds some additional instructions as to where to place the code required in wp-config.php
#4
@
15 years ago
I've been thinking about [14000] for a while. This will keep the site operational as non-MS, instead of a half-loaded MS admin screen and a fatal error on get_dirsize().
Most people wouldn't see the notice spit out by the redefinition of a constant, but I think "Why am I not getting my network panels?" is better than "Why isn't WordPress working? The Network feature sucks."
I realized I can now improve the is_multisite() logic with:
function is_multisite() { if ( defined( 'MULTISITE' ) return (bool) MULTISITE; if ( defined( 'VHOST' ) || defined( 'SUNRISE' ) ) return true; return false; }
Add some additional instructions