<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ruben Sargsyan &#187; installation</title>
	<atom:link href="http://rubensargsyan.com/tag/installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubensargsyan.com</link>
	<description>Personal Website</description>
	<lastBuildDate>Thu, 01 Dec 2011 19:15:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Automatically activating theme after WordPress installation</title>
		<link>http://rubensargsyan.com/automatically-activating-theme-after-wordpress-installation/</link>
		<comments>http://rubensargsyan.com/automatically-activating-theme-after-wordpress-installation/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 16:57:35 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[automatically]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=399</guid>
		<description><![CDATA[To activate the theme that you want to be activated automatically after WordPress (version 3.0 and more) installation, copy that theme to the /wp-content/themes/ directory, then open the file default-constants.php from the directory /wp-includes/ and in the function wp_templating_constants change the value of WP_DEFAULT_THEME to the name of the theme directory. Example: define( &#8216;WP_DEFAULT_THEME&#8217;, &#8216;mortgage&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>To activate the theme that you want to be activated automatically after WordPress (version 3.0 and more) installation, copy that theme to the /wp-content/themes/ directory, then<span id="more-399"></span> open the file default-constants.php from the directory /wp-includes/ and in the function wp_templating_constants change the value of WP_DEFAULT_THEME to the name of the theme directory.</p>
<p>Example:<br />
define( &#8216;WP_DEFAULT_THEME&#8217;, &#8216;mortgage&#8217; );</p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/automatically-activating-theme-after-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Automatically set permalink custom structure after WordPress installation</title>
		<link>http://rubensargsyan.com/automatically-set-permalink-custom-structure-after-wordpress-installation/</link>
		<comments>http://rubensargsyan.com/automatically-set-permalink-custom-structure-after-wordpress-installation/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:28:23 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[automatically]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[permalink structure]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=374</guid>
		<description><![CDATA[For setting the permalink structure that you want to be set automatically after WordPress installation, open the file schema.php from the directory /wp-admin/includes/ and set the value of permalink_structure of the array $options of the function populate_options that structure which you want to be set. Then open the file upgrade.php from the same directory and [...]]]></description>
			<content:encoded><![CDATA[<p>For setting the permalink structure that you want to be set automatically after WordPress installation, open the file<span id="more-374"></span> schema.php from the directory /wp-admin/includes/ and set the value of permalink_structure of the array $options of the function populate_options that structure which you want to be set. Then open the file upgrade.php from the same directory and add $wp_rewrite->set_permalink_structure(get_option(&#8220;permalink_structure&#8221;)); just before $wp_rewrite->flush_rules(); in the function wp_install.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/automatically-set-permalink-custom-structure-after-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic activating plugins after WordPress installation</title>
		<link>http://rubensargsyan.com/automatic-activating-plugins-after-wordpress-installation/</link>
		<comments>http://rubensargsyan.com/automatic-activating-plugins-after-wordpress-installation/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:15:54 +0000</pubDate>
		<dc:creator>Ruben Sargsyan</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[activate]]></category>
		<category><![CDATA[automatically]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://rubensargsyan.com/?p=334</guid>
		<description><![CDATA[To activate the plugins that you want to be activated automatically after WordPress installation, copy those plugins to the /wp-content/plugins/ directory, then open the file schema.php from the directory /wp-admin/includes/ and add the plugins main files names in the active_plugins array which is in the $options array of the function populate_options. Example: &#8230; &#8216;active_plugins&#8217; => [...]]]></description>
			<content:encoded><![CDATA[<p>To activate the plugins that you want to be activated automatically after WordPress installation, copy those plugins to the /wp-content/plugins/ directory, then<span id="more-334"></span> open the file schema.php from the directory /wp-admin/includes/ and add the plugins main files names in the active_plugins array which is in the $options array of the function populate_options.</p>
<p>Example:<br />
&#8230;<br />
&#8216;active_plugins&#8217; => array(&#8220;explanatory-dictionary/explanatory-dictionary.php&#8221;,&#8221;most-commenting-visitors/most-commenting-visitors.php&#8221;,&#8221;greetings/greetings.php&#8221;,&#8221;running-line/running-line.php&#8221;,&#8221;subscribe-to-author-posts-feed/subscribe-to-author-posts-feed.php&#8221;),<br />
&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://rubensargsyan.com/automatic-activating-plugins-after-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

