<?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-05-25T04:50:43+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    

    <item>
      <title>Failed opening required &#8216;application/xe8x17xa5x01x01&#8217; (Constants.php)</title>
      <link>http://codeigniter.com/forums/viewthread/217927/</link>
      <guid>http://codeigniter.com/forums/viewthread/217927/#When:04:50:43Z</guid>
      <description>&lt;p&gt;I&#8217;m working on a CodeIgniter application locally on my MacbookPro, and every so often I&#8217;ll get a 500 error when I refresh a page. If I refresh again (after the 500) I get the page I wanted. This has happened to me on two different applications, and after tailing the log, this is what I found:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;PHP Fatal error:&amp;nbsp; require(): Failed opening required &#8216;application/\xe8\x17\xa5\x01\x01&#8217; (include_path=&#8217;.:&#8217;) in [...]/system/core/CodeIgniter.php on line 64&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;line 64 is:&amp;nbsp; &lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;require(APPPATH.&#8216;config/constants.php&#8217;);&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;br /&gt;
I have no clue what&#8217;s going on here. I looked at constants.php and did a bunch of googling, but I couldn&#8217;t find a cause/answer.&lt;/p&gt;

&lt;p&gt;Has anyone run into this issue? I can replicate this pretty easily by just refreshing the page in succession a few times. Also, it&#8217;s not confined to one page, and the log only spits out one (the same as above) error.&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <dc:date>2012-05-25T04:50:43+00:00</dc:date>
    </item>

    <item>
      <title>How to create thumbnail of an video file.</title>
      <link>http://codeigniter.com/forums/viewthread/217926/</link>
      <guid>http://codeigniter.com/forums/viewthread/217926/#When:04:35:47Z</guid>
      <description>&lt;p&gt;Hello all &lt;br /&gt;
I need help to create thumbnail of an video. I am working on a videos related site in which i have to create thumbnail of an uploaded video. &lt;br /&gt;
Any one has done this kind of functionality in Codeigniter. There are lots of classes available but before using this i need to know is this possible in Codeigniter or not.&lt;/p&gt;

&lt;p&gt;IF anyone have any inbuilt code of library or helper please provide me, it will help me a lot and will save my time too. &lt;/p&gt;

&lt;p&gt;Your programmer friend.&lt;/p&gt;</description>
      <dc:date>2012-05-25T04:35:47+00:00</dc:date>
    </item>

    <item>
      <title>Creating variables of type (class)</title>
      <link>http://codeigniter.com/forums/viewthread/217925/</link>
      <guid>http://codeigniter.com/forums/viewthread/217925/#When:04:30:15Z</guid>
      <description>&lt;p&gt;Hi, Ultra newb question,&lt;/p&gt;

&lt;p&gt;I want to create a custom class that will be used in models, views and controllers. I will be creating instances of this class in many non member functions. Where do I define this class to be available everywhere?&lt;/p&gt;

&lt;p&gt;Note: I am less interested in methods, however, I am dealing with complex data and need to use lots of properties. I want to create instances of this class in many non member functions. &lt;/p&gt;

&lt;p&gt;Thanks for the help.&lt;/p&gt;</description>
      <dc:date>2012-05-25T04:30:15+00:00</dc:date>
    </item>

    <item>
      <title>PROCEDURE#4</title>
      <link>http://codeigniter.com/forums/viewthread/217924/</link>
      <guid>http://codeigniter.com/forums/viewthread/217924/#When:04:13:21Z</guid>
      <description>&lt;p&gt;Please tell me if this installation procedure is right:&lt;/p&gt;

&lt;p&gt;1&#45;I uploaded the dir CodeIgniter_2.1.0 to root/home moving index.php to root level&lt;/p&gt;

