Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: How do I connect CodeIgniter in oracle using XAMPP?
Post: RE: How do I connect CodeIgniter in oracle using X...

Try alternative php_ocix.dll, I had impression that you have installed incorrect version of the Oracle driver. These DLLs are built with VC dependencies.
10,756 Views
4 Replies
02-22-2015, 11:55 PM
dbui
    Thread: Controller not loading page
Post: RE: Controller not loading page

Go to your config folder and in config.php and make some changes to see error log, this should help identifying where problems are $config['log_threshold'] = 4; //change it to 4 so you can see all er...
14,723 Views
0 Replies
02-22-2015, 11:18 PM
dbui
    Thread: Help with updating to 3.0
Post: RE: Help with updating to 3.0

Hi there Your model got error with the first error function __Construct() { // Call the CI_Model constructor parent::__construct(); } change __Construct to __construct() as I ...
19,211 Views
0 Replies
02-22-2015, 11:06 PM
dbui
    Thread: can not pass varibles to view
Post: RE: can not pass varibles to view

Sorry about my post, I didnt read that Muzikant already had the fix!
13,586 Views
0 Replies
02-22-2015, 02:36 PM
dbui
    Thread: can not pass varibles to view
Post: RE: can not pass varibles to view

Hi there Change your controller as class Hello extends CI_Controller{ protected $name=''; //or can be public / private depending on your scope protected $color=''; public __construc...
13,586 Views
0 Replies
02-22-2015, 02:28 PM
dbui
    Thread: Best way to set up AJAX/JQuery process?
Post: RE: Best way to set up AJAX/JQuery process?

Hi Using GroceryCRUD is best for any tables , assume you have a users table, then few lines of code, you have full CRUD table for users. Also from the CRUD View, you can further do more stuff as y...
42,035 Views
0 Replies
02-21-2015, 12:00 PM
dbui
    Thread: entire site goes blank(white)
Post: RE: entire site goes blank(white)

Time to think of Version Control your code, you will find it helpful to manage your codes in version. IT helps you quickly differentiate the changes you made from your previous version to latest one...
5,196 Views
0 Replies
02-19-2015, 09:28 PM
dbui
    Thread: Update and Return
Post: RE: Update and Return

//Assume you have done with the update table //From the second query, put extra where to it, i.e $sql = "SELECT SEQ FROM TABLE WHERE FIELD='NEXTINV'"; $query = $this->db->query($sql); $row = $quer...
5,343 Views
0 Replies
02-19-2015, 09:12 PM
dbui
    Thread: Search with Pagignation
Post: RE: Search with Pagignation

code_help Wrote: (01-31-2015, 02:54 AM) -- Thanks Dbui for sharing this link. Just have two question before using this awesome plugin, : My search result is not table formatted so then is it worke...
15,853 Views
0 Replies
02-01-2015, 12:14 AM
dbui
    Thread: What's the best payment option to integrade with CI?
Post: RE: What's the best payment option to integrade wi...

Use Authorize.Net, they have PHP API for developer. I used this for my company project Regards
4,661 Views
0 Replies
01-30-2015, 10:49 PM
dbui
    Thread: Search with Pagignation
Post: RE: Search with Pagignation

Hi there I use DataTables for all my table usages in CodeIgniter, basically I dump my sql result to tables by using table helper class to VIEW then in view I simply make that table as instance o...
15,853 Views
0 Replies
01-30-2015, 10:40 PM
dbui
    Thread: load database blank screen
Post: RE: load database blank screen

try this simple test Add this function to your controller /** */ function test_db($terms){ if($terms){ $obj = $this->news_model->get_news($terms); // this should return array as p...
20,283 Views
0 Replies
01-30-2015, 10:24 PM
dbui
    Thread: Codeigniter custom validation rules in model
Post: RE: Codeigniter custom validation rules in model

Narf Wrote: (01-09-2015, 10:39 AM) -- [email protected] Wrote: (01-09-2015, 04:59 AM) -- Goal is that all data manipulation functionality should be in model. -- There's a difference betwee...
14,748 Views
0 Replies
01-09-2015, 11:56 AM
dbui
    Thread: REST Controller Issue
Post: RE: REST Controller Issue

How about using $this->dan_model->testSum(), I think the complaint was that CI didnt understand the 'alias' name of model
6,414 Views
0 Replies
12-30-2014, 04:54 PM
dbui
    Thread: Repopulate a form after submission
Post: RE: Repopulate a form after submission

For what you really want to happen then go with ajax post from view, I had similar project done such as products are similar or same attributes and adding them with same refilling attributes are cumb...
41,917 Views
7 Replies
12-30-2014, 04:42 PM
dbui
    Thread: Repopulate a form after submission
Post: RE: Repopulate a form after submission

Hi You can repopulate the form with CI easily please refer this http://www.codeigniter.com/user_guide/libraries/form_validation.html#repopulatingform I recommend that you should have those fi...
41,917 Views
7 Replies
12-29-2014, 06:56 PM
dbui
    Thread: CodeIgniter 3.0 - Error 404
Post: RE: CodeIgniter 3.0 - Error 404

I had same issues as soon as I tested to migrate my CI 2.2 based to CI 3.0. I found that CI 3.0 read the class starting with Uppercase, ie if you have test_controller then you need to rename it to T...
5,163 Views
0 Replies
12-19-2014, 10:44 AM
dbui
    Thread: I need a help with changing HTML and Javascript to Codeigniter
Post: RE: I need a help with changing HTML and Javascrip...

Maijane Wrote: (11-05-2014, 02:53 AM) -- I have HTML and Javascript code which i want to use it on codeigniter. HERE IS HTML ID Type:                        South African ...
8,441 Views
0 Replies
12-12-2014, 08:37 PM
dbui

Theme © iAndrew 2016 - Forum software by © MyBB