Changeset 29899
- Timestamp:
- 10/15/2014 02:12:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network.php
r29206 r29899 384 384 <ol> 385 385 <li><p><?php printf( __( 'Add the following to your <code>wp-config.php</code> file in <code>%s</code> <strong>above</strong> the line reading <code>/* That’s all, stop editing! Happy blogging. */</code>:' ), $location_of_wp_config ); ?></p> 386 <textarea class="code" readonly="readonly" cols="100" rows=" 6">386 <textarea class="code" readonly="readonly" cols="100" rows="7"> 387 387 define('MULTISITE', true); 388 388 define('SUBDOMAIN_INSTALL', <?php echo $subdomain_install ? 'true' : 'false'; ?>); … … 390 390 define('PATH_CURRENT_SITE', '<?php echo $base; ?>'); 391 391 define('SITE_ID_CURRENT_SITE', 1); 392 define('BLOG_ID_CURRENT_SITE', 1);</textarea> 392 define('BLOG_ID_CURRENT_SITE', 1); 393 </textarea> 393 394 <?php 394 395 $keys_salts = array( 'AUTH_KEY' => '', 'SECURE_AUTH_KEY' => '', 'LOGGED_IN_KEY' => '', 'NONCE_KEY' => '', 'AUTH_SALT' => '', 'SECURE_AUTH_SALT' => '', 'LOGGED_IN_SALT' => '', 'NONCE_SALT' => '' ); … … 471 472 </rewrite> 472 473 </system.webServer> 473 </configuration>'; 474 </configuration> 475 '; 474 476 475 477 echo '<li><p>'; … … 507 509 RewriteRule ^{$subdir_match}(.*\.php)$ {$rewrite_base}$subdir_replacement_12 [L] 508 510 RewriteRule . index.php [L] 511 509 512 EOF; 510 513
Note: See TracChangeset
for help on using the changeset viewer.