Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: $this->cart->contents() is empty. when ever i try to call function from Postman
Post: $this->cart->contents() is empty. when ever i try ...

Hi, I am trying to show cart items. but  when ever i try to call function from Postman (http://www.xyz.com/Order/OrderSuccess) is shows empty array and if i call same function in browser(http://www...
2,696 Views
1 Replies
08-21-2018, 11:46 AM
ktmonty
    Thread: Image convert into base64 and store in database
Post: Image convert into base64 and store in database

I have try to convert image into base64 but its not showing image.when i fetch it from database( it works with smaller images like 400X300. but not with large dimension images  ). which datatype shoul...
12,145 Views
6 Replies
06-07-2018, 03:51 AM
ktmonty
    Thread: Warning: Uncaught Exception: Session: Configured save path 'C:\Windows\temp' is not w
Post: Warning: Uncaught Exception: Session: Configured s...

Hello i am using Version 3.1.8. i have created application on xampp  server and deploy it on iis server now  i am gating "Warning: Uncaught Exception: Session: Configured save path 'C:\Windows\temp' i...
26,996 Views
5 Replies
03-27-2018, 03:39 AM
ktmonty
    Thread: How to remove public/index.php/ from url
Post: RE: How to remove public/index.php/ from url

Thanks for reply everyone i tried same as the document but it still not working for this url Code: -- http://localhost:8080/codeIgniter4/ -- "If you see this message, you have not configured...
26,204 Views
13 Replies
01-22-2018, 11:39 PM
ktmonty
    Thread: How to remove public/index.php/ from url
Post: How to remove public/index.php/ from url

I want normal URL like www.sample.com/controller not www.sample.com/public/index.php/controller. .htaccess :- RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}...
26,204 Views
13 Replies
01-22-2018, 12:15 AM
ktmonty
    Thread: where() showing "IS NULL" instead of variable value
Post: RE: where() showing "IS NULL" instead of...

InsiteFX Wrote: (01-02-2018, 03:52 AM) -- Did you use this to see what is going on? PHP Code: -- $temp = $this->db->last_query(); -- Also is there suppose to be a space after the opening quote bef...
6,050 Views
5 Replies
01-02-2018, 04:07 AM
ktmonty
    Thread: where() showing "IS NULL" instead of variable value
Post: RE: where() showing "IS NULL" instead of...

XtreemDeveloper Wrote: (01-01-2018, 11:39 PM) -- $emial=''[email protected]'; $pass= 123; $this->db->select('*')->from('user')->where(' email',$email)->where('password',$pass)-> get()->result(); You...
6,050 Views
5 Replies
01-01-2018, 11:43 PM
ktmonty
    Thread: where() showing "IS NULL" instead of variable value
Post: where() showing "IS NULL" instead of variable valu...

Hello guys, $email=''[email protected]'; $pass= 123; $this->db->select('*')->from('user')->where(' email',$email)->where('password',$pass)-> get()->result(); this gives result :- 'select * from uses whe...
6,050 Views
5 Replies
01-01-2018, 11:34 PM
ktmonty
    Thread: How to accept json data in codeigniter?
Post: How to accept json data in codeigniter?

Hello,  i am getting data from angular2  which is ion json format. its content type  application/json $fileData = file_get_contents("php://input"); $objFileData = json_decode($fileData); ...
3,452 Views
1 Replies
09-15-2017, 06:29 AM
ktmonty
    Thread: Help with Binding
Post: RE: Help with Binding

Hope this work. $ncCouponQuery = $this->db->select('*') ->from('coupon_master') ->group_by('coupon_master.ID') ->join('coupon_analytics','coupon_analytics.CouponID=coupon_master.ID') ->get() ->r...
3,614 Views
3 Replies
09-13-2017, 03:11 AM
ktmonty
    Thread: How to Config CI3 Connect Sql Server 2014
Post: RE: How to Config CI3 Connect Sql Server 2014

https://technet.microsoft.com/en-us/library/hh994592(v=ws.11).aspx#WebPI
5,331 Views
4 Replies
09-08-2017, 03:29 AM
ktmonty
    Thread: Use of Helper and libraries
Post: RE: Use of Helper and libraries

InsiteFX Wrote: (09-01-2017, 03:16 AM) -- A CodeIgniter helper is a set of related functions (Common functions) which you could use them within Models, Views, Controllers,.. everywhere. Once you loa...
8,579 Views
5 Replies
09-04-2017, 02:36 AM
ktmonty
    Thread: How to call controller from view without form submission ?
Post: RE: How to call controller from view without form ...

Kaosweaver Wrote: (09-01-2017, 08:12 AM) -- Since this is a menu (from what I gather), if I were to put it in the controller (which I agree is where it belongs, strictly speaking) - I would create a ...
13,726 Views
10 Replies
09-04-2017, 02:32 AM
ktmonty
    Thread: How to call controller from view without form submission ?
Post: RE: How to call controller from view without form ...

Kaosweaver Wrote: (09-01-2017, 06:14 AM) -- What you really need is a model to load in your view so your menu can read the submenu items. To do this you could just pull in the instance of CI, then ...
13,726 Views
10 Replies
09-04-2017, 02:31 AM
ktmonty
    Thread: error page not found
Post: RE: error page not found

noblesomto Wrote: (08-31-2017, 02:39 AM) -- good day, am new to code igniter, been practising with tuorial on the manual to create a blog,  but my view page keeps saying page not found,  thi...
2,624 Views
1 Replies
08-31-2017, 10:51 PM
ktmonty
    Thread: How to call controller from view without form submission ?
Post: RE: How to call controller from view without form ...

InsiteFX Wrote: (08-29-2017, 10:01 AM) -- Using Ajax -- Thanks InsiteFX,    i am in situation where ajax is not option. I am in a loop where i get menu id and i want to fatch the submenu from that i...
13,726 Views
10 Replies
08-31-2017, 10:42 PM
ktmonty
    Thread: Use of Helper and libraries
Post: RE: Use of Helper and libraries

InsiteFX Wrote: (08-29-2017, 10:03 AM) -- Helpers are method/functions where Libraries are classes with methods/functions -- Thanks for reply. I know basic diffrence but in which situation we use he...
8,579 Views
5 Replies
08-31-2017, 10:38 PM
ktmonty
    Thread: Use of Helper and libraries
Post: Use of Helper and libraries

Hi,   can any one explain difference (https://www.google.co.in/search?rlz=1C1CHBD_enIN756IN756&q=difference&spell=1&sa=X&ved=0ahUKEwixn8u7kPzVAhULrY8KHTknBaYQvwUIIigA) between helpers and libraries?...
8,579 Views
5 Replies
08-29-2017, 02:31 AM
ktmonty
    Thread: How to call controller from view without form submission ?
Post: How to call controller from view without form subm...

How to call controller from view without form submission ?
13,726 Views
10 Replies
08-29-2017, 02:12 AM
ktmonty
    Thread: Controller for header,footer and sidebar
Post: Controller for header,footer and sidebar

How to create separate controllers for header,footer and sidebar so i can perform operations on it?
10,078 Views
4 Replies
08-11-2017, 05:52 AM
ktmonty

Theme © iAndrew 2016 - Forum software by © MyBB