0
votes
1answer
18 views

Place CodeIgniter's Config Files out of 'application/'

I'm trying to move the config directory in the root folder for my CMS. It will be easier for users to update and edit the config. Everything I tried gave me an error, so I do not think the right way ...
0
votes
0answers
39 views

not work nginx+codigniter configration

i am using nginx + Codigniter server i configure the server using this guide http://www.farinspace.com/codeigniter-nginx-rewrite-rules/ my current Configure as follow server { server_name ...
0
votes
2answers
54 views

CodeIgniter - URI Disallowed Characters

I had issue of @ which I added in $config['permitted_uri_chars'] as you can see below: $config['permitted_uri_chars'] = 'a-z 0-9~%.:_@\-'; BUt here is my URL ...
2
votes
1answer
122 views

Set config item (csrf) doesnt work in Codeigniter

I want to turn ON csrf protection only in a few of my controllers, so I have function __construct() { parent::__construct(); $this->load->library('form_validation'); ...
0
votes
1answer
66 views

codeigniter autoload config file doesn't work in library

I created a customized config file called config2 and autoload it in autoload.php. In my model, i just use $this->config->item('item_in_config2'), it works well. However, in my paypal library, i ...
0
votes
0answers
130 views

an HMVC Codeigniter incompatiblity with autoloaded validation config file

I have thoroughly researched and tested this. I have spent a few days searching for a clear answer. I have a case study setup at my dropbox link The error I get is below. Note, this works fine when ...
1
vote
0answers
106 views

how to define 2 config upload file in codeigniter

I want to upload 2 file with 2 config section but first file don't work and second file work good for me. how can i find problem in this code. Please help me. This is my code : ...
2
votes
3answers
66 views

codeigniter htaccess not loaded?

htaccess I have made is not running as it should, why ? there is my htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f ...
0
votes
2answers
146 views

Define custom variable in config.php and access it in view

I have defined image_path in config.php and now need to access this variable in views like we use base_url(). Hos is it possible?
0
votes
1answer
102 views

CodeIgniter form validation config stops working when an object name is assigned

I was working with CodeIgniter's form validation. I had a config file in application/config/form_validation.php it works fine in most case, but in one of my files, I had this line ...
0
votes
4answers
230 views

Codeigniter - how do I update my database config settings dynamically?

I want to change some database settings for one part of my program. In my setup the databse class is autoloaded with a config which looks like this $db['default']['hostname'] = 'localhost'; ...
0
votes
1answer
121 views

Codeigniter config file change from model or controller

How can we edit config file details from model or controller...? I want to change currency based on location of the user...
1
vote
1answer
120 views

codeigniter conditional routing

I am trying to setup routing based on the 1st URI segment. I have a rule: $route['(:any)'] = pages/view_page/$1; I want to make my routes conditional so that if a controller of the name of URI ...
1
vote
1answer
186 views

Is there a way to have multidimensional config arrays?

I want to create my own custom config data in the application section of Codeigniter, but was wondering if we can build two dimensional config arrays. Example of application/config/myconfig.php: ...
0
votes
1answer
267 views

Loading Config and Setting a Config Value in CodeIgniter

I try to create application with back-end and frond-end. The folder structure as follows(only show config file position to explain problem) +root |-admin |-application |—backend |—config ...
0
votes
1answer
172 views

How to change the value of a config item in the controller? - Codeigniter

I have a config file: application/config/breadcrumbs.php Within the file I have the following configuration item: $config['hide_number'] = TRUE; How can I change the value of this config item ...
1
vote
2answers
610 views

Dynamically updating config data codeigniter

I have created my custom config file to store information about site such as if it is online or offline like-vice. For that I have created new file in config folder and stores default values in ...
0
votes
1answer
437 views

Reading CodeIgniter config values from database instead of config file

As you might know, when you create a new project with CI you'll have to manually enter base url, encryption key in config/config.php. I'm trying to overcome this and is hence looking for a way to read ...
1
vote
1answer
268 views

multiple site-wide cookies / $config['cookie_domain']

Under the site-enabled www.test.com, I have multiple VirtualHost configurations. ServerName varies (eg. test1.com, test2.com, test3.com) but points only into one DocumentRoot. I can detect which ...
1
vote
1answer
286 views

multidimensional config in config.php file

I am using codeigniter framework and I want to access a multidimensional config variable from config.php. For Example: $config['user']['students']['cs'] = 'CS USERS'; To access 1-dimensional ...
1
vote
1answer
288 views

Codeigniter : Access session from config

I am making an application using Codeigniter which requires URL changes before login and after login I want all the URLs before login with http:// and after login my base_url should be with https://. ...
0
votes
0answers
577 views

Fatal error: Using $this when not in object context / Codeigniter

This is supposed to be 'stupid simple' so it is embarrassing to have to ask but I am hitting a wall here and really need to move forward after literally days at this. I am trying to use variables ...
0
votes
2answers
109 views

Seperate Configuration files for each user in codeigniter

is it possible to make Config files for each and every users? Currently i have a Config file named Siteconfig.php for global configuration. Now a user registered,so that i need a configuration file ...
-4
votes
1answer
92 views

PHP: read and edit CI config file [closed]

How can I read and edit CI config file using php ? config file contain like this : $config['test1'] = 'a1'; $config['test2'] = 'a2'; $config['test3'] = 100;
5
votes
1answer
1k views

get full array from config files in Codeigniter

I did a lot of search for my problem but I did not get anything .. in codeigniter when I use config files I do that : my_config.php : $config['my_title'] = ' My Title Here ' ; $config['color'] = ...
0
votes
2answers
723 views

CodeIgniter reusable message library

I'm using Message library (http://codeigniter.com/wiki/Message/) to display error messages on my site. This is the code that I'm using to display a message: ...
1
vote
1answer
529 views

codeigniter: accessing a callback from config/form_validation.php config file

Callback functions are not executing from my form_validation config file when called upon. Am I correct when assuming the reason for the non-execution is due to the location of the callback ...
0
votes
3answers
1k views

config data stored in database

I might be barking up completely the wrong tree so forgive me if this isn't at all how I should be doing things. I've a config table in my database which is to hold config details for my website. I ...
1
vote
1answer
963 views

Form_validation isn’t using rules from config file (CodeIgniter 2)

My form validation isn’t using the rules in a config file in CodeIgniter 2. I’m accessing the form at /admin/people/add and /admin/people/edit/id and submitting to /admin/people/save. When I submit ...
6
votes
1answer
6k views

Loading custom config file into a Codeigniter library

I know this is probably simple, but I'm not getting. I've created a library, and I want to load the parameters from a config file. So here's an example of what I have: // libraries/Mylib.php class ...
0
votes
1answer
124 views

CODEIGNITER :: how to save 2 configs for 1 library?

i want to use upload library, but i want to use it in 2 separate uploads .. for example avatar and profile picture. each one of them has it's configs .... my application is v.big so it's better to ...
0
votes
1answer
1k views

Codeigniter form validation config file not working

I'm using the technique of saving codeigniter form validation rules to a config file as specified here, but can't seem to get it working. I am also attempting to invoke validation callback functions ...
1
vote
2answers
1k views

Codeigniter: Variables/Config Items within Language Files

I have a language file with a long list of strings for my view files. My question is how to pass a variable or a config item to a language file? <?php $lang['error_activation_key_expired'] = 'The ...