&lt;p&gt;2&#45;I edited config,php this way:&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Base Site URL&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| URL to your CodeIgniter root. Typically this will be your base URL,&lt;br /&gt;
| WITH a trailing slash:&lt;br /&gt;
|&lt;br /&gt;
| http://example.com/&lt;br /&gt;
|&lt;br /&gt;
| If this is not set then CodeIgniter will guess the protocol, domain and&lt;br /&gt;
| path to your installation.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘base_url’] = ‘/root/home’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Index File&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| Typically this will be your index.php file, unless you’ve renamed it to&lt;br /&gt;
| something else. If you are using mod_rewrite to remove the page set this&lt;br /&gt;
| variable so that it is blank.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘index_page’] = ‘/root/index.php’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;3&#45; I edited index,php moving it to root level this way:&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION ENVIRONMENT&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* You can load different configurations depending on your&lt;br /&gt;
* current environment. Setting the environment also influences&lt;br /&gt;
* things like logging and error reporting.&lt;br /&gt;
*&lt;br /&gt;
* This can be set to anything, but default usage is:&lt;br /&gt;
*&lt;br /&gt;
*&amp;nbsp;   development&lt;br /&gt;
*&amp;nbsp;   testing&lt;br /&gt;
*&amp;nbsp;   production&lt;br /&gt;
*&lt;br /&gt;
* NOTE: If you change these, also change the error_reporting() code below&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
define(‘PRODUCTION’, ‘development’);&lt;br /&gt;
/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* ERROR REPORTING&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* Different environments will require different levels of error reporting.&lt;br /&gt;
* By default development will show errors but testing and live will hide them.&lt;br /&gt;
*/&lt;/p&gt;

&lt;p&gt;if (defined(‘PRODUCTION’))&lt;br /&gt;
&#123;&lt;br /&gt;
switch (ENVIRONMENT)&lt;br /&gt;
&#123;&lt;br /&gt;
&amp;nbsp; case ‘development’:&lt;br /&gt;
&amp;nbsp; error_reporting(E_ALL);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; case ‘testing’:&lt;br /&gt;
&amp;nbsp; case ‘production’:&lt;br /&gt;
&amp;nbsp; error_reporting(0);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; default:&lt;br /&gt;
&amp;nbsp; exit(‘The application environment is not set correctly.’);&lt;br /&gt;
&#125;&lt;br /&gt;
&#125;&lt;/p&gt;

&lt;p&gt;/*&lt;/p&gt;

&lt;p&gt;*———————————————————————————————&#45;&lt;br /&gt;
* SYSTEM FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* This variable must contain the name of your “system” folder.&lt;br /&gt;
* Include the path if the folder is not in the same directory&lt;br /&gt;
* as this file.&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$system_path = ‘/root/home/CodeIgniter_2.1.0/system’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* If you want this front controller to use a different “application”&lt;br /&gt;
* folder then the default one you can set its name here. The folder&lt;br /&gt;
* can also be renamed or relocated anywhere on your server.&amp;nbsp; If&lt;br /&gt;
* you do, use a full server path. For more info please see the user guide:&lt;br /&gt;
* http://codeigniter.com/user_guide/general/managing_apps.html&lt;br /&gt;
*&lt;br /&gt;
* NO TRAILING SLASH!&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$application_folder = ‘/root/home/CodeIgniter_2.1.0/application’;&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
NOTES FROM OP&lt;br /&gt;
Maybe it should be just&lt;br /&gt;
$system_path = &#8216;system&#8217;;&lt;br /&gt;
and&lt;br /&gt;
$system_path = &#8216;system&#8217;;&lt;br /&gt;
since I never moved them from root/home&lt;/p&gt;

&lt;p&gt;You can refer to this other procedures too&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217919/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217922/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217923/&lt;/p&gt;</description>
      <dc:date>2012-05-25T04:13:21+00:00</dc:date>
    </item>

    <item>
      <title>PROCEDURE#3</title>
      <link>http://codeigniter.com/forums/viewthread/217923/</link>
      <guid>http://codeigniter.com/forums/viewthread/217923/#When:03:57:24Z</guid>
      <description>&lt;p&gt;Please tell me if this installation procedure is right:&lt;/p&gt;

&lt;p&gt;1&#45;I uploaded the dir CodeIgniter_2.1.0 to root/home moving index.php to root level&lt;/p&gt;

&lt;p&gt;2&#45;I edited config,php this way:&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Base Site URL&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| URL to your CodeIgniter root. Typically this will be your base URL,&lt;br /&gt;
| WITH a trailing slash:&lt;br /&gt;
|&lt;br /&gt;
| http://example.com/&lt;br /&gt;
|&lt;br /&gt;
| If this is not set then CodeIgniter will guess the protocol, domain and&lt;br /&gt;
| path to your installation.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘base_url’] = ‘mydomain.biz/root/home’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Index File&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| Typically this will be your index.php file, unless you’ve renamed it to&lt;br /&gt;
| something else. If you are using mod_rewrite to remove the page set this&lt;br /&gt;
| variable so that it is blank.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘index_page’] = ‘mydomain.biz/root/index.php’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;3&#45; I edited index,moving it to root this way:&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION ENVIRONMENT&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* You can load different configurations depending on your&lt;br /&gt;
* current environment. Setting the environment also influences&lt;br /&gt;
* things like logging and error reporting.&lt;br /&gt;
*&lt;br /&gt;
* This can be set to anything, but default usage is:&lt;br /&gt;
*&lt;br /&gt;
*&amp;nbsp;   development&lt;br /&gt;
*&amp;nbsp;   testing&lt;br /&gt;
*&amp;nbsp;   production&lt;br /&gt;
*&lt;br /&gt;
* NOTE: If you change these, also change the error_reporting() code below&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
define(‘production’, ‘development’);&lt;br /&gt;
/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* ERROR REPORTING&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* Different environments will require different levels of error reporting.&lt;br /&gt;
* By default development will show errors but testing and live will hide them.&lt;br /&gt;
*/&lt;/p&gt;

