web/wp-admin/options-permalink.php
changeset 194 32102edaa81b
parent 136 bde1974c263b
child 204 09a1c134465b
equal deleted inserted replaced
193:2f6f6f7551ca 194:32102edaa81b
     1 <?php
     1 <?php
     2 /**
     2 /**
     3  * Permalink settings administration panel.
     3  * Permalink Settings Administration Screen.
     4  *
     4  *
     5  * @package WordPress
     5  * @package WordPress
     6  * @subpackage Administration
     6  * @subpackage Administration
     7  */
     7  */
     8 
     8 
     9 /** WordPress Administration Bootstrap */
     9 /** WordPress Administration Bootstrap */
    10 require_once('admin.php');
    10 require_once('./admin.php');
    11 
    11 
    12 if ( ! current_user_can('manage_options') )
    12 if ( ! current_user_can( 'manage_options' ) )
    13 	wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
    13 	wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
    14 
    14 
    15 $title = __('Permalink Settings');
    15 $title = __('Permalink Settings');
    16 $parent_file = 'options-general.php';
    16 $parent_file = 'options-general.php';
       
    17 
       
    18 get_current_screen()->add_help_tab( array(
       
    19 	'id'      => 'overview',
       
    20 	'title'   => __('Overview'),
       
    21 	'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.') . '</p>' .
       
    22 		'<p>' . __('This screen allows you to choose your default permalink structure. You can choose from common settings or create custom URL structures.') . '</p>' .
       
    23 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
       
    24 ) );
       
    25 
       
    26 get_current_screen()->add_help_tab( array(
       
    27 	'id'      => 'common-settings',
       
    28 	'title'   => __('Common Settings'),
       
    29 	'content' => '<p>' . __('Many people choose to use &#8220;pretty permalinks,&#8221; URLs that contain useful information such as the post title rather than generic post ID numbers. You can choose from any of the permalink formats under Common Settings, or can craft your own if you select Custom Structure.') . '</p>' .
       
    30 		'<p>' . __('If you pick an option other than Default, your general URL path with structure tags, terms surrounded by <code>%</code>, will also appear in the custom structure field and your path can be further modified there.') . '</p>' .
       
    31 		'<p>' . __('When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes <code>%category%</code> or <code>%tag%</code>.') . '</p>' .
       
    32 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
       
    33 ) );
       
    34 
       
    35 get_current_screen()->add_help_tab( array(
       
    36 	'id'      => 'custom-structures',
       
    37 	'title'   => __('Custom Structures'),
       
    38 	'content' => '<p>' . __('The Optional fields let you customize the &#8220;category&#8221; and &#8220;tag&#8221; base names that will appear in archive URLs. For example, the page listing all posts in the &#8220;Uncategorized&#8221; category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.') . '</p>' .
       
    39 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
       
    40 ) );
       
    41 
       
    42 get_current_screen()->set_help_sidebar(
       
    43 	'<p><strong>' . __('For more information:') . '</strong></p>' .
       
    44 	'<p>' . __('<a href="http://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
       
    45 	'<p>' . __('<a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</p>' .
       
    46 	'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
       
    47 );
    17 
    48 
    18 /**
    49 /**
    19  * Display JavaScript on the page.
    50  * Display JavaScript on the page.
    20  *
    51  *
    21  * @package WordPress
    52  * @package WordPress
    22  * @subpackage Permalink_Settings_Panel
    53  * @subpackage Permalink_Settings_Screen
    23  */
    54  */
    24 function add_js() {
    55 function add_js() {
    25 ?>
    56 	?>
    26 <script type="text/javascript">
    57 <script type="text/javascript">
    27 //<![CDATA[
    58 //<![CDATA[
    28 function GetElementsWithClassName(elementName, className) {
    59 jQuery(document).ready(function() {
    29 var allElements = document.getElementsByTagName(elementName);
    60 	jQuery('input:radio.tog').change(function() {
    30 var elemColl = new Array();
    61 		if ( 'custom' == this.value )
    31 for (i = 0; i < allElements.length; i++) {
    62 			return;
    32 if (allElements[i].className == className) {
    63 		jQuery('#permalink_structure').val( this.value );
    33 elemColl[elemColl.length] = allElements[i];
    64 	});
    34 }
    65 	jQuery('#permalink_structure').focus(function() {
    35 }
    66 		jQuery("#custom_selection").attr('checked', 'checked');
    36 return elemColl;
    67 	});
    37 }
    68 });
    38 
       
    39 function upit() {
       
    40 var inputColl = GetElementsWithClassName('input', 'tog');
       
    41 var structure = document.getElementById('permalink_structure');
       
    42 var inputs = '';
       
    43 for (i = 0; i < inputColl.length; i++) {
       
    44 if ( inputColl[i].checked && inputColl[i].value != '') {
       
    45 inputs += inputColl[i].value + ' ';
       
    46 }
       
    47 }
       
    48 inputs = inputs.substr(0,inputs.length - 1);
       
    49 if ( 'custom' != inputs )
       
    50 structure.value = inputs;
       
    51 }
       
    52 
       
    53 function blurry() {
       
    54 if (!document.getElementById) return;
       
    55 
       
    56 var structure = document.getElementById('permalink_structure');
       
    57 structure.onfocus = function () { document.getElementById('custom_selection').checked = 'checked'; }
       
    58 
       
    59 var aInputs = document.getElementsByTagName('input');
       
    60 
       
    61 for (var i = 0; i < aInputs.length; i++) {
       
    62 aInputs[i].onclick = aInputs[i].onkeyup = upit;
       
    63 }
       
    64 }
       
    65 
       
    66 window.onload = blurry;
       
    67 //]]>
    69 //]]>
    68 </script>
    70 </script>
    69 <?php
    71 <?php
    70 }
    72 }
    71 add_filter('admin_head', 'add_js');
    73 add_filter('admin_head', 'add_js');
    72 
    74 
    73 include('admin-header.php');
    75 include('./admin-header.php');
    74 
    76 
    75 $home_path = get_home_path();
    77 $home_path = get_home_path();
    76 $iis7_permalinks = iis7_supports_permalinks();
    78 $iis7_permalinks = iis7_supports_permalinks();
    77 
    79 
       
    80 $prefix = $blog_prefix = '';
       
    81 if ( ! got_mod_rewrite() && ! $iis7_permalinks )
       
    82 	$prefix = '/index.php';
       
    83 if ( is_multisite() && !is_subdomain_install() && is_main_site() )
       
    84 	$blog_prefix = '/blog';
       
    85 
    78 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
    86 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
    79 	check_admin_referer('update-permalink');
    87 	check_admin_referer('update-permalink');
    80 
    88 
    81 	if ( isset($_POST['permalink_structure']) ) {
    89 	if ( isset( $_POST['permalink_structure'] ) ) {
    82 		$permalink_structure = $_POST['permalink_structure'];
    90 		if ( isset( $_POST['selection'] ) && 'custom' != $_POST['selection'] )
    83 		if (! empty($permalink_structure) )
    91 			$permalink_structure = $_POST['selection'];
    84 			$permalink_structure = preg_replace('#/+#', '/', '/' . $_POST['permalink_structure']);
    92 		else
    85 		$wp_rewrite->set_permalink_structure($permalink_structure);
    93 			$permalink_structure = $_POST['permalink_structure'];
    86 	}
    94 
    87 
    95 		if ( ! empty( $permalink_structure ) ) {
    88 	if ( isset($_POST['category_base']) ) {
    96 			$permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
       
    97 			if ( $prefix && $blog_prefix )
       
    98 				$permalink_structure = $prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
       
    99 			else
       
   100 				$permalink_structure = $blog_prefix . $permalink_structure;
       
   101 		}
       
   102 		$wp_rewrite->set_permalink_structure( $permalink_structure );
       
   103 	}
       
   104 
       
   105 	if ( isset( $_POST['category_base'] ) ) {
    89 		$category_base = $_POST['category_base'];
   106 		$category_base = $_POST['category_base'];
    90 		if (! empty($category_base) )
   107 		if ( ! empty( $category_base ) )
    91 			$category_base = preg_replace('#/+#', '/', '/' . $_POST['category_base']);
   108 			$category_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
    92 		$wp_rewrite->set_category_base($category_base);
   109 		$wp_rewrite->set_category_base( $category_base );
    93 	}
   110 	}
    94 
   111 
    95 	if ( isset($_POST['tag_base']) ) {
   112 	if ( isset( $_POST['tag_base'] ) ) {
    96 		$tag_base = $_POST['tag_base'];
   113 		$tag_base = $_POST['tag_base'];
    97 		if (! empty($tag_base) )
   114 		if ( ! empty( $tag_base ) )
    98 			$tag_base = preg_replace('#/+#', '/', '/' . $_POST['tag_base']);
   115 			$tag_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
    99 		$wp_rewrite->set_tag_base($tag_base);
   116 		$wp_rewrite->set_tag_base( $tag_base );
   100 	}
   117 	}
       
   118 
       
   119 	create_initial_taxonomies();
   101 }
   120 }
   102 
   121 
   103 $permalink_structure = get_option('permalink_structure');
   122 $permalink_structure = get_option('permalink_structure');
   104 $category_base = get_option('category_base');
   123 $category_base = get_option('category_base');
   105 $tag_base = get_option( 'tag_base' );
   124 $tag_base = get_option( 'tag_base' );
   119 if ( $wp_rewrite->using_index_permalinks() )
   138 if ( $wp_rewrite->using_index_permalinks() )
   120 	$usingpi = true;
   139 	$usingpi = true;
   121 else
   140 else
   122 	$usingpi = false;
   141 	$usingpi = false;
   123 
   142 
   124 $wp_rewrite->flush_rules();
   143 flush_rewrite_rules();
   125 ?>
   144 
   126 
   145 if (isset($_POST['submit'])) : ?>
   127 <?php if (isset($_POST['submit'])) : ?>
   146 <div id="message" class="updated"><p><?php
   128 <div id="message" class="updated fade"><p><?php
   147 if ( ! is_multisite() ) {
   129 if ( $iis7_permalinks ) {
   148 	if ( $iis7_permalinks ) {
   130 	if ( $permalink_structure && ! $usingpi && ! $writable )
   149 		if ( $permalink_structure && ! $usingpi && ! $writable )
   131 		_e('You should update your web.config now');
   150 			_e('You should update your web.config now.');
   132 	else if ( $permalink_structure && ! $usingpi && $writable)
   151 		else if ( $permalink_structure && ! $usingpi && $writable )
   133 		_e('Permalink structure updated. Remove write access on web.config file now!');
   152 			_e('Permalink structure updated. Remove write access on web.config file now!');
   134 	else
   153 		else
   135 		_e('Permalink structure updated');
   154 			_e('Permalink structure updated.');
       
   155 	} else {
       
   156 		if ( $permalink_structure && ! $usingpi && ! $writable )
       
   157 			_e('You should update your .htaccess now.');
       
   158 		else
       
   159 			_e('Permalink structure updated.');
       
   160 	}
   136 } else {
   161 } else {
   137 	if ( $permalink_structure && ! $usingpi && ! $writable )
   162 	_e('Permalink structure updated.');
   138 		_e('You should update your .htaccess now.');
       
   139 	else
       
   140 		_e('Permalink structure updated.');
       
   141 }
   163 }
   142 ?>
   164 ?>
   143 </p></div>
   165 </p></div>
   144 <?php endif; ?>
   166 <?php endif; ?>
   145 
   167 
   151 <?php wp_nonce_field('update-permalink') ?>
   173 <?php wp_nonce_field('update-permalink') ?>
   152 
   174 
   153   <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>
   175   <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>
   154 
   176 
   155 <?php
   177 <?php
   156 $prefix = '';
   178 if ( is_multisite() && !is_subdomain_install() && is_main_site() ) {
   157 
   179 	$permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
   158 if ( ! got_mod_rewrite() && ! $iis7_permalinks )
   180 	$category_base = preg_replace( '|^/?blog|', '', $category_base );
   159 	$prefix = '/index.php';
   181 	$tag_base = preg_replace( '|^/?blog|', '', $tag_base );
       
   182 }
   160 
   183 
   161 $structures = array(
   184 $structures = array(
   162 	'',
   185 	0 => '',
   163 	$prefix . '/%year%/%monthnum%/%day%/%postname%/',
   186 	1 => $prefix . '/%year%/%monthnum%/%day%/%postname%/',
   164 	$prefix . '/%year%/%monthnum%/%postname%/',
   187 	2 => $prefix . '/%year%/%monthnum%/%postname%/',
   165 	$prefix . '/archives/%post_id%'
   188 	3 => $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%',
   166 	);
   189 	4 => $prefix . '/%postname%/',
       
   190 );
   167 ?>
   191 ?>
   168 <h3><?php _e('Common settings'); ?></h3>
   192 <h3><?php _e('Common Settings'); ?></h3>
   169 <table class="form-table">
   193 <table class="form-table">
   170 	<tr>
   194 	<tr>
   171 		<th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
   195 		<th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
   172 		<td><code><?php echo get_option('home'); ?>/?p=123</code></td>
   196 		<td><code><?php echo get_option('home'); ?>/?p=123</code></td>
   173 	</tr>
   197 	</tr>
   174 	<tr>
   198 	<tr>
   175 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[1]); ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Day and name'); ?></label></th>
   199 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[1]); ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Day and name'); ?></label></th>
   176 		<td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td>
   200 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
   177 	</tr>
   201 	</tr>
   178 	<tr>
   202 	<tr>
   179 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[2]); ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Month and name'); ?></label></th>
   203 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[2]); ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Month and name'); ?></label></th>
   180 		<td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/sample-post/'; ?></code></td>
   204 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
   181 	</tr>
   205 	</tr>
   182 	<tr>
   206 	<tr>
   183 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[3]); ?>" class="tog" <?php checked($structures[3], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th>
   207 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[3]); ?>" class="tog" <?php checked($structures[3], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th>
   184 		<td><code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></td>
   208 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/123'; ?></code></td>
       
   209 	</tr>
       
   210 	<tr>
       
   211 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[4]); ?>" class="tog" <?php checked($structures[4], $permalink_structure); ?> /> <?php _e('Post name'); ?></label></th>
       
   212 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
   185 	</tr>
   213 	</tr>
   186 	<tr>
   214 	<tr>
   187 		<th>
   215 		<th>
   188 			<label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog"
   216 			<label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog" <?php checked( !in_array($permalink_structure, $structures) ); ?> />
   189 			<?php if ( !in_array($permalink_structure, $structures) ) { ?>
       
   190 			checked="checked"
       
   191 			<?php } ?>
       
   192 			 />
       
   193 			<?php _e('Custom Structure'); ?>
   217 			<?php _e('Custom Structure'); ?>
   194 			</label>
   218 			</label>
   195 		</th>
   219 		</th>
   196 		<td>
   220 		<td>
       
   221 			<?php echo $blog_prefix; ?>
   197 			<input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
   222 			<input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
   198 		</td>
   223 		</td>
   199 	</tr>
   224 	</tr>
   200 </table>
   225 </table>
   201 
   226 
   202 <h3><?php _e('Optional'); ?></h3>
   227 <h3><?php _e('Optional'); ?></h3>
   203 <?php if ( $is_apache || $iis7_permalinks ) : ?>
   228 <?php
   204 	<p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <kbd>topics</kbd> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
   229 $suffix = '';
   205 <?php else : ?>
   230 if ( ! $is_apache && ! $iis7_permalinks )
   206 	<p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
   231 	$suffix = 'index.php/';
   207 <?php endif; ?>
   232 ?>
       
   233 <p><?php
       
   234 /* translators: %s is a placeholder that must come at the start of the URL path. */
       
   235 printf( __('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/%stopics/uncategorized/</code>. If you leave these blank the defaults will be used.'), $suffix ); ?></p>
   208 
   236 
   209 <table class="form-table">
   237 <table class="form-table">
   210 	<tr>
   238 	<tr>
   211 		<th><label for="category_base"><?php _e('Category base'); ?></label></th>
   239 		<th><label for="category_base"><?php /* translators: prefix for category permalinks */ _e('Category base'); ?></label></th>
   212 		<td><input name="category_base" id="category_base" type="text" value="<?php echo esc_attr($category_base); ?>" class="regular-text code" /></td>
   240 		<td><?php echo $blog_prefix; ?> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /></td>
   213 	</tr>
   241 	</tr>
   214 	<tr>
   242 	<tr>
   215 		<th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
   243 		<th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
   216 		<td><input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
   244 		<td><?php echo $blog_prefix; ?> <input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
   217 	</tr>
   245 	</tr>
   218 	<?php do_settings_fields('permalink', 'optional'); ?>
   246 	<?php do_settings_fields('permalink', 'optional'); ?>
   219 </table>
   247 </table>
   220 
   248 
   221 <?php do_settings_sections('permalink'); ?>
   249 <?php do_settings_sections('permalink'); ?>
   222 
   250 
   223 <p class="submit">
   251 <?php submit_button(); ?>
   224 	<input type="submit" name="submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
       
   225 </p>
       
   226   </form>
   252   </form>
   227 <?php if ($iis7_permalinks) :
   253 <?php if ( !is_multisite() ) { ?>
   228 	if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) : 
   254 <?php if ( $iis7_permalinks ) :
       
   255 	if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) :
   229 		if ( file_exists($home_path . 'web.config') ) : ?>
   256 		if ( file_exists($home_path . 'web.config') ) : ?>
   230 <p><?php _e('If your <code>web.config</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file.') ?></p>
   257 <p><?php _e('If your <code>web.config</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file.') ?></p>
   231 <form action="options-permalink.php" method="post">
   258 <form action="options-permalink.php" method="post">
   232 <?php wp_nonce_field('update-permalink') ?>
   259 <?php wp_nonce_field('update-permalink') ?>
   233 	<p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->iis7_url_rewrite_rules()); ?></textarea></p>
   260 	<p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea></p>
   234 </form>
   261 </form>
   235 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.')  ?></p>
   262 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.') ?></p>
   236 		<?php else : ?>
   263 		<?php else : ?>
   237 <p><?php _e('If the root directory of your site were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p>
   264 <p><?php _e('If the root directory of your site were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p>
   238 <form action="options-permalink.php" method="post">
   265 <form action="options-permalink.php" method="post">
   239 <?php wp_nonce_field('update-permalink') ?>
   266 <?php wp_nonce_field('update-permalink') ?>
   240 	<p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->iis7_url_rewrite_rules(true)); ?></textarea></p>
   267 	<p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules(true) ); ?></textarea></p>
   241 </form>
   268 </form>
   242 <p><?php _e('If you temporarily make your site&#8217;s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.')  ?></p>			
   269 <p><?php _e('If you temporarily make your site&#8217;s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.') ?></p>
   243 		<?php endif; ?>
   270 		<?php endif; ?>
   244 	<?php endif; ?>
   271 	<?php endif; ?>
   245 <?php else :
   272 <?php else :
   246 	if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
   273 	if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
   247 <p><?php _e('If your <code>.htaccess</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p>
   274 <p><?php _e('If your <code>.htaccess</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p>
   248 <form action="options-permalink.php" method="post">
   275 <form action="options-permalink.php" method="post">
   249 <?php wp_nonce_field('update-permalink') ?>
   276 <?php wp_nonce_field('update-permalink') ?>
   250 	<p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>
   277 	<p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->mod_rewrite_rules() ); ?></textarea></p>
   251 </form>
   278 </form>
   252 	<?php endif; ?>
   279 	<?php endif; ?>
   253 <?php endif; ?>
   280 <?php endif; ?>
       
   281 <?php } // multisite ?>
   254 
   282 
   255 </div>
   283 </div>
   256 
   284 
   257 <?php require('./admin-footer.php'); ?>
   285 <?php require('./admin-footer.php'); ?>