0
votes
3answers
48 views
Simple codeigniter refactoring question — best practice
Hi all,
I have a quick question about refactoring php code. Below are three functions. The first two appear quite similar, and only differ with one if statement. The third combines the first two …
0
votes
2answers
29 views
Code Igniter--simple controller question
I'm designing a simple web-app in CI. I have a registration controller, and a paypal controller. Both work fine separately, but I need to use some functions of the paypal controller as a part of …
0
votes
2answers
30 views
How does apache map http://www.example.com/index.php/abc/def to index.php?
Codeigniter php framework URLs look like the above.
I'm surprised that apache maps this request to index.php at the server root. I expected it to interpret /index.php/abc/def as a file 'abc' in a …
0
votes
2answers
33 views
Apache comes back with nothing
Hello -
I'm running Apache 2.046 with PHP 5.x and I am experiencing very odd behavior on a CodeIgniter app.
The frustrating thing is that it is not consistent.
Occasionally when I call up my app …
0
votes
3answers
41 views
PHP / CodeIgniter - Iterating through 9000+ DB rows generates a download of blank page
I'm trying this:
function send_sms() {
$liveQuery = $this->db->get('liveList');
$counter = 0;
foreach($liveQuery->result() as $row):
$counter = $counter+1;
echo("Not hatin', just …
0
votes
2answers
29 views
Is there a way to have a Codeigniter controller return an image?
Hey,
I was wondering if there was a way for a controller to, instead of returning a string, or a view, return an image (be it JPG, PNG etc). For example, instead of ending with a …
0
votes
1answer
18 views
Integrating FCKEditor in CodeIgniter
Hi .....
I want to integrate fckEditor in CodeIgniter. Can you help me to implement it ?
0
votes
2answers
54 views
codeigniter multiple file upload
Hello,
I am trying to get a multiple upload library working for my codeigniter based website, I have it working almost but I have a slight problem if I upload more than one image, the file …
0
votes
2answers
18 views
Setting variable to be accessed by different methods within the class
I have a controller with different methods, but they all have to set a variable containing a list of items to be shown in a box in the view, I extract data from the DB and set $data['categories'].
Can …
0
votes
1answer
14 views
codeigniter installation problem on shared host
my host account is something like:
~
~/public_html
~/public_html/system/application
to access my web, I need to put http://example.com/~userid in address bar
I install codeigniter in the …
0
votes
2answers
36 views
Codeigniter and uploading zip files
Hello,
I am currently building a backend to a site using the codeigniter framework, I have hit a bit of a problem, I needing a way to allow the user to upload a zipped folder of images, on completing …
0
votes
4answers
41 views
Codeigniter form_helper getting database rows to be values in select menu
I know this is going to be really simple once I post it,
I am writing a form, which has a select menu in it, I want the values to pulled from the database, so I thought it would be something along …
0
votes
2answers
21 views
Codeigniter Routes for filename with extension
I am using codeigniter and its routes system successfully with some lovely regexp, however I have come unstuck on what should be an easy peasy thing in the system.
I want to include a bunch of search …
1
vote
1answer
95 views
Any existing pure PHP “make” tools?
Let me elaborate on the question...
I have a custom CMS (built on codeigniter FTW) that includes many different types of modules.
Every time we have a new project come through the door, it is a …
0
votes
2answers
23 views
Codeigniter In Wordpress Page
Alright, I have a wordpress site, that I want to have a clientportal built with codeigniter in it. For the sake of continued theme, I would like to have the codeigniter program where the page/text …
