CodeIgniter is an open-source PHP web development framework created by EllisLab Inc. The framework implements a modified version of the Model-View-Controller design pattern.
0
votes
0answers
16 views
CURLOPT_HEADER is not returning all http cookies
First of all I'm using codeigniter and used PhilSurgeon codeigniter-curl: http://philsturgeon.co.uk/code/codeigniter-curl
I'm trying to curl and get the Set-Cookies from the response header from ...
1
vote
2answers
36 views
php foreach loop not working correctly
public function include_header( $h, $h_data ) {
// Require header file
if (isset($h) && !empty($h)) {
$this->header_file = 'includes/header/'.$h;
} else { return false; ...
1
vote
2answers
16 views
Properly using PHP Classes in CodeIgniter
I have a class AdminMenu that I'm using to create the menu for the admin on my project. Here is the class:
class AdminMenu{
public $menu = array(
'Groups and Statuses' => 'groups',
...
0
votes
2answers
17 views
Codeigniter Dynamic Routing to single controller
I know this question has been asked in a similar fashion several times. However, I'm struggling to find any answers that would work in my situation. I primarily work on Microsoft projects and stepped ...
-2
votes
0answers
19 views
Codeigniter multi upload files [closed]
I search stackoverflow and I tried many different things.But nothing is worked forme.My jquery is selecting files multiple.I have an array of files.I trying to upload all files which is valid for ...
-1
votes
0answers
37 views
File upload succeeding but
I am working on a multiple image upload in PHP.
I am using pretty simple standard code from W3schools for the file upload and using a loop of each file. The problem is that I am getting a success ...
0
votes
3answers
40 views
codeigniter join only most recent row
I am making a dating app similar to tindler, where users can like or dislike each other. If two users both like each other, they should be able to chat with each other. I have come up with the ...
0
votes
0answers
15 views
Codeigniter HMVC [closed]
I am building a software application for a travel company.There are master forms like customer data,supplier data which have similar functionality.There are many similar transaction forms as ...
0
votes
2answers
13 views
CodeIgniter : image upload on article
I'm building a website with MongoDB and Codeigniter where users can create articles (title + text) and after it (but before to submit), upload some pictures (images are not in the text).
I think i ...
0
votes
0answers
9 views
SQL Select records where value of one column and a specified matches another table, multiples possible
I am selecting records from the lesson table. The lesson table has a resolver table named lesson_lesson_type_assoc which links lessons, students, and specific lesson type together. There can be ...
-1
votes
1answer
15 views
Installing CodeIgniter On Amazon EC2 [closed]
This is the first time I'm trying to upload my completed CodeIgniter project to a micro instance of Amazon EC2. Here is what I did so far: I created 1 micro instance on Amazon EC2 using "Amazon Linux ...
0
votes
0answers
9 views
Manually create Tank_Auth password in CodeIgniter
I am working on a new project where the existing devs have removed a fair portion of the sign-up code. In the past I would just enter my info directly into the database if I needed a test or ...
2
votes
1answer
43 views
Rails vs CodeIgniter performance when retrieving many records [closed]
EDIT - This is not a thread meant to bash Rails! I love Rails and I am merely trying to fully understand the differences.
EDIT 2 - Found a pretty neat article, it looks like it may have everything ...
1
vote
0answers
10 views
kendo ui grid crud with codeigniter
pleas help me with sample kendo grid with codeigniter controller
my view
$("#grid").kendoGrid({
dataSource: {
transport: {
read: {
url: 'schoolC/crud',
...
0
votes
0answers
26 views
CodeIgniter, opening and closing a process
This CodeIgniter controller is supposed to handle the opening and closing of a process
class Test extends CI_Controller{
private $handle;
function startProcess(){
$this->handle = ...
0
votes
1answer
23 views
Update database by sending emails in codeigniter
I am using codeigniter with datamapper orm
i want to update things using email messages
for example there are tables named "projects" and "messages"
projects
id / name
messages
id / content / ...
-2
votes
1answer
50 views
Include jquery in html file in php mvc
I am using CodeIgniter PHP MVC framework. I have a simple HTML page. When I include the jQuery file in HTML page, the browser gives error :
could not localhost/ci/index.php/jquery.js.
My jQuery ...
0
votes
1answer
26 views
Whats the difference between parser and view call? How to retrive the data from the view? (pass, return)
What's the difference between these two calls? What's the general difference between parse and view? When do I use parser->parse and when load->view?
$this->load->view('content', $data);
...
0
votes
1answer
31 views
Keep dropdown menu open when moving mouse away?
I am using zurb foundation 4 in a codeigniter site and in the desktop version I have the login top right as a drop down b ut when the mouse is moved away from the content of the drop down menu it ...
0
votes
1answer
32 views
codeigniter. delete_files not working when trying to delete image from directory
I am trying to delete an image using a button.
when i click the button i use
onClick"'.delete_files(assets/uploads/.$image->filename).'"
But nothing is happening. The image is still where it was ...
0
votes
1answer
28 views
Codeigniter loop through post array
So i have this form:
<form id="stepform" action="#" method="post">
<fieldset>
<legend>Step #1</legend>
<label>Title</label>
...
0
votes
0answers
23 views
How make CRUD of one to many in grocerycrud?
I have tables like this
user
id ,name
user_email
id ,user_id,email
user may have multiple emails.How can i do CRUD operation of these type of data in codeigniter grocerycrud?I tried this but ...
0
votes
1answer
21 views
How to send Jqxgrid in a form without using hidden textbox?
My CI view consists of a grid and data is added dynamically to this grid.This is saved to a database when a save button is clicked..
Here is the screenshot of the view.
...
0
votes
3answers
26 views
Codeigniter 2 difference between index and __construct and what to put in __construct
When is __construct called and when is index called? And are there any other differences?
And what to put in __construct? Whats the best practice, should I put $this->load calls... ? what else?
...
-8
votes
0answers
41 views
How to Upload Videos Faster [closed]
In my PHP site, I need to upload video files (.mp4 only) For a 17 MB video file, it took more than 10 minutes to upload. But my client needs to upload files bigger than 25 MB.
My internet speed ...
0
votes
0answers
23 views
The upload path does not appear to be valid”. Codeigniter file upload
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'doc|docx';
$config['max_size'] = '400';
$config['max_width'] = '1024';
$config['max_height'] ...
2
votes
0answers
27 views
CKeditor returning 403 when submitting certain html tags
I've created a page where I have two input textareas and I add CKeditor (ver. 4) to both of them.
The first editor works fine, I've set config.allowedContent = true; in the config.js to stop ...
0
votes
1answer
35 views
multiple image resizes at once in Codeigniter
I'm trying to upload a image and resize it, and make a smaller copy of it. But it won't do the second resize. But it returns 'TRUE'.
I found more questions about it, but they did not do the trick, ...
0
votes
2answers
31 views
iterate stdClass in codeigniter
I am building a user edit form. I have a single user info. I want to iterate over it and get values. The array contains values I am fetching from the database in model and sending to view.php through ...
0
votes
1answer
19 views
Processing XML values returned from solr
I'm querying apache solr and getting XML response in the following format
<response>
<lst name="responseHeader">
<int name="status">0</int>
<int ...
-1
votes
2answers
40 views
codeigniter error :Message: Undefined variable: results
I am adding users in a table through CodeIgniter form. Insertion is going fine. but after deleting selected record i am getting undefined variable results.
I also defined
$results = NULL;
in my ...
0
votes
1answer
32 views
eval function in code igniter [closed]
I'm new to code igniter and I want to know how to use eval function in code igniter? When I try to use eval function in native php it works perfectly. But When I use the same code in code igniter it ...
-2
votes
2answers
29 views
'How to handle quotes in html page source while storing it in a mysql table using codeigniter?' [closed]
I am using codeigniter for inserting html page source into mysql table. While inserting a text with double quote, it displays unknown characters
0
votes
0answers
19 views
Data from Formlayout do not get saved in the database
I am using CodeIgniter and DHTMLX to build my system. When my site first loads it show the DHTMLXGrid with all the data from the DB. And when I click on a record and press edit button, it will show ...
0
votes
1answer
28 views
image captcha in codeigniter
I am doing my project in CodeIgniter. I am trying to call captcha.php file in index file.This captcha file in folder files. Currently, the captcha image is not viewing. I need to display random ...
2
votes
5answers
32 views
Codeigniter comparing id of value greater or smaller then the same field
I am using CodeIgniter to form a simple query that is not working correctly.
I am trying to get a field where the action_ id is greater than one but less than 4.
Example as below:
...
0
votes
4answers
31 views
codeigniter directory problems
In my codeigniter project, I am trying to do something very simple. I'm coding a stylesheet into my view. The problem comes when the stylesheet is in a different folder under the application folder ...
0
votes
1answer
21 views
CodeIgniter download a file to windows via FTP
In my website I have the following 2 functions. The first one takes the FTP connection and creates a directory in the specified path. server.com/Host_path/DirectoryName for example. This piece of code ...
-2
votes
2answers
28 views
php codeigniter base_url not working
I am currently using codeigniter to write out templates for a website. The problem is that I'm trying to achieve absolute paths for attributes such as href and src, but they aren't working. I've ...
0
votes
0answers
34 views
Plupload works in all browsers except IE9.
I am creating a video upload site where users can sign up to purchase upload tickets. I am using Plupload to upload video files that get sent off for encoding.
Every real browser (safari, firefox, ...
0
votes
3answers
39 views
codeigniter complex join only if rows don't exist
I'm making a dating application, much like tindler. Users can like or dislike other users, and if two users both like each other they get the option to chat with eachother. Currently building the ...
0
votes
1answer
22 views
codeigniter templating library vs controller
I am looking to write template code with codeigniter for a website that is content-heavy. I'm trying to weigh the advantages/disadvantages of making the template as a library or as a controller. I'm ...
0
votes
1answer
22 views
CodeIgniter: Instances of CI_Model
I was wondering if CI_Model is more like a database layer, or can i really use it like i would normally use a model.
To me it looks really ugly to do things like:
for($i = 0; $i < 3; $i++){
...
-2
votes
2answers
36 views
Call to a member function where() on a non-object
I'm developing a website using CodeIgniter. When I open my page I get this error :
I haven't encountered this problem before, and know I have it in every controller that uses the database library.
...
0
votes
0answers
42 views
Inserting values from multiple select drop downs with same name
I have several select menus that all have the same name, mainly because I want them to insert them into the same database column.
My lists look like this.
<span id="books">
...
0
votes
0answers
31 views
codeigniter .htaccess not working to hosting
How change "RewriteBase /www.myweb.net/" to web hosting for working ?
RewriteEngine On
RewriteBase /www.myweb.net/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
...
0
votes
1answer
24 views
How to add items to the cart using the Shopify API
I'm working on a custom web app using the Shopify API. The idea here is to use the app as the exclusive storefront and just make requests to the Shopify API. I've set up a private application in my ...
0
votes
1answer
14 views
link image with anchor function in codeigniter
I already tried with
<?php anchor('company/ourpartners',img(array('src'=>'/Images/OurPartnersLink.png','border'=>'0','alt'=>'testing image')),array('class'=>'imglink')); ?>
but ...
0
votes
0answers
36 views
Differences between JSON response with Safari and Safari Mobile
I noticing some strange behavior between different browsers with a JSON response. The browser i'm having the issue with is Safari Mobile, specifically the iOS simulator.
I'm using Codeigniter and am ...
-1
votes
4answers
48 views
Adding a space to strings with underscrore in php [closed]
I an trying to add an underscore to a space in a string using str_replace() in php but its not doing what i expect
This is what i am doing:
echo $view="one bank".'<br>';
echo ...




