<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    
    <channel>
    
    <title>CodeIgniter Forums</title>
    <link>http://codeigniter.com/forums/</link>
    <description>CodeIgniter Forums</description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2012</dc:rights>
    <dc:date>2012-02-13T16:37:06+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    

    <item>
      <title>redirect all http:// requests to https:// (SSL)</title>
      <link>http://codeigniter.com/forums/viewthread/210938/</link>
      <guid>http://codeigniter.com/forums/viewthread/210938/#When:16:37:06Z</guid>
      <description>&lt;p&gt;Hello, I would like all urls of my web app to use SSL (https).&lt;br /&gt;
But I can&#8217;t get it right, there is always a problem (css background&#45;images are still loading from http://).&lt;/p&gt;

&lt;p&gt;Is there a way I could do that simply with mod_rewrite ? &lt;/p&gt;

&lt;p&gt;My current htaccess is :&lt;/p&gt;

&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;IfModule&amp;nbsp;mod_rewrite&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;c&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;RewriteEngine&amp;nbsp;on&lt;br /&gt;Options&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;FollowSymLinks&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;#&amp;nbsp;Enforce&amp;nbsp;NO&amp;nbsp;www&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;RewriteCond&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;HTTP_HOST&#125;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;^&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;www&amp;nbsp;&#91;NC&#93;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;RewriteRule&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;^(.*)$&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;http&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;//neexer.com/$1&amp;nbsp;&#91;L,R=301&#93;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;###&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;Checks&amp;nbsp;to&amp;nbsp;see&amp;nbsp;if&amp;nbsp;the&amp;nbsp;user&amp;nbsp;is&amp;nbsp;attempting&amp;nbsp;to&amp;nbsp;access&amp;nbsp;a&amp;nbsp;valid&amp;nbsp;file,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;such&amp;nbsp;as&amp;nbsp;an&amp;nbsp;image&amp;nbsp;or&amp;nbsp;css&amp;nbsp;document,&amp;nbsp;if&amp;nbsp;this&amp;nbsp;isn&apos;t&amp;nbsp;true&amp;nbsp;it&amp;nbsp;sends&amp;nbsp;the&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;request&amp;nbsp;to&amp;nbsp;index.php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;RewriteCond&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;REQUEST_FILENAME&#125;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;!&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;f&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;RewriteCond&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;REQUEST_FILENAME&#125;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;!&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;d&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;RewriteRule&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;^(.*)$&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;index&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;php&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/$&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;1&amp;nbsp;&#91;L&#93;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;IfModule&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;Thank you&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <dc:date>2012-02-13T16:37:06+00:00</dc:date>
    </item>

    <item>
      <title>bug in my erb site</title>
      <link>http://codeigniter.com/forums/viewthread/210937/</link>
      <guid>http://codeigniter.com/forums/viewthread/210937/#When:16:35:55Z</guid>
      <description>&lt;p&gt;Taken from one of my friends on the site after downloading the Apache Server Home is working very well either when you press on one page shows the Link page and then page appears the beginning of the Apache server means the following link Bacon&#8217;s true, but appear Apache Home Page&lt;/p&gt;</description>
      <dc:date>2012-02-13T16:35:55+00:00</dc:date>
    </item>

    <item>
      <title>Email issue &#45; Q prep for header</title>
      <link>http://codeigniter.com/forums/viewthread/210936/</link>
      <guid>http://codeigniter.com/forums/viewthread/210936/#When:16:28:33Z</guid>
      <description>&lt;p&gt;Using utf&#45;8 / html format with the Email library, a space is added on the subject&lt;/p&gt;

&lt;p&gt;$this&#45;&amp;gt;CI&#45;&amp;gt;load&#45;&amp;gt;library(&#8216;email&#8217;);&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;set_mailtype(&#8220;html&#8221;);&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;from($fromAddress, $fromName);&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;to($toAddress);&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;reply_to($replyToAddress, $replyToName);&lt;br /&gt;
//Envoi d&#8217;un header supplémentaire avec le nom&lt;br /&gt;
//$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;subject($subject); //Bug add space un the subject !!!&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;_headers[&#8216;Subject&#8217;]= $subject; //I had to do this UGLY thing !!!&lt;br /&gt;
$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;message($bodyHTML);&lt;br /&gt;
$result=$this&#45;&amp;gt;CI&#45;&amp;gt;email&#45;&amp;gt;send($this&#45;&amp;gt;CI&#45;&amp;gt;config&#45;&amp;gt;item(&#8216;msg_success&#8217;));&lt;/p&gt;

