Tagged Questions
0
votes
2answers
16 views
CodeIgniter reUse/extend controller
I have my controller
class Page extends CI_Controller {
public function id() {
$this->load->model('content');
$page = $this->uri->segment(3, 0);
if($page == ...
0
votes
0answers
9 views
Codeigniter with Doctrine integration find()
So I'm having problems getting returning a user using Doctrine. When I use
$user = $em->find('Entity\User', 22);
I get a HTTP Error 500 (Internal Server Error): An unexpected condition was ...
1
vote
3answers
46 views
PHP list() — explode() offset error
Racking my brain on why this is returning PHP Error: Undefined offset: 1
public function index($hash)
{
//$hash = 44253_13456789
list($part1,$part2) = explode('_', $hash);
...
0
votes
0answers
27 views
How to convert a basic php site to codeigniter framework?
I am going to convert a simple old php site to a new one using codeigniter, i am facing issues regarding the urls , like old urls are,
http://www.example.com/about-us.php
...
0
votes
1answer
23 views
Codeigniter : mp4 video won't upload, no error
I'm creating a form to upload video file, but I have a strange error.
My form is like this:
<div style="color : red;"><?php echo $error;?></div>
<?php echo ...
0
votes
1answer
13 views
MPDF - fseek error
I am trying to merge files together into one pdf. The files could be pdf, png or jpg files. Images work fine, its only when I try to export the pdf files that I get an error. The error is show below.
...
0
votes
2answers
35 views
codeigniter uri segment not working
I have a Ajax function -
$(document).ready(function(){
$.ajax({
url: base_url+'movies/index/this_week/hindi',
type: "POST",
success: function( data )
{
...
2
votes
0answers
31 views
Codeigniter Database results - Objects or Arrays?
I've been using Codeigniter for a good while now and i've often wondered which/whether to use Codeigniter's
$query->result() or $query->result_array()
Personally, I've tended to stick with ...
0
votes
1answer
42 views
How can I change the color of a button when I clicked the right answer? It is tested in PHP. (CodeIgniter)
I have a number of rows with different buttons. When I click a button, it checks if it's the right answer in that row. This I have already working. What I can't figure out is how to give that right ...
0
votes
1answer
25 views
Interfacing static and non static methods
Ok so my problem is trying to interface static and non-static methods, an example of both.
Regards.
Examples:
Codeigniter AR(non-static) and
php-activeRecord(static)
Interface
interface ...
0
votes
1answer
51 views
Javascript autocomplete working on local server but fails on web server?
The code is same on both Web server and local server but using firebug I get two kinds of response links:
Works fine
GET http://localhost/www.test.co.uk/index.php/home_Controller/getSearch/r
...
1
vote
1answer
42 views
Why am I getting this undefined index error?
I'm trying to list the indexes of an array, and it keeps throwing errors in my face.
I am getting this error:
A PHP Error was encountered
Severity: Notice
Message: Undefined index: sender
...
0
votes
0answers
19 views
Pyro CMS : Creating a REST Controller
I am a complete nob in Codeigniter so please ignore if m being stupid.
I have played with pyro cms for a while and i would like to have an API which could
return all the blogs in JSOn / XML format.
...
0
votes
1answer
21 views
Code Igniter Browser Cookie Expired but not deleted?
I'm using Code Igniter and created a cookie using:
<?php
$cookie = array(
'name' => $cookie_name,
'value' => $cookie_value,
'expire' => ...
0
votes
3answers
26 views
CodeIgniter cookies do not persist
I am creating a login system and would like to store a username and a password (hashed and salted) to cookies. However, the cookies do not persist. The var_dump at the bottom displays the value of the ...
0
votes
2answers
33 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
42 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
17 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
19 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
22 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
38 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
47 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
10 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
45 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 ...
0
votes
0answers
17 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
31 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 = ...
-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
31 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
41 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
25 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
2answers
30 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
44 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
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
33 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
24 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
41 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
30 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
37 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
29 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
35 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
41 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 ...
-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
43 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">
...






