Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #21529


Ignore:
Timestamp:
08/09/2012 08:05:30 PM (13 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21529

    • Property Component changed from Administration to Multisite
    • Property Summary changed from Improve multisite variables for wordpress multisite to Improve multisite variables for WordPress multisite
  • Ticket #21529 – Description

    initial v2  
    1 Currently, wordpress suggest those variables to be used for a multisite setup:
    2 
     1Currently, !WordPress suggest those variables to be used for a multisite setup:
     2{{{
    33$base = /YOURPATH/;
    44define('PATH_CURRENT_SITE', '/YOURPATH/');
    5 
     5}}}
    66To keep it simple, it should be something like:
     7{{{
    78define('PATH_CURRENT_SITE', '/YOURPATH/');
    89$base = PATH_CURRENT_SITE;
     10}}}