&lt;p&gt;It seems that the issue is in Email.php:&lt;br /&gt;
public function subject($subject)&lt;br /&gt;
&#123;&lt;br /&gt;
 $subject = $this&#45;&amp;gt;_prep_q_encoding($subject);&lt;br /&gt;
 $this&#45;&amp;gt;_set_header(&#8216;Subject&#8217;, $subject);&lt;br /&gt;
 return $this;&lt;br /&gt;
&#125;&lt;/p&gt;

&lt;p&gt;In the final mail, I get&lt;br /&gt;
Subject: =?utf&#45;8?Q?Chanel_et_RABE_REGIS_vous_invitent_=c3=a0_d=c3=a9couvrir_un_co ?=&amp;nbsp; =?utf&#45;8?Q?ntenu_chanel_makeup_confidential?=&lt;br /&gt;
Instead of :&lt;br /&gt;
Subject: =?utf&#45;8?Q?Chanel_et_RABE_REGIS_vous_invitent_=c3=a0_d=c3=a9couvrir_un_contenu_chanel_makeup_confidential?=&lt;/p&gt;

&lt;p&gt;It seems that it adds a new line after 75&#45;7&#45;5 chars&lt;/p&gt;</description>
      <dc:date>2012-02-13T16:28:33+00:00</dc:date>
    </item>

    <item>
      <title>Email issue &#45; Return Path</title>
      <link>http://codeigniter.com/forums/viewthread/210935/</link>
      <guid>http://codeigniter.com/forums/viewthread/210935/#When:15:52:46Z</guid>
      <description>&lt;p&gt;Why CI forces the Return&#45;path = From ?&lt;/p&gt;

&lt;p&gt;Because in case of a backend service that send the mail through a sharing, The from is the sender mail, the Return&#45;Path must be the server&#8217;s mail so it could matche the smtp =&amp;gt; avoid blacklisting.&lt;br /&gt;
The main goal is to have sender&#8217;s address via mailer host and the reply&#45;to to the sender&#8217;s mail.&lt;/p&gt;</description>
      <dc:date>2012-02-13T15:52:46+00:00</dc:date>
    </item>

    <item>
      <title>Available for freelance work, UK based</title>
      <link>http://codeigniter.com/forums/viewthread/210934/</link>
      <guid>http://codeigniter.com/forums/viewthread/210934/#When:15:46:05Z</guid>
      <description>&lt;p&gt;I&#8217;m a full time webdev, but with 5 spare days this week I&#8217;m hawking my skills to make some extra cash. &lt;/p&gt;

&lt;p&gt;I have loads of experience in CodeIgniter, and can do the front end in HTML5 with CSS and jQuery. I&#8217;ve also touched upon the Zend framework too, and have done a bit in jQuery mobile. Although I&#8217;m used to slicing PSDs, I&#8217;m not much of a designer but willing to have a go.&lt;/p&gt;

