Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: custom library not load
Post: RE: custom library not load

Hi You added one extra  } in your code Please remove } top of the public function verify() function
9,531 Views
4 Replies
06-12-2016, 10:30 PM
Bhavesh
    Thread: pagination library hide some links
Post: RE: pagination library hide some links

Hi You can use $config[‘num_links’] = 2; For more help visit below link: http://www.codeigniter.com/user_guide/libraries/pagination.htm
3,656 Views
2 Replies
04-19-2016, 06:00 AM
Bhavesh
    Thread: PayPal Recurring Profile
Post: PayPal Recurring Profile

Hi Friends Please suggest, how to create Recurring profile using express check out in PayPal. Any library available in CodeIgniter ? Please share and help me
2,679 Views
1 Replies
03-30-2016, 10:16 PM
Bhavesh
    Thread: Database INSERT changes default 'no' to NULL
Post: RE: Database INSERT changes default 'no' to NULL

webmachine Wrote: (03-07-2016, 04:23 PM) -- Narf Wrote: (03-06-2016, 11:34 PM) -- You're explicitly inserting NULL ... of course that's what's going to be inserted. The default value is used only if...
9,975 Views
9 Replies
03-07-2016, 09:48 PM
Bhavesh
    Thread: Same project but diff folders,login issue in live server
Post: RE: Same project but diff folders,login issue in l...

Hi You need to define different base url in both folders config file.
2,918 Views
1 Replies
03-07-2016, 01:02 AM
Bhavesh
    Thread: Database INSERT changes default 'no' to NULL
Post: RE: Database INSERT changes default 'no' to NULL

Hi First of all you need to check checkbox - checked or not like below: if (isset($_POST['guidelines_signed']) && $_POST['guidelines_signed'] == 'on') { //if checked than append value in insert ...
9,975 Views
9 Replies
03-06-2016, 09:59 PM
Bhavesh
    Thread: CODEIGNITER call to a member function num rows on boolean
Post: RE: CODEIGNITER call to a member function num rows...

Hi Change Below Code: PHP Code: -- if($query->num_rows() == 1) // if the affected number of rows is one---LINE 19---   {       return true;   }   else   {       return false;   } --...
18,267 Views
1 Replies
02-26-2016, 10:36 PM
Bhavesh
    Thread: Tendoo CMS: Nexo 2.2.6 Point Of Sale Module
Post: RE: Tendoo CMS: Nexo 2.2.6 Point Of Sale Module

Blair2004 Wrote: (02-22-2016, 09:29 AM) -- Hey guys, check out this video about Tendoo CMS module's "Nexo" on YouTube, feedbacks are welcome Thanks (y) https://www.youtube.com/watch?v=x5-zth_V...
16,500 Views
11 Replies
02-22-2016, 09:51 PM
Bhavesh
    Thread: Cron Job
Post: RE: Cron Job

Thanks to all for valuable reply. And below code is working for me. CI uses CLI requests. Means you have to use PHP CLI to use this cron job properly. From SSH in crontab view it should be similar...
4,562 Views
3 Replies
02-19-2016, 04:13 AM
Bhavesh
    Thread: Cron Job
Post: Cron Job

Hi friends How to call controller and action using cron job? my cron action's absolute path is below /[FOLDER_NAME]/[USERNAME]/public_html/index.php/[CONTROLLER_CRON]/[CONTROLLER_ACTION] I...
4,562 Views
3 Replies
02-19-2016, 02:18 AM
Bhavesh
    Thread: Custom post on facebook
Post: Custom post on facebook

Hi Friends, I have used java script for custom share post on Facebook. Below is my code PHP Code: -- var FB; window.fbAsyncInit = function() { FB.init({ appId : 'xxxxxxx', xfbml : tr...
2,412 Views
1 Replies
02-12-2016, 05:27 AM
Bhavesh
    Thread: Getting confused with where in database
Post: RE: Getting confused with where in database

Hi Please load model in your controller. Like         $this->load->model('[YourModelName]');
4,555 Views
4 Replies
02-07-2016, 11:25 PM
Bhavesh
    Thread: html tr onclick to call controller function
Post: RE: html tr onclick to call controller function

Hi You can write something like below: Code: --
8,443 Views
1 Replies
02-05-2016, 09:47 PM
Bhavesh
    Thread: how to schedule sent email in my codeigniter project
Post: RE: how to schedule sent email in my codeigniter p...

Hi Please write cron job for send email. I don't think that any library available for scheduler in CI. If any one know please share. Thanks
13,673 Views
8 Replies
01-27-2016, 10:22 PM
Bhavesh
    Thread: Configuring Multi-Language Support
Post: RE: Configuring Multi-Language Support

mertdogan Wrote: (01-18-2016, 01:35 PM) -- I want to build multi-language site. My config/config.php file has: $config['language'] = 'turkish'; setting. My config/autoload.php file has: $aut...
16,656 Views
9 Replies
01-18-2016, 09:38 PM
Bhavesh
    Thread: [SOLVED] How to select default controller in subfolder?
Post: RE: How to select default controller in subfolder?

Narf Wrote: (01-06-2016, 05:08 PM) -- No, you can't do that. -- You can like /application/admin/controllers/Welcome.php and than set default Am I right Narf?
24,765 Views
10 Replies
01-06-2016, 10:10 PM
Bhavesh
    Thread: MongoDB
Post: RE: MongoDB

Use this one https://github.com/inouet/kettle
11,884 Views
8 Replies
01-04-2016, 06:00 AM
Bhavesh
    Thread: Multiple application folder in CI
Post: RE: Multiple application folder in CI

If you would like to share a common CodeIgniter installation to manage several different applications simply put all of the directories located inside your application folder into their own sub-folder...
4,411 Views
3 Replies
12-28-2015, 06:01 AM
Bhavesh
    Thread: [Solved] Count All Result Where Now Date + 2 Days
Post: RE: Count All Result Where Now Date + 2 Days

skunkbad Wrote: (12-17-2015, 09:08 PM) -- Maybe this: Code: -- SELECT * FROM `calendar` WHERE `date` BETWEEN NOW() AND ( CURDATE() + INTERVAL 2 DAY ); -- -- Yes, this is perfect.
6,034 Views
3 Replies
12-17-2015, 10:40 PM
Bhavesh
    Thread: Unable to write checkbox to mysql db
Post: RE: Unable to write checkbox to mysql db

Please write, $this->checkbox=0; if($this->input->post('checkbox')) { $this->checkbox=1; }
9,051 Views
8 Replies
11-30-2015, 09:53 PM
Bhavesh

Theme © iAndrew 2016 - Forum software by © MyBB