Make WordPress Core

Changeset 16564


Ignore:
Timestamp:
11/24/2010 10:08:20 AM (13 years ago)
Author:
westi
Message:

Updated WebPI parameters.xml file. Props Chris Sfanos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/iis/parameters.xml

    r15134 r16564  
    7373    defaultValue="localhost"
    7474    tags="MySQL,dbServer"
    75     >
    76     <parameterEntry
    77     type="TextFile"
    78     scope="wordpress\\wp-config.php"
    79     match="localhost"
     75    />
     76<parameter
     77    name="Automatic Database Server PHP File"
     78    defaultValue="define('DB_HOST', '{DbServer}');"
     79    tags="Hidden, MySQL"
     80    >
     81    <parameterEntry
     82    type="TextFile"
     83    scope="wp-config.php$"
     84    match="define\('DB_HOST', '[^']*'\);"
    8085    />
    8186</parameter>
     
    99104    match="PlaceholderForDbName"
    100105    />
    101     <parameterEntry
    102     type="TextFile"
    103     scope="wordpress\\wp-config.php"
    104     match="database_name_here"
     106</parameter>
     107<parameter
     108    name="Automatic Database Name PHP File"
     109    defaultValue="define('DB_NAME', '{DbName}');"
     110    tags="Hidden, MySQL"
     111    >
     112    <parameterEntry
     113    type="TextFile"
     114    scope="wp-config.php$"
     115    match="define\('DB_NAME', '[^']*'\);"
    105116    />
    106117</parameter>
     
    124135    match="PlaceholderForDbUsername"
    125136    />
    126     <parameterEntry
    127     type="TextFile"
    128     scope="wordpress\\wp-config.php"
    129     match="username_here"
     137</parameter>
     138<parameter
     139    name="Automatic Database Username PHP File"
     140    defaultValue="define('DB_USER', '{DbUsername}');"
     141    tags="Hidden,MySQL"
     142    >
     143    <parameterEntry
     144    type="TextFile"
     145    scope="wp-config.php$"
     146    match="define\('DB_USER', '[^']*'\);"
    130147    />
    131148</parameter>
     
    142159    match="PlaceholderForDbPassword"
    143160    />
    144     <parameterEntry
    145     type="TextFile"
    146     scope="wordpress\\wp-config.php"
    147     match="password_here"
    148     />
    149 </parameter>
     161</parameter>
     162<parameter
     163    name="Automatic Database Password PHP File"
     164    defaultValue="define('DB_PASSWORD', '{DbPassword}');"
     165    tags="Hidden, MySQL"
     166    >
     167    <parameterEntry
     168    type="TextFile"
     169    scope="wp-config.php$"
     170    match="define\('DB_PASSWORD', '[^']*'\);"
     171    />
     172</parameter>
     173
    150174
    151175<!-- Prompts for the admin creds and uses it for the administrator
     
    220244    description="Unique phrase used to strengthen your password."
    221245    defaultValue="put your unique phrase here"
    222     tags="PHP"
     246    tags="NoStore"
    223247    >
    224248    <parameterValidation
     
    228252    <parameterEntry
    229253    type="TextFile"
    230     match="(?&lt;=AUTH_KEY&#039;,[ ]+&#039;)put your unique phrase here"
     254    match="(?&lt;=&#039;AUTH_KEY&#039;,[ ]+&#039;)put your unique phrase here"
    231255    scope="wordpress\\wp-config.php"
    232256    />
     
    238262    description="Different unique phrase used to strengthen SSL passwords."
    239263    defaultValue="put your unique phrase here"
    240     tags="PHP"
     264    tags="NoStore"
    241265    >
    242266    <parameterValidation
     
    256280    description="Different unique phrase used to strengthen authentication."
    257281    defaultValue="put your unique phrase here"
    258     tags="PHP"
     282    tags="NoStore"
    259283    >
    260284    <parameterValidation
     
    274298    description="Another unique phrase used to strengthen authentication."
    275299    defaultValue="put your unique phrase here"
    276     tags="PHP"
     300    tags="NoStore"
    277301    >
    278302    <parameterValidation
Note: See TracChangeset for help on using the changeset viewer.