Tagged Questions
-5
votes
1answer
44 views
2 different Post Actions in a Single Form [closed]
I have a form with 2 submit buttons. But both the buttons should redirect to different controller methods.
For Example, on click of button1, it should call method1 of XYZController and on click of ...
0
votes
2answers
51 views
Saving multiple HTML textareas in CodeIgniter
I would like to grab the values of several textarea fields and save them to the database. For now I have four of each with different values and I want to batch save these values, the textarea fields ...
0
votes
2answers
52 views
Data not passing from Controller to View Code Igniter
I am puzzled because of CodeIgniter's strange behavior. I am fetching some data from Model and returning it to Controller and passing that data from Controller to View.
Controller
function index()
...
0
votes
3answers
41 views
Sounds simple but It is not working: Import CSS in CodeIgniter 2.1.3
I Just downloaded CodeIgniter 2.1.3 and Trying to import css into via header_controller,
I have tried SOF: CodeIgniter - Loading CSS, CI_Help_page and codeigniter CSS problem (SitePoint Form ...
0
votes
2answers
24 views
Implementing SQL in codeignites active record
How can i convert this sql to codeigniters active record format
SELECT COUNT(*)
FROM(
SELECT DISTINCT component
FROM `multiple_sample_assay_abc`
WHERE labref = 'NDQA201303001'
)x
I have tried this ...
0
votes
0answers
19 views
Giving permission to encrypted file on mac [duplicate]
I am setting up codeigniter project. I need to set permission to these two files but they are not present in my project. i guess its encrypted. how can i use chmod 0777 ...
1
vote
1answer
27 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
1answer
43 views
Correct way to use Model's method in codeIgniter's view?
From my VIEW, let's call it 'index', on a button click I would like to perform a DATABASE QUERY without loading the page again , however I cannot think of a method to so without breaking the MVC ...
0
votes
1answer
27 views
Codeigniter 2.1 - Count all results of search before limit
How can I count all results when I am doing search before limit? Do I need to make two queries (one with limit and one without limit) or this can be done in one query?
I have function like this:
$i = ...
0
votes
1answer
21 views
losing session in function with codeigniter
So I am using session to hold username and then check if its there. if yes, then use it to update related to current transaction. The following is my code:
public function update_edit()
{
...
0
votes
0answers
35 views
Connecting two database in codeigniter not working
I am trying to connect two database in Codeigniter. I came accross this link Codeigniter - multiple database connections and setup the database as per my requirements. Now the problem is that only the ...
1
vote
1answer
66 views
update statement breaking the database
I am trying to figure out what's wrong here, but really not sure. I have a site with users, when a user edits details, it seems to override all other records with those details. This doesn't happen ...
1
vote
2answers
28 views
Codeigniter Active Record - Count Total Found Rows with Limit (MySQL)
I'm using a complex SQL query in a Codeigniter model with a limit applied. I'd like to count the total number of rows that would have been found if the limit and offset had not been applied.
I'd like ...
0
votes
2answers
28 views
Change Location In tempnam
I am having some trouble providing the directory path in tempnam();. When i use tempnam('', 'xyz'); , the file is getting stored in tmp directory. But i need to store the file in a specific directory ...
1
vote
2answers
83 views
Running CodeIgniter Project
I have a Whole web site project based on CodeIgniter framework. My problem is i don't know how to run this project on my local Mamp Server. I have Successfully set up Mamp and Also run the latest ...
0
votes
0answers
28 views
losing quality after adding watermark to the picture
I'm working on a website wich i haven't create/developed
Anyway users can upload image and when they do that , there's a function that create a duplicate of that image with a watermark
But the ...
0
votes
2answers
59 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 ...
-4
votes
3answers
62 views
Echo mysql query [closed]
I am using the following function in a model:
function login($email,$password)
{
$this->db->where("email",$email);
$this->db->where("password",$password);
...
0
votes
2answers
37 views
CI - show database error or fail
I've developed a simple login system which works ok but fails, and I need to know why
QUESTION: How to show what is causing the fail. This is not a validation error but an error either with the data ...
0
votes
3answers
54 views
CI - show me what went wrong [duplicate]
I've developed a simple login system which works OK but fails, and I need to know why.
QUESTION: How to show what is causing the fail?
Here's the database function:
function login($email,$password)
...
0
votes
2answers
36 views
Email library not sending the correct link
I have the following code:
$link = "www.domain.com/profile/forgot_password?user=".$username . "&key=".$key;
$this->email->message('You requested to reset your password. Follow the link. ...
0
votes
1answer
57 views
Codeigniter Session Class not displaying session variables set by other domain
In my site i have integrated facebook login. Site is developed using CodeIgniter framework. In facebook login, after authentication carried out by facebook, certain session variables are set by ...
2
votes
2answers
30 views
How to pass variable between views? Codeigniter
Codeigniter noob here:
I am wanting to let users click a button inside someone's profile in order to send them a message, I need to pass the variable from the view back to the controller and into ...
0
votes
0answers
33 views
Validate webservice parameters
I'm quite new to Codeigniter so kindly help me through..
I'm writing a RESTful web service with Codeigniter - is there a way to validate the parameters I get in the 'POST' request's json?
By ...
0
votes
1answer
31 views
change any rule in codeigniter to match function
I have set up my routes.php to suit the nature of my site. Unfortunately, there is a problem with my last route i.e.:
$route['(:any)'] = "profile/profile_guest/$1";
If the username password ...
-2
votes
3answers
70 views
Is this a bad practice to add die() at the end of “Views” in CodeIgniter?
In order to make things right and prevent CodeIgniter from loading another views after a loaded view I needed to added die() at the end of views (footer). Is this a bad practice and Will this cause ...
0
votes
1answer
29 views
Codeigniter-HMVC get_instance() in library does not return expected result
I have the Controller:
application/controllers/bob.php
Then in a library I use in the controller Bob.php, I have this code:
$CI =& get_instance();
echo get_class($CI);
So I open the url ...
0
votes
0answers
50 views
set value for the dropdown in codeigniter
I am getting the values from the db and populating the dropdown. Below dropdown is multiselect, I am using this dropdown for the filtering purpose. Once user selects multi projects of the dropdown and ...
0
votes
1answer
63 views
codeigniter session save to database keep updating many times
I have a question. I'm using latest version of CI.
I have currently enabled session to use the database, but there is only one problem with how it works since it tends to update the database every ...
0
votes
0answers
47 views
Use codeigniter Form validation lib. to validate arrays not from post
Might be a duplicate. but i couldnt find anything on google so here we Go.
i have a form that submit data. this data is further process and split it into variables.
example
My form post <input ...
0
votes
1answer
22 views
image resize codeigniter issue not working
I've been attempting to resize images but with no luck! I have the resize inside the upload function but not sure what is happening wrong! The code below shows my upload function (and resize within ...
0
votes
0answers
32 views
No DB Error Numbers in Codeigniter
I am using Codeigniter connected to an oracle 11g db with the provided driver. I am getting a database error with my query, but Codeigniter is not showing any error numbers :/
Any ideas?
-1
votes
1answer
48 views
Make an object available to all controllers
I am trying to make a variable (a PDO instance) available to all my controllers. In my application/core/MY_Controller.php I have:
<?php if ( ! defined('BASEPATH')) exit('No direct script access ...
0
votes
1answer
43 views
How to pass two objects to a view
How can I pass two objects to codeigniter view page ?
Is this possible ?
$this->load->view('myView', $object1, $object2);
0
votes
0answers
26 views
manipulate image in codeigniter after upload
I have a successful upload script and it returns the path (later inserted to DB table). Now I realize that since my site should allow large photo (not in size but dimensions), I should try and resize ...
-1
votes
1answer
28 views
CodeIgniter retrive image from secret folder
I have create private folder in application folder : application/private/username, I'm uploading images here with ajax, that works, but how can I retrieve that image with ajax, and display it in img ...
0
votes
1answer
73 views
Remove unwanted URL segments in Codeigniter site_url
On the page whose URL is "abc.com/en/login/create_member" using site_url('login') produces a link to "abc.com/en/login/create_member", but the desired URL is "abc.com/en/login/"
I've included the ...
1
vote
1answer
62 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 ...
0
votes
2answers
50 views
Can't redirect to diffrent method on the same controller under codeigniter
Assume that I have a controller with two methods I want to redirect from method1 to method2 but it's not possible because of the following errors:
Chrome: Error 310 (net::ERR_TOO_MANY_REDIRECTS): ...
0
votes
2answers
81 views
Removing index.php in Codeigniter 2
I'm having some trouble using Codeigniter2.
Essentially I want to remove the annoying "index.php" from my url so that:
- http://localhost/ci_intro/index.php/site/home
Becomes
- ...
1
vote
2answers
62 views
Codeigniter : How to join 2 tables in databases from 2 different connections
I made two database connections in database.php, one for reading which is my localhost machine and one for writing "insert" which is an online database.
But I ran into this problem when I wanted to ...
0
votes
4answers
54 views
Using die() in functions under CodeIgniter
I'm writing a web application in CodeIgniter and I'm trying to apply user activation.
function is_active() {
$active_state = $this->my_model->check_active();
if ...
0
votes
1answer
29 views
uploading file issue, error not displaying
I am trying to restrict the file size when a user uploads. I have the following function:
function do_upload()
{
$config['upload_path'] = './uploads/';
...
0
votes
2answers
44 views
upload size limit in codeigniter
I have a page where user can register. He uploads a profile picture in the process. I want to limit the size but there is not much emphasis on codeigniter documentation except for $config['maxsize']. ...
0
votes
2answers
49 views
Validation rules in CodeIgniter
I am trying to validate email and password using the CodeIgniter's form_validation library. But when I typed wrong email or password the error message of validation_rules is not displayed.
The ...
0
votes
2answers
41 views
.htaccess rewrite to subfolder with codeigniter rewrite
I have a site that needs to exist in a subfolder
example.com/site
But i'm trying to use the .htaccess to remove any links that contain www (to make sure codeigniter csrf doesn't throw errors), so ...
0
votes
2answers
38 views
changing url displayed to user in codeigniter
I don't know if this is strange request or not, but I have a page with users profiles displaying. Each user has unique username of course and those are included in links to associated with their ...
0
votes
2answers
68 views
Codeigniter load custom upload config
I have a small problem. I have a custom configuration file for uploading. I want to load the settings without redefining them.
Okay, my configuration look like this:
config.php
...
0
votes
1answer
50 views
user profile routes configuration in codeigniter
I have a simple problem but I just can't figure it out. I wrote a method that reads parameters from the url (one parameter which is the username) and queries all data to that user and displays it in ...
0
votes
0answers
46 views
random codeigniter error “cannot modify header information - headers already sent” when refreshing page [duplicate]
I have already read like half a dozen similar questions here, and already double checked that there are no white spaces before <?php or after ?> in my library.
Ok note that I get this error ...