&lt;p&gt;If you need someone dedicated with lots of experience (I&#8217;m 32) over the next few days then message me. No job too small!&lt;/p&gt;

&lt;p&gt;I&#8217;ve got some money worries and need a new car which Is why I&#8217;m posting this ad. &lt;/p&gt;

&lt;p&gt;Thanks. &lt;/p&gt;

&lt;p&gt;Mei&lt;/p&gt;</description>
      <dc:date>2012-02-13T15:46:05+00:00</dc:date>
    </item>

    <item>
      <title>Loading Controller from another Controller</title>
      <link>http://codeigniter.com/forums/viewthread/210931/</link>
      <guid>http://codeigniter.com/forums/viewthread/210931/#When:14:07:03Z</guid>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Title kinda says what I need to do.&lt;/p&gt;

&lt;p&gt;For example I have controller &#8220;main&#8221;, which also has a routing function in (to determine where certain things need to go), and it may need to go to product or blog controller etc, how can I do this?&lt;/p&gt;

&lt;p&gt;If I can make one request &#45; please do not try and question the logic behind the routing function, as there is good reasoning for it, I can assure you.&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;</description>
      <dc:date>2012-02-13T14:07:03+00:00</dc:date>
    </item>

    <item>
      <title>Dealock Error 1213</title>
      <link>http://codeigniter.com/forums/viewthread/210929/</link>
      <guid>http://codeigniter.com/forums/viewthread/210929/#When:12:44:29Z</guid>
      <description>&lt;p&gt;Hi,&lt;br /&gt;
I keep getting a deadlock on my site:&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #0000BB&quot;&gt;A&amp;nbsp;Database&amp;nbsp;Error&amp;nbsp;Occurred&lt;br /&gt;Error&amp;nbsp;Number&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;1213&lt;br /&gt;&lt;br /&gt;Deadlock&amp;nbsp;found&amp;nbsp;when&amp;nbsp;trying&amp;nbsp;to&amp;nbsp;get&amp;nbsp;lock&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&amp;nbsp;try&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;restarting&amp;nbsp;transaction&lt;br /&gt;&lt;br /&gt;UPDATE&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;`&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;adp_session&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;`&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;SET&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;`&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;last_activity&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;`&amp;nbsp;=&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;1329129920&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&amp;nbsp;`&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;session_id&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;`&amp;nbsp;=&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;5334161763893b01ac8a472075b736ee&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;WHERE&amp;nbsp;session_id&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;eac2b882436365c0cf5b48a7a49883ec&apos;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Filename&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;libraries&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Session&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;php&lt;br /&gt;&lt;br /&gt;Line&amp;nbsp;Number&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;382&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;This is starting to happen frequently.&lt;/p&gt;

&lt;p&gt;What are the different reasons something like this happens? If someone could help me.&lt;br /&gt;
Thanks.&lt;/p&gt;</description>
      <dc:date>2012-02-13T12:44:29+00:00</dc:date>
    </item>

    <item>
      <title>Callback is failed in Form Validation</title>
      <link>http://codeigniter.com/forums/viewthread/210928/</link>
      <guid>http://codeigniter.com/forums/viewthread/210928/#When:12:16:24Z</guid>
      <description>&lt;p&gt;Hi Everyone,&lt;/p&gt;

&lt;p&gt;I am new to codeigniter and i just wanna ask about a failure of executing the callback function in the form validation&lt;/p&gt;

&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #0000BB&quot;&gt;$validation_rule&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;nbsp;array(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;array(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;field&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;username&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;label&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;Username&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;rules&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;required|callback_unique_username&apos;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;),&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;array(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;field&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;email&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;label&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;Email&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;rules&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;required|valid_email&apos;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;),&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;array(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;field&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;password&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;label&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;Password&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;rules&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;required|callback_same_password&#91;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;CI&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;post&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;confpassword&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;).&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;&#93;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;),&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;array(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;field&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;confpassword&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;label&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;Confirm&amp;nbsp;Password&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;rules&apos;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;required|callback_same_password&#91;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;CI&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;post&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;confpassword&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;).&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;&#93;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;);&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;In Fact, the above are validation rules of a form and you are able to see i put callback_unique_username in the rule of username, where callback_unique_username is&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #007700&quot;&gt;function&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;unique_username&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$str&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;CI&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;form_validation&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;set_message&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;unique_username&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;The&amp;nbsp;%s&amp;nbsp;field&amp;nbsp;can&amp;nbsp;not&amp;nbsp;be&amp;nbsp;the&amp;nbsp;word&amp;nbsp;&quot;test&quot;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;FALSE&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;This Callback validation function is just a test function, in which it gives a error message anyway. However, the error message isn&#8217;t shown in validation_errors().&lt;br /&gt;
Could any guys tell me what&#8217;s going wrong? Thanks.&lt;/p&gt;</description>
      <dc:date>2012-02-13T12:16:24+00:00</dc:date>
    </item>

    <item>
      <title>Passing data around from view to view unlimited number of times without rebuilding the data array</title>
      <link>http://codeigniter.com/forums/viewthread/210925/</link>
      <guid>http://codeigniter.com/forums/viewthread/210925/#When:09:48:25Z</guid>
      <description>&lt;p&gt;I&#8217;m loading views from within views multiple times and to avoid rebuilding the data array i create a self&#45;reference to it.&lt;/p&gt;

&lt;p&gt;$data=array();&lt;br /&gt;
$data[&#8216;data&#8217;]=&amp;amp;$data;&lt;/p&gt;

&lt;p&gt;then set some other values&lt;/p&gt;

&lt;p&gt;$data[&#8217; .. &#8216;]= ...&lt;/p&gt;

&lt;p&gt;then load the view&lt;/p&gt;

&lt;p&gt;$this&#45;&amp;gt;load&#45;&amp;gt;view(&#8216;view1&#8217;,$data);&lt;/p&gt;

&lt;p&gt;Inside view1 i have&lt;br /&gt;
&amp;lt;?php $this&#45;&amp;gt;load&#45;&amp;gt;view(&#8216;view2&#8217;,$data); ?&amp;gt;&lt;/p&gt;

&lt;p&gt;Inside view2 i have&lt;br /&gt;
&amp;lt;?php $this&#45;&amp;gt;load&#45;&amp;gt;view(&#8216;view3&#8217;,$data); ?&amp;gt;&lt;/p&gt;

&lt;p&gt;And in view3 i use some of the variables in $data.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font&#45;size:14px;&quot;&gt;My question is: are there any reasons not to use this method?&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
Code example below:&lt;/p&gt;

&lt;p&gt;Controller&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #007700&quot;&gt;function&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;index&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;()&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&lt;br /&gt;&amp;nbsp;$data&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=array();&lt;br /&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;data&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;//&amp;nbsp;self&amp;nbsp;reference&amp;nbsp;that&amp;nbsp;i&amp;nbsp;use&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;page_title&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;title&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;footer_text&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;bye&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;js_files&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=array();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;js_files&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&#91;&#93;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;/etc/main.js&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;//etc..&lt;br /&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;load&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;view&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;page/index.php&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;View: page/index.php&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #0000BB&quot;&gt;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;load&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;view&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;layout/header.php&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;...&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;b&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;main&amp;nbsp;body&amp;nbsp;html&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;b&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;...&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;View: layout/header.php&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;head&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;title&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;if(isset(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$page_title&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;))&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$page_title&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;else&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;&amp;nbsp;Default&amp;nbsp;Title&amp;nbsp;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&amp;nbsp;?&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;title&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&amp;nbsp;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;if(isset(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$js_files&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;is_array&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$js_files&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;))&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;load&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;view&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;layout/js_files.php&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$data&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&amp;nbsp;&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;head&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;body&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;&lt;br /&gt;
&lt;b&gt;Thank you for your time!&lt;/b&gt;&lt;/p&gt;</description>
      <dc:date>2012-02-13T09:48:25+00:00</dc:date>
    </item>

    <item>
      <title>session Error</title>
      <link>http://codeigniter.com/forums/viewthread/210922/</link>
      <guid>http://codeigniter.com/forums/viewthread/210922/#When:07:29:45Z</guid>
      <description>&lt;p&gt;while running the project as localhost[ in my local machine] it shows a warning like this&lt;/p&gt;

&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;
&lt;span style=&quot;color: #0000BB&quot;&gt;A&amp;nbsp;PHP&amp;nbsp;Error&amp;nbsp;was&amp;nbsp;encountered&lt;br /&gt;&lt;br /&gt;Severity&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Warning&lt;br /&gt;&lt;br /&gt;Message&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Cannot&amp;nbsp;modify&amp;nbsp;header&amp;nbsp;information&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;headers&amp;nbsp;already&amp;nbsp;sent&amp;nbsp;by&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;output&amp;nbsp;started&amp;nbsp;at&amp;nbsp;C&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;\xampp\htdocs\classic\system\libraries\Exceptions&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;php&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;164&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Filename&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;libraries&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Session&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;php&lt;br /&gt;&lt;br /&gt;Line&amp;nbsp;Number&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;662&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;in server it runs fine. no session warning.&lt;/p&gt;

&lt;p&gt;i checked each and every pages of my code, is there any white space before &amp;lt;?php or after ?&amp;gt;&lt;br /&gt;
everything is fine.&lt;br /&gt;
my project will become live very soon. so i fear that is this code generate any session warning in server.&lt;br /&gt;
if it generate any problem my project will cancel&#8230;&lt;/p&gt;

&lt;p&gt;so i am in big trouble can anyone help me????&lt;br /&gt;
thanks in advance&#8230;.......&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <dc:date>2012-02-13T07:29:45+00:00</dc:date>
    </item>

    
    </channel>
</rss>
