The codeigniter-url tag has no wiki summary.
0
votes
0answers
20 views
codeigniter 1.7 Disallowed Key Characters cyrillic character
I have massage "Disallowed Key Characters" whit url like this:
/project/category/Португалски
if url containd only latin chars problem is gone.
Problem come after removing index.php.
For removing ...
-1
votes
1answer
39 views
Causing conflict between the js files [closed]
I am using below three js files jquery.validate for validations and datepicker for js for date picker , i am using jquery -1.9.1 for modal window so becase of the modal jquery 1.9.1 my validations and ...
0
votes
2answers
31 views
Codeigniter URL rewrite to hide controler and method name
My current url is universitytwig.com/user/userprofile/cm.cm , where user is the controller , userprofile is the method and cm.cm is the parameter .How i change this url to universitytwig.com/cm.cm by ...
1
vote
2answers
3k views
Redirect in Codeigniter
I have a paginated display in which on each page call I set the current URI string into a session (in my controller).
$current = $this->uri->uri_string();
...
0
votes
1answer
32 views
CodeIgniter passing parameters to a function in CORE MY_Controller
I hope that this is possible
Can I pass parameters to functions in CORE/MY_Controller?
I am developing a application that has three controllers and most of the functions are the same so I want to ...
0
votes
2answers
32 views
Codeigniter Routes Conflict
I am using codeigniter to create a restapi and I am having some problems with routes.
Here is the equation:
I have to navigate /users/ to index function,
I have to navigate /users/{MongoId} to ...
-1
votes
0answers
19 views
Unable to load the requested class: lang_detect
An Error Was Encountered
Unable to load the requested class: lang_detect
Please tell me how to solve it urgent..
You can check the detail of the problem from here
0
votes
0answers
4 views
Codeigniter Page linking
can someone please help me I'm using the codeigniter for my web-application and i'm trying to link to another page using the controller but my efforts have failed:
<li><a href="<?php echo ...
0
votes
0answers
34 views
removing backslashes in the query using codeigniter mysql
Post value is multi select, means values are coming in the form of array
if(!empty($_POST['form_type']))
{
$test = implode("','",$_POST['form_type']);
...
0
votes
4answers
356 views
CodeIgniter mod_rewrite gives 404 error
I have written a CodeIgniter application and I want to use mod_rewrite to clean up my URL's. I have installed the CodeIgniter application in htdocs/ci-intro/
Here is my .htaccess file:
<IfModule ...
0
votes
5answers
575 views
Codeigniter - removing the index.php
I've been trying for hours and could not make it work. Searched for answers everywhere, and nothing seems to solve my problem.
I even tried the solutions described here: Remove index.php in ...
1
vote
1answer
24 views
codeigniter rerouting url with some new additional parameters
I am using codeigniter re-route to clean up some urls.
I am aware that I can do
$route['product/(:num)'] = "catalog/product_lookup_by_id/$1";
But in some cases I have to add some extra parameters ...
1
vote
2answers
97 views
Codeigniter session and redirect is not working in IE7 but working in IE8
I'm using codeigniter and have a simple user login setup. User submits their credentials, checks with the DB if they are valid, if they are the model passes the controller a session ID and is ...
2
votes
1answer
6k views
Codeigniter .htaccess
Sorry for my bad english...
I have the most basic possible CodeIgniter setup and can't make it work... if i access the url
http://domain.com/index.php?controllerX/method it works fine.
Now I want ...
0
votes
1answer
60 views
How to update data with CodeIgniter and REST
I am new to CodeIgniter. I want to create a web service REST for the update.
This is my controller:
function user_post()
{
$result = $this->user_model->update( $this->get('id'),
...