&lt;p&gt;if (defined(‘production’))&lt;br /&gt;
&#123;&lt;br /&gt;
switch (ENVIRONMENT)&lt;br /&gt;
&#123;&lt;br /&gt;
&amp;nbsp; case ‘development’:&lt;br /&gt;
&amp;nbsp; error_reporting(E_ALL);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; case ‘testing’:&lt;br /&gt;
&amp;nbsp; case ‘production’:&lt;br /&gt;
&amp;nbsp; error_reporting(0);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; default:&lt;br /&gt;
&amp;nbsp; exit(‘The application environment is not set correctly.’);&lt;br /&gt;
&#125;&lt;br /&gt;
&#125;&lt;/p&gt;

&lt;p&gt;/*&lt;/p&gt;

&lt;p&gt;*———————————————————————————————&#45;&lt;br /&gt;
* SYSTEM FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* This variable must contain the name of your “system” folder.&lt;br /&gt;
* Include the path if the folder is not in the same directory&lt;br /&gt;
* as this file.&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$system_path = ‘mydomain.biz/root/home/CodeIgniter_2.1.0/system’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* If you want this front controller to use a different “application”&lt;br /&gt;
* folder then the default one you can set its name here. The folder&lt;br /&gt;
* can also be renamed or relocated anywhere on your server.&amp;nbsp; If&lt;br /&gt;
* you do, use a full server path. For more info please see the user guide:&lt;br /&gt;
* http://codeigniter.com/user_guide/general/managing_apps.html&lt;br /&gt;
*&lt;br /&gt;
* NO TRAILING SLASH!&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$application_folder = ‘mydomain.biz/root/home/CodeIgniter_2.1.0/application’;&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
NOTES FROM OP&lt;br /&gt;
Altering database file is not meant on all cases or does it have to be added the database&lt;br /&gt;
of the script that is using code igniter?&lt;/p&gt;

&lt;p&gt;You can refer to this other prodedures too&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217919/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217922/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217924/&lt;/p&gt;</description>
      <dc:date>2012-05-25T03:57:24+00:00</dc:date>
    </item>

    <item>
      <title>PROCEDURE#2</title>
      <link>http://codeigniter.com/forums/viewthread/217922/</link>
      <guid>http://codeigniter.com/forums/viewthread/217922/#When:03:48:16Z</guid>
      <description>&lt;p&gt;Please tell me if this installation procedure is right:&lt;/p&gt;

&lt;p&gt;1&#45;I uploaded the dir CodeIgniter_2.1.0 to root/home keeping index.php without moving&lt;/p&gt;

&lt;p&gt;2&#45;I edited config,php this way:&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Base Site URL&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| URL to your CodeIgniter root. Typically this will be your base URL,&lt;br /&gt;
| WITH a trailing slash:&lt;br /&gt;
|&lt;br /&gt;
| http://example.com/&lt;br /&gt;
|&lt;br /&gt;
| If this is not set then CodeIgniter will guess the protocol, domain and&lt;br /&gt;
| path to your installation.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘base_url’] = ‘/root/home’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
| Index File&lt;br /&gt;
|—————————————————————————————————————&lt;br /&gt;
|&lt;br /&gt;
| Typically this will be your index.php file, unless you’ve renamed it to&lt;br /&gt;
| something else. If you are using mod_rewrite to remove the page set this&lt;br /&gt;
| variable so that it is blank.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[‘index_page’] = ‘/root/home/CodeIgniter_2.1.0/index.php’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|—————————————————————————————————————&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;3&#45; I edited index,php without moving it from root/home/CodeIgniter_2.1.0/ this way:&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION ENVIRONMENT&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* You can load different configurations depending on your&lt;br /&gt;
* current environment. Setting the environment also influences&lt;br /&gt;
* things like logging and error reporting.&lt;br /&gt;
*&lt;br /&gt;
* This can be set to anything, but default usage is:&lt;br /&gt;
*&lt;br /&gt;
*&amp;nbsp;   development&lt;br /&gt;
*&amp;nbsp;   testing&lt;br /&gt;
*&amp;nbsp;   production&lt;br /&gt;
*&lt;br /&gt;
* NOTE: If you change these, also change the error_reporting() code below&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
define(‘production’, ‘development’);&lt;br /&gt;
/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* ERROR REPORTING&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* Different environments will require different levels of error reporting.&lt;br /&gt;
* By default development will show errors but testing and live will hide them.&lt;br /&gt;
*/&lt;/p&gt;

