<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using Images, Scripts, CSS inside Code Igniter</title>
	<atom:link href="http://www.wallwisher.com/2008/05/08/using-images-scripts-css-inside-code-igniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wallwisher.com/blog/2008/05/08/using-images-scripts-css-inside-code-igniter/</link>
	<description>what&#039;s up @ wallwisher?</description>
	<lastBuildDate>Fri, 26 Feb 2010 21:22:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: temptemp</title>
		<link>http://www.wallwisher.com/blog/2008/05/08/using-images-scripts-css-inside-code-igniter/comment-page-1/#comment-3080</link>
		<dc:creator>temptemp</dc:creator>
		<pubDate>Sun, 07 Feb 2010 07:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.wallwisher.com/blog/?p=31#comment-3080</guid>
		<description>I already looked everywhere and found related answers over and over BUT they all are incomprehensive for beginners. Meaning....inconsistency and abstract. Sorry folks but really very disappointing. I think you should specify what files are to changed (ie, config.php, etc), where and what to put. Or you can just post a very simple webpage with such example - i think that won&#039;t be a burden. LIKE (you can make a php for controller and view [except maybe for model since you need more knowledge on database] and put css and instruct where to place css, what codes are to be placed in .phps to link the css.....), isn&#039;t that simple?</description>
		<content:encoded><![CDATA[<p>I already looked everywhere and found related answers over and over BUT they all are incomprehensive for beginners. Meaning&#8230;.inconsistency and abstract. Sorry folks but really very disappointing. I think you should specify what files are to changed (ie, config.php, etc), where and what to put. Or you can just post a very simple webpage with such example &#8211; i think that won&#8217;t be a burden. LIKE (you can make a php for controller and view [except maybe for model since you need more knowledge on database] and put css and instruct where to place css, what codes are to be placed in .phps to link the css&#8230;..), isn&#8217;t that simple?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admiral Potato</title>
		<link>http://www.wallwisher.com/blog/2008/05/08/using-images-scripts-css-inside-code-igniter/comment-page-1/#comment-2686</link>
		<dc:creator>Admiral Potato</dc:creator>
		<pubDate>Wed, 06 Jan 2010 04:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.wallwisher.com/blog/?p=31#comment-2686</guid>
		<description>Please forgive me if i&#039;ve completely misunderstood the objective of this post, but...
The solution to this issue ( as I understand it ) is REALLY, REALLY easy.
The solution is the HTML  tag.
Check out some documentation on it here:

http://www.w3schools.com/TAGS/tag_base.asp

I implemented the  tag like this for my site, and if you&#039;ve set the $config[&#039;base_url&#039;] variable in your system/application/config/config.php file, it should work for you too.

	&lt;base href=&quot;config-&gt;item(&#039;base_url&#039;)?&gt;&quot; /&gt;

Basically, you just put this in the  of your view document before your HTML tells the browser to load anything else, and no matter how complex the URL gets, the browsers viewing your pages will look for all of their assets relative to that location.

Just remember that if you are going to be using any assets in the folder that your system folder is sitting in,  and you&#039;re using the stock .htaccess file to remove the index.php portion of your URLs, you will need to change that .htaccess file to specifically allow browsers access to the real files and folders you will be placing in your $config[&#039;base_url&#039;] directory.

Example? This:
RewriteCond $1 !^(index\.php&#124;images&#124;robots\.txt)

Might turn into this:
RewriteCond $1 !^(index\.php&#124;images&#124;img&#124;javascript&#124;fonts&#124;content&#124;images&#124;styles.css&#124;layout.html&#124;robots\.txt)

Again, I apologize if I was completely off-topic and didn&#039;t understand the intent or goal of this post, but I hope that this was able to help /someone/ out there!</description>
		<content:encoded><![CDATA[<p>Please forgive me if i&#8217;ve completely misunderstood the objective of this post, but&#8230;<br />
The solution to this issue ( as I understand it ) is REALLY, REALLY easy.<br />
The solution is the HTML  tag.<br />
Check out some documentation on it here:</p>
<p><a href="http://www.w3schools.com/TAGS/tag_base.asp" rel="nofollow">http://www.w3schools.com/TAGS/tag_base.asp</a></p>
<p>I implemented the  tag like this for my site, and if you&#8217;ve set the $config['base_url'] variable in your system/application/config/config.php file, it should work for you too.</p>
<p>	&lt;base href=&quot;config-&gt;item(&#8216;base_url&#8217;)?&gt;&#8221; /&gt;</p>
<p>Basically, you just put this in the  of your view document before your HTML tells the browser to load anything else, and no matter how complex the URL gets, the browsers viewing your pages will look for all of their assets relative to that location.</p>
<p>Just remember that if you are going to be using any assets in the folder that your system folder is sitting in,  and you&#8217;re using the stock .htaccess file to remove the index.php portion of your URLs, you will need to change that .htaccess file to specifically allow browsers access to the real files and folders you will be placing in your $config['base_url'] directory.</p>
<p>Example? This:<br />
RewriteCond $1 !^(index\.php|images|robots\.txt)</p>
<p>Might turn into this:<br />
RewriteCond $1 !^(index\.php|images|img|javascript|fonts|content|images|styles.css|layout.html|robots\.txt)</p>
<p>Again, I apologize if I was completely off-topic and didn&#8217;t understand the intent or goal of this post, but I hope that this was able to help /someone/ out there!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sky</title>
		<link>http://www.wallwisher.com/blog/2008/05/08/using-images-scripts-css-inside-code-igniter/comment-page-1/#comment-301</link>
		<dc:creator>sky</dc:creator>
		<pubDate>Thu, 25 Dec 2008 14:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.wallwisher.com/blog/?p=31#comment-301</guid>
		<description>can you give me some script for implementation in controller n view??

Thank u</description>
		<content:encoded><![CDATA[<p>can you give me some script for implementation in controller n view??</p>
<p>Thank u</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Safique</title>
		<link>http://www.wallwisher.com/blog/2008/05/08/using-images-scripts-css-inside-code-igniter/comment-page-1/#comment-150</link>
		<dc:creator>Safique</dc:creator>
		<pubDate>Mon, 21 Jul 2008 04:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.wallwisher.com/blog/?p=31#comment-150</guid>
		<description>Example could be more fruitful if implementation was also shown for us(beginner)</description>
		<content:encoded><![CDATA[<p>Example could be more fruitful if implementation was also shown for us(beginner)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
