Tagged Questions

CodeIgniter is an open-source PHP web development framework created by EllisLab Inc. The framework implements the Model-View-Controller design pattern. It is praised for its performance and the quality of its documentation. These are generally regarded as pros of the framework: Small footprint ...

learn more… | top users | synonyms

1
vote
1answer
17 views

JSON PHP formatting Jackson parsing POJO

I am using CodeIgniter for some small REST WS, and can not get a properly (as viewed from Jackson parser point of view) formatted JSON output. For Jackson to do it, the output needs to be something ...
0
votes
0answers
9 views

Codeigniter saving uploaded filename in session

Fist sorry if its a stupid question, but i would like the opinion of a more experienced developer. I made a file upload form for CV's, and i am passing the encrypted cv file name, to the database by ...
2
votes
1answer
29 views

autocomplete in codeigniter

I tried to do autocomplete in codeignter using the code that I got from a site.But it is not working for me.Can anyone find the problem The view function that I used is given below <html> ...
0
votes
0answers
13 views

CI looking for Benchmark class in system/Common.php

I have had no issues on my local test machine, but when moving my project to a webhost (I have php 5.3, webhost is on 5.2.17. That is the only difference in the setup) I encounter this error: Fatal ...
0
votes
0answers
29 views

form validation error message

I get this error message when I want to validate username field : Unable to access an error message corresponding to your field name. For email field is_unique rule goes ok but when I use this ...
0
votes
0answers
8 views

403 error when access controller in subfolder (CodeIgniter)

This is my application skeleton: application controllers backend [backend_controllers_here] [frontend_controllers_here] models ...
0
votes
0answers
6 views

xdebug Codeigniter in Eclipse

I have Eclipse Indigo installed with Xdebug running a Codeigniter application. The application runs correctly, but all variables (in the debugger) show up as Uninitialized Anyone know if I need to ...
0
votes
0answers
11 views

Multi app and multi template in Codeigniter

I'm new to CI (version 2.1.0). I want to organize my application with this skeleton: application controllers backend [backend_controllers_here] ...
0
votes
0answers
16 views

Connection timed out on MSSQL and PHP under Code Igniter

I am using wamp on Windows Server 2008 with MSSQL 2005 and the app was coded under Code Igniter and for quite some time it was running perfectly with lots of users connecting and transacting to it. ...
1
vote
1answer
27 views

Why am I getting 404 with .htaccess in codeigniter?

On my local machine I have .htaccess in the web route that reads: RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ index.php/$1 [L] But when I attempt to visit ...
0
votes
1answer
32 views

Codeigniter userdata not avaliable

I'm using CodeIgniter for my project. I'm near end and I cannot change session "engine" now. I have captcha image for comment posting on url: example.com/captcha and code: ...
0
votes
2answers
23 views

Sanitize AJAX jquery autocomplete script

I was seeking help in getting jquery autocomplete implemented and someone mentioned that that following code is susceptible to sql injections. Being new to programming, I was unable to tell how/why. ...
-1
votes
1answer
21 views

codeigniter, bootstrap

i have the following folder structure application assets\ \css \js \images i have all the bootstrap files in the assets folder - css files in the css folder, js files in js folder ...
0
votes
2answers
34 views

Jquery autocomplete in codeigniter retrieving values but not displaying them

After a few hours of deciphering tutorials, I finally got codeigniter and jquery autocomplete to work with each other...kind of. Firebug is displaying the correct search terms back in JSON format, ...
0
votes
1answer
22 views

Operand type clash: datetime2 is incompatible with int (Between)

I am trying to get records inbetween two dates, however when I run the SQL I get the following error: Operand type clash: datetime2 is incompatible with int SELECT M.Id, M.MTimeInt, M.Date, ...
0
votes
1answer
34 views

jquery autocomplete with php and mysql not working in codeigniter

Jquery's autocomplete documentation seems to be a bit lacking, at least for beginners. I've scoured the net for good tutorials, but haven't found any. Heres what I have so far: HTML: <div ...
0
votes
0answers
21 views

