Changeset 16564
- Timestamp:
- 11/24/2010 10:08:20 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/iis/parameters.xml
r15134 r16564 73 73 defaultValue="localhost" 74 74 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', '[^']*'\);" 80 85 /> 81 86 </parameter> … … 99 104 match="PlaceholderForDbName" 100 105 /> 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', '[^']*'\);" 105 116 /> 106 117 </parameter> … … 124 135 match="PlaceholderForDbUsername" 125 136 /> 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', '[^']*'\);" 130 147 /> 131 148 </parameter> … … 142 159 match="PlaceholderForDbPassword" 143 160 /> 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 150 174 151 175 <!-- Prompts for the admin creds and uses it for the administrator … … 220 244 description="Unique phrase used to strengthen your password." 221 245 defaultValue="put your unique phrase here" 222 tags=" PHP"246 tags="NoStore" 223 247 > 224 248 <parameterValidation … … 228 252 <parameterEntry 229 253 type="TextFile" 230 match="(?<= AUTH_KEY',[ ]+')put your unique phrase here"254 match="(?<='AUTH_KEY',[ ]+')put your unique phrase here" 231 255 scope="wordpress\\wp-config.php" 232 256 /> … … 238 262 description="Different unique phrase used to strengthen SSL passwords." 239 263 defaultValue="put your unique phrase here" 240 tags=" PHP"264 tags="NoStore" 241 265 > 242 266 <parameterValidation … … 256 280 description="Different unique phrase used to strengthen authentication." 257 281 defaultValue="put your unique phrase here" 258 tags=" PHP"282 tags="NoStore" 259 283 > 260 284 <parameterValidation … … 274 298 description="Another unique phrase used to strengthen authentication." 275 299 defaultValue="put your unique phrase here" 276 tags=" PHP"300 tags="NoStore" 277 301 > 278 302 <parameterValidation
Note: See TracChangeset
for help on using the changeset viewer.