<?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>John Bernard Abella [blog] &#187; Config</title>
	<atom:link href="http://www.johnbernardabella.com/tag/config/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johnbernardabella.com</link>
	<description>A System Admin&#039;s Notebook, A Programmers Journal</description>
	<lastBuildDate>Sun, 05 Feb 2012 14:13:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Getting Started with CodeIgniter</title>
		<link>http://www.johnbernardabella.com/getting-started-with-codeigniter/</link>
		<comments>http://www.johnbernardabella.com/getting-started-with-codeigniter/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 10:09:05 +0000</pubDate>
		<dc:creator>jba_21</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[CI]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Framework]]></category>

		<guid isPermaLink="false">http://www.johnbernardabella.com/2008/02/04/getting-started-with-codeigniter/</guid>
		<description><![CDATA[Actually CodeIgniter framework (CI) is nearly zero configuration. First is to put your CI files to your webserver, in this example will be using the web root directory of my webserver. Host : www.johnbernardabella.com Database : localhost Username : test Password : test After we need to modify system\application\config\config.php Look for : $config['base_url'] = '' [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Actually CodeIgniter framework (<strong>CI</strong>) is nearly zero configuration.  First is to put your CI files to your webserver, in this example will be using the web root directory of my webserver.</p>
<blockquote><p>Host : www.johnbernardabella.com<br />
Database :  localhost<br />
Username : test<br />
Password : test</p></blockquote>
<p>After we need to modify <strong>system\application\config\config.php</strong></p>
<p></p>
<p>Look for :</p>
<p><code>$config['base_url'] = ''</code></p>
<p>change to :</p>
<p><code>$config['base_url'] = "http://www.johnbernardabella.com/" //for we are using the web root of the server</code></p>
<p>Then Save.</p>
<p>Second is to open  <strong>system\application\config\database.php</strong></p>
<p><code>$db['default']['hostname'] = "localhost";     //Host of the database<br />
$db['default']['username'] = "test";             //Username of the database<br />
$db['default']['password'] = "test";             //Password of the database<br />
$db['default']['database'] = "test";             // Database Name<br />
$db['default']['dbdriver'] = "mysql";            // Database driver for this example I use mysql<br />
$db['default']['dbprefix'] = "";                          // Database prefix<br />
$db['default']['pconnect'] = FALSE;          // Connection type (pconnect of connect)</code></p>
<p>and you CI is now configured, it now able to connect the database.</p>
<p>Next topic would be tweaking defualt CI configuration.</p>
<div class="shr-publisher-10"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.johnbernardabella.com/getting-started-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

