The codeigniter-url tag has no wiki summary.
2
votes
0answers
14 views
index.php issue with codeigniter 2.1 on web server
I'm working on web application. In which I'm facing issue with index.php on redirect.
When even I'm submitting form to controller and redirecting to another page index.php added to URL automatically ...
1
vote
1answer
29 views
Codeigniter minimize URLs with extending controller and multilingual
I've configured Codeigniter 2.1 with i18n and extended controller.
I've hide the main controller "main" and I kept visible "admin" and "blog" controller.
This urls works fine:
www.mysite.com/ en / ...
0
votes
3answers
18 views
codeigniter uri (URL) setup using router
i have codeigniter project. i am show the product page using router.php for the url change. Here i am facing some problems. the router code is here
Url router.php code ...
0
votes
5answers
70 views
Match 2 arrays in php
My two array values are
1)
Array (
[0] => School Children
[1] => Vocational Training Centre
[2] => Admission Fee
)
2) Admission ...
-4
votes
2answers
54 views
Checkbox value not properly checked [closed]
<?php
$i = 0;
foreach($prj_data as $prj_pop) {?>
<input type="checkbox" class="checkbox_project" value="<?php echo $prj_pop->name;?>"
<?php
...
0
votes
0answers
27 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 ...
0
votes
2answers
36 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 ...
0
votes
2answers
36 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
22 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
5 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
38 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']);
...
1
vote
1answer
26 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 ...
0
votes
1answer
70 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'),
...
2
votes
1answer
78 views
CHMOD 777 Codeigniter configuration error
I am configurating my project on codeigniter and Mamp. When i run it i got CHMOD 7777 error as shown in the image. Does someone know how to make config.php and the other page rewritable.
0
votes
2answers
93 views
Include all codeigniter functions to a new static page(php file) which is located in root folder. [closed]
I am developing a website which having many static pages. so i created controller only for dynamic pages(it might be wrong practice). Keeping all other static files in root folder. Now i want to use ...