&lt;p&gt;if (defined(‘production’))&lt;br /&gt;
&#123;&lt;br /&gt;
switch (production)&lt;br /&gt;
&#123;&lt;br /&gt;
&amp;nbsp; case ‘development’:&lt;br /&gt;
&amp;nbsp; error_reporting(E_ALL);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; case ‘testing’:&lt;br /&gt;
&amp;nbsp; case ‘production’:&lt;br /&gt;
&amp;nbsp; error_reporting(0);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; default:&lt;br /&gt;
&amp;nbsp; exit(‘The application environment is not set correctly.’);&lt;br /&gt;
&#125;&lt;br /&gt;
&#125;&lt;/p&gt;

&lt;p&gt;/*&lt;/p&gt;

&lt;p&gt;*———————————————————————————————&#45;&lt;br /&gt;
* SYSTEM FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* This variable must contain the name of your “system” folder.&lt;br /&gt;
* Include the path if the folder is not in the same directory&lt;br /&gt;
* as this file.&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$system_path = ‘root/home/CodeIgniter_2.1.0/system’;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
* APPLICATION FOLDER NAME&lt;br /&gt;
*———————————————————————————————&#45;&lt;br /&gt;
*&lt;br /&gt;
* If you want this front controller to use a different “application”&lt;br /&gt;
* folder then the default one you can set its name here. The folder&lt;br /&gt;
* can also be renamed or relocated anywhere on your server.&amp;nbsp; If&lt;br /&gt;
* you do, use a full server path. For more info please see the user guide:&lt;br /&gt;
* http://codeigniter.com/user_guide/general/managing_apps.html&lt;br /&gt;
*&lt;br /&gt;
* NO TRAILING SLASH!&lt;br /&gt;
*&lt;br /&gt;
*/&lt;br /&gt;
$application_folder = ‘/root/home/CodeIgniter_2.1.0/application’;&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
NOTES FROM OP&lt;br /&gt;
In this procedure I left index.php without moving as stated avobe&lt;/p&gt;

&lt;p&gt;You can also refer to this other procedures&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217919/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217923/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217924/&lt;/p&gt;</description>
      <dc:date>2012-05-25T03:48:16+00:00</dc:date>
    </item>

    <item>
      <title>PROCEDURE #1</title>
      <link>http://codeigniter.com/forums/viewthread/217919/</link>
      <guid>http://codeigniter.com/forums/viewthread/217919/#When:03:34:05Z</guid>
      <description>&lt;p&gt;Please tell me if this installation procedure is right:&lt;/p&gt;

&lt;p&gt;1&#45;I uploaded the dir CodeIgniter_2.1.0 to root/home keeping index.php without moving&lt;/p&gt;