Pusher not working with CodeIgniter

I have a simple scenario. User submits a comment and an alert should be displayed that there is a new comment. This is in my view file's header. <script> var pusher = new Pusher('key'); ...
-4
votes
0answers
22 views

upload image from url in codeigniter [closed]

I want to upload profile pic from a image url like [1]:http://everart.com/artist_image/46scadesign.jpg. and i want that this image will get upload into my codeigniter project directory ...
0
votes
0answers
43 views

What is a reasonable way to save Database-Calls?

I´m working on a PHP-Codeigniter Page that uses a MySQL Database. On this page Users can login with their Google-OpenID and save some file-upload "Projects". class Entry { private $mEntID; ...
0
votes
1answer
16 views

Codeigniter captcha

I ran into a small problem what i cant figure out. I would liked to use the captcha helper without database but nothing seems to be working. in the construct i created a variable which generates a ...
0
votes
1answer
24 views

insert user profile tank auth

I've seen question from this CodeIgniter: Passing fields to user_profiles database with Tank_auth and my problem same as Davezatch have, but mine like this on auth controller: ... if ...
0
votes
2answers
28 views

Ajax CodeIgniter form submit hide and show new view

I'm a newbie to ajax and trying to integrate it in to my CodeIgniter app. Basically, when the form is successful I would like the original template to be hidden and the new one shown? It currently ...
-6
votes
0answers
35 views

HOW TO AD DELETE FUNCTION IN PER ROW

<td><?php echo anchor('crm/delete/$r->id',$r->id);?>delete</td> how to add 'delete' in per row in codeigniter MODELS= function delete_row() { ...
0
votes
1answer
17 views

Load header in new window, using Code Igniter

I have a modal window that opens when clicking on an anchor inside my CodeIgniter application, I want to change it to rather open in a new window rather than in the current modal window. So what I did ...
0
votes
2answers
42 views

Uploading image with url address in Codeigniter

CodeIgniter upload library only supports uploading image file from PC. I am trying to make a code that a user can upload image with image url address. http://example.com/photo/jake2910.jpg I simply ...
0
votes
0answers
6 views

Sermepa payment system and CodeIgniter

I'm trying to set up an online payment system using Serpema which is an spanish system. I'm using online confirmation: after payment is accepted, the system sends me a POST with confirmation data and ...
0
votes
1answer
34 views

Get only part of the message and reload only one div

this is an ajax method that inserts the data into a db and should supposedly display the new content. <script type = "text/javascript"> $(document).ready(function() { ...
-4
votes
2answers
40 views

Call function of a class within a function in the function within the same class

From the function abc();1. How do I call ‘function a within class A’? ($this->a(); returns error)? 2. How do I access to public variable $bbb? (- I know the structure is bad but ‘require_once’ part ...
0
votes
3answers
43 views

Including codeigniter from a normal PHP file?

A 3rd party service that I'm using returns the users to a url like this: site.com/something.php?id=XXX&something=abc.... Therefore, I need to be able to accept $_GET parameters for only one ...
0
votes
1answer
24 views

codeigniter insert : special characters trims my string values

I have a problem executing insert commands that are loaded from a text file. I use codeIgniter "file" helper to load an sql line then I perform a simple db->query(content of my file). The problem is ...
2
votes
3answers
43 views

checking whether a form value has changed upon submit

I'm creating a web app with Codeigniter, and I've created some edit forms (which pull current values from a mysql database). The user can edit the current database data by editing the data in the ...
1
vote
1answer
33 views

Global Variable from Model

Not sure if it's global per se, but what I need is a variable that is set from within a model that is dynamically generated when the model gets called. However I need to set a variable that is ...
1
vote
3answers
66 views

Writing a PHP-based tool - should I use a framework? [closed]

I am making a very specific "control panel" sort of thing to organize information, record statistics, deliver alerts, and things like that. My initial plan was to make it using CakePHP. I tried Cake, ...
0
votes
2answers
36 views

CodeIgniter + jQuery Ajax runs successfully but error callback is called

I have a pretty simple CodeIgniter project that does some simple database work. Currently I have a controller method that deletes an item in the database. In my view, the code uses the jQuery ajax ...
-1
votes
0answers
19 views

CodeIgniter IIS 5.1 ERROR The system cannot find the file specified [closed]

I would like to use the CI to create an application, but I am however running into some strange error, perhaps anyone of you could help me? Please note that the localserver is an IIS 5.1 server When ...
0
votes
1answer
39 views

Mysql return empty matchs in JOIN as null

I have these tables cat (holds main data for categories) id_cat, original name cat_lang (holds cat details in different languages) lang, id_cat,local_name cat_media (holds cat media) id_cat, ...
0
votes
1answer
35 views

jQuery - Dynamic Trigger Not Working

This is one of those FRUSTRATING bugs in that it works and then it doesn't work and doesn't give any debug hints via Firebug. I have a "media room" page that allows users to view YouTube video and, ...
0
votes
3answers
34 views

Preventing direct access to specific functions in codeigniter

I have some methods in my Home controller such as authenticate. I don't want the user to access the authenticate by url. So, if he types in directly http://domain.com/index.php/home/authenticate in ...
0
votes
2answers
31 views

Codeigniter a simple way to get config-like array from cache folder

I have some data in array format which I wrote to a file in application/cache folder. Format is: $extra_data['some_key'] = 'some_data'; It is not directly about site config so I don't want to put ...
0
votes
2answers
51 views

How to convert an existing php application using phlanger

The PHP application uses codeigniter framwork 2.2. How can we convert it so that it can be hosted in .net cloud hosting platform like AppHarbor which supports Phalanger converted PHP code. The PHP ...
0
votes
0answers
55 views

How do I flush memory use in CodeIgniter

I am facing problem of site break down. Since this is the site related to photos. It’s using almost 95% of memory of server. When it reaches to 100% the site is down. I checked from the profiler, and ...
0
votes
1answer
16 views

htaccess and image caching

Need Help, I want create an image access caching, example image at url example.com/caching/m_images.jpg if that image exists then show image, but if don't exist, maybe with .htaccess script, to ...
0
votes
0answers
28 views

Which Cache Is Better In CodeIgniter? [closed]

Possible Duplicate: codeigniter : what is the best practice for caching? I Wanted to Enable Cache in my CodeIgniter Application , Which Cache Approach is Better form the following list ...
0
votes
1answer
33 views

json object posted to codeingiter

I am making a very simple mistake but couldn't able to find it. I posted JSON object to CodeIgniter controller using AJAX but was not able to retrieve this value in the controller function. My code is ...
0
votes
1answer
38 views

Facebook connect with codeigniter to get email of user

i am using codeigniter library for facebook connect. code for that $access_token = $this->facebook->getAccessToken(); $this->facebook->setAccessToken($access_token); ...
-1
votes
2answers
51 views

Send mail using codeigniter

I want to send mail using codeigniter. I am using codeigniter as mailer. i have written a controller and upload it on net . when i call the controller. This shows errors.I am writing my controller ...
0
votes
1answer
43 views

Redirect to a hidden div

I am using codeigniter to build a web app. I am having some problems with the following scenario. The user clicks on submit button on 'home' He is redirected to home/ok where I retrieve his info ...
2
votes
1answer
63 views

How Do I Limit Text By Line Length In PHP?

I am currently developing a CMS and want to add in the functionality of limiting an excerpt of text by its line length. Say I want to control the display of text and ensure all blocks are the same ...
0
votes
3answers
39 views

Codeigniter routing URL with product name to product id

I need to redirect the URLs like this http://mysite.com/store/store-name to http://mysite.com/stores/products/store-id. Note that i need to get the store id from the database. So is it possible to do ...
0
votes
3answers
20 views

Using multiple callbacks in form validation in codeigniter

I am separating the logic of defining form validation rules into a library. i want to apply multiple callback functions on a single form element. $this->form_validation->set_rules('email', ...

1 2 3 4 5 211