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.
5
votes
0answers
277 views
Arrowchat and Amazon instances
I have a site with codeigniter, mysql, which has arrowchat installation in it.
the site (say xyz.com) is hosted in amazon environment. It has S3 implementation for image uploads, CDN implementation ...
4
votes
0answers
414 views
Using Paypal Express Checkout digital goods with Codeigniter
I am trying to implement Paypal's digital goods express checkout on a Codeigniter website.
I am using mod rewrite to take the index.php out of the Codeigniter URLs, and so when Paypal does a call ...
3
votes
0answers
310 views
Phonegap & Jquery mobile app to use Codeigniter Ion Auth backend for login
I already have CRUD web application which is build using Codeigniter PHP framework and Ion Auth authentication library (for Codeigniter). So users needs to log-in to use the site etc.
Now Im building ...
2
votes
0answers
76 views
Random SQL record while excluding specific records
I have a CodeIgniter PHP application that shows two movie covers. Beside them is a "random movie" button that uses AJAX to replace the two movies with a new set of movies. You can continue to click ...
2
votes
0answers
273 views
How to use grocery set_relation function to display content from two different tables in different columns
I have to tables with these schema:
users(id, name, email)
user_details (id, user_id, physical_address, otherinfo)
I would like to display all contents of both tables in one grid using grocery ...
2
votes
0answers
73 views
youtube:merge an array of video files and upload as a single video
I have an array of video files which has to be merged and uploaded to youtube. For uploading I followed the instruction as per the url ...
2
votes
0answers
380 views
Could not execute mail delivery program
$this->load->model('emailmodel');
$query = $this->emailmodel->get_emails();
$emails = array();
set_time_limit(0);
foreach($query->result() as $u)
...
2
votes
0answers
80 views
Sendinding groupmessages using sendgrid
I want to send group message by using send grid.My group have 100 members.When I send a group message, 50 to 80 messages are delivered and then show a blank page with
" NetworkError: 500 Internal ...
2
votes
0answers
288 views
Retrieving data from adjacency list model database.(MySQL)
function get_hierarchy_page()
{
$detail = $this->input->post('name');
$tree = $this->dashboard_model->get_detail($detail);
$this->load->view('layout/layout', $data);
...
2
votes
0answers
248 views
Starting Level with multidimensional array
I have this organized array which works nice with below recursion function.
Array
(
[6] => Array
(
[0] => Array
(
[id_parent] => 6
...
2
votes
0answers
528 views
Codeigniter Daemon using System_Daemon package
I am trying to create a daemon using System_Daemon package with CodeIgniter's CLI. This is a new area for me and I'm struggling.
Here's what I have:
A CI controller that injects messages into an AWS ...
2
votes
0answers
258 views
How to solve TinyMce image manager Network Error
It was working until my hosting do some changes to server. I don't know what changes they have made.
request is: click here
or
...
1
vote
0answers
25 views
Could memcached store complex objects?
Can you store complex objects including public/static variables/functions self-defined/inherited?
I am talking about Memcached ( http://memcached.org/ )
1
vote
0answers
57 views
JQuery Uncaught TypeError
I have a problem where I sometimes get the following error. The jQuery files which I have imported are below. The strange thing is that it only shows errors occasionally. I am using ...
1
vote
0answers
50 views
Add CMS subsystem to Codeigniter site
I have a rather complex (one man year development in total) specialist website application based on a CodeIgniter framework. I now have a requirement to add CMS functionality to it so that the users ...