&lt;p&gt;2&#45;I edited config,php this way:&lt;br /&gt;
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&lt;br /&gt;
| Base Site URL&lt;br /&gt;
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&lt;br /&gt;
|&lt;br /&gt;
| URL to your CodeIgniter root. Typically this will be your base URL,&lt;br /&gt;
| WITH a trailing slash:&lt;br /&gt;
|&lt;br /&gt;
| http://example.com/&lt;br /&gt;
|&lt;br /&gt;
| If this is not set then CodeIgniter will guess the protocol, domain and&lt;br /&gt;
| path to your installation.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[&#8216;base_url&#8217;] = &#8216;mydomain.biz/root/home&#8217;;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&lt;br /&gt;
| Index File&lt;br /&gt;
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&lt;br /&gt;
|&lt;br /&gt;
| Typically this will be your index.php file, unless you&#8217;ve renamed it to&lt;br /&gt;
| something else. If you are using mod_rewrite to remove the page set this&lt;br /&gt;
| variable so that it is blank.&lt;br /&gt;
|&lt;br /&gt;
*/&lt;br /&gt;
$config[&#8216;index_page&#8217;] = &#8216;mydomain.biz/root/home/CodeIgniter_2.1.0/index.php&#8217;;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;3&#45; I edited index,php without moving it from root/home/CodeIgniter_2.1.0/ this way:&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 * APPLICATION ENVIRONMENT&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 *&lt;br /&gt;
 * You can load different configurations depending on your&lt;br /&gt;
 * current environment. Setting the environment also influences&lt;br /&gt;
 * things like logging and error reporting.&lt;br /&gt;
 *&lt;br /&gt;
 * This can be set to anything, but default usage is:&lt;br /&gt;
 *&lt;br /&gt;
 *&amp;nbsp;  &amp;nbsp; development&lt;br /&gt;
 *&amp;nbsp;  &amp;nbsp; testing&lt;br /&gt;
 *&amp;nbsp;  &amp;nbsp; production&lt;br /&gt;
 *&lt;br /&gt;
 * NOTE: If you change these, also change the error_reporting() code below&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
 define(&#8216;PRODUCTION&#8217;, &#8216;development&#8217;);&lt;br /&gt;
/*&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 * ERROR REPORTING&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 *&lt;br /&gt;
 * Different environments will require different levels of error reporting.&lt;br /&gt;
 * By default development will show errors but testing and live will hide them.&lt;br /&gt;
 */&lt;/p&gt;

&lt;p&gt;if (defined(&#8216;PRODUCTION&#8217;))&lt;br /&gt;
&#123;&lt;br /&gt;
 switch (PRODUCTION)&lt;br /&gt;
 &#123;&lt;br /&gt;
&amp;nbsp; case &#8216;development&#8217;:&lt;br /&gt;
&amp;nbsp;  error_reporting(E_ALL);&lt;br /&gt;
&amp;nbsp; break;&lt;br /&gt;
 &lt;br /&gt;
&amp;nbsp; case &#8216;testing&#8217;:&lt;br /&gt;
&amp;nbsp; case &#8216;production&#8217;:&lt;br /&gt;
&amp;nbsp;  error_reporting(0);&lt;br /&gt;
&amp;nbsp; break;&lt;/p&gt;

&lt;p&gt;&amp;nbsp; default:&lt;br /&gt;
&amp;nbsp;  exit(&#8216;The application environment is not set correctly.&#8217;);&lt;br /&gt;
 &#125;&lt;br /&gt;
&#125;&lt;/p&gt;

&lt;p&gt;/*&lt;/p&gt;

&lt;p&gt;*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 * SYSTEM FOLDER NAME&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 *&lt;br /&gt;
 * This variable must contain the name of your &#8220;system&#8221; folder.&lt;br /&gt;
 * Include the path if the folder is not in the same  directory&lt;br /&gt;
 * as this file.&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
 $system_path = &#8216;mydomain.biz/root/home/CodeIgniter_2.1.0/system&#8217;;&lt;/p&gt;

&lt;p&gt;/*&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 * APPLICATION FOLDER NAME&lt;br /&gt;
 *&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#45;&lt;br /&gt;
 *&lt;br /&gt;
 * If you want this front controller to use a different &#8220;application&#8221;&lt;br /&gt;
 * folder then the default one you can set its name here. The folder&lt;br /&gt;
 * can also be renamed or relocated anywhere on your server.&amp;nbsp; If&lt;br /&gt;
 * you do, use a full server path. For more info please see the user guide:&lt;br /&gt;
 * http://codeigniter.com/user_guide/general/managing_apps.html&lt;br /&gt;
 *&lt;br /&gt;
 * NO TRAILING SLASH!&lt;br /&gt;
 *&lt;br /&gt;
 */&lt;br /&gt;
 $application_folder = &#8216;mydomain.biz/root/home/CodeIgniter_2.1.0/application&#8217;;&lt;/p&gt;

&lt;p&gt;&lt;br /&gt;
NOTES FROM OP&lt;br /&gt;
Im getting to figure out you only specify url path on system and application when you move the&lt;br /&gt;
dir to other location other wise is worthless isnt it?&lt;/p&gt;

&lt;p&gt;You can refer to this other procedures&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217922/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217923/&lt;br /&gt;
http://codeigniter.com/forums/viewthread/217924/&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <dc:date>2012-05-25T03:34:05+00:00</dc:date>
    </item>

    <item>
      <title>hwo to retrieve data from two tables and display it in single view</title>
      <link>http://codeigniter.com/forums/viewthread/217917/</link>
      <guid>http://codeigniter.com/forums/viewthread/217917/#When:03:11:56Z</guid>
      <description>&lt;p&gt;I have two tables the names are menudb and msgdb, I want to select all from menudb, and also select all from msgdb then display the two table on the inboxmsgview.php I dont know how to pass two variables in the view and i know this code can not be correct no matter what i do&lt;/p&gt;

&lt;p&gt;$this&#45;&amp;gt;load&#45;&amp;gt;view(‘inboxmsgview’, $data, $data1);&lt;/p&gt;

&lt;p&gt;is it possible to pass two tables?&lt;/p&gt;</description>
      <dc:date>2012-05-25T03:11:56+00:00</dc:date>
    </item>

    <item>
      <title>Database Caching Class</title>
      <link>http://codeigniter.com/forums/viewthread/217916/</link>
      <guid>http://codeigniter.com/forums/viewthread/217916/#When:03:04:42Z</guid>
      <description>&lt;p&gt;im using Database Caching Class to cache my queries.. how long will the cached files stay on my cache folder?&lt;/p&gt;</description>
      <dc:date>2012-05-25T03:04:42+00:00</dc:date>
    </item>

    <item>
      <title>ion_auth Groups issue</title>
      <link>http://codeigniter.com/forums/viewthread/217914/</link>
      <guid>http://codeigniter.com/forums/viewthread/217914/#When:02:45:32Z</guid>
      <description>&lt;p&gt;Ok, I am trying to assign Multiple groups using the form_multiselect() function.&amp;nbsp; Here is the code the pertains to the issue:&lt;/p&gt;

&lt;p&gt;Setting the options in the 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: #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;data&#91;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;options&apos;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#93;&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;&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;1&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: #0000BB&quot;&gt;lang&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;create_admin_storeadm&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;&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;4&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: #0000BB&quot;&gt;lang&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;create_admin_reports&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;&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;3&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: #0000BB&quot;&gt;lang&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;create_admin_superadm&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;&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;Echoing the form in the view:&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;&amp;lt;?php&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;form_multiselect&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&apos;groups&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;$options&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;Processing the groups in the 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: #0000BB&quot;&gt;$groups&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&amp;nbsp;array(&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;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;groups&#91;&#93;&apos;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;));&amp;nbsp;&lt;/span&gt;
&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;

&lt;p&gt;If I select the options for group IDs 3 and 4, the database inputs groups 0 and 2&#8230; &lt;/p&gt;

&lt;p&gt;I have a feeling its the second part in the controller&#8230; the art where I set groups tot he array.&amp;nbsp; How do I get the selections from groups[] to be #, #?&lt;/p&gt;</description>
      <dc:date>2012-05-25T02:45:32+00:00</dc:date>
    </item>

    
    </channel>
</rss>
