Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Page request fails to load debug toolbar.
Post: RE: Page request fails to load debug toolbar.

I just found the solution to this question. If it helps anyone else, here's what I did wrong: During apache setup I found I had to use port 8080 instead of port 80. So, I replaced the default line in...
1,412 Views
1 Replies
03-21-2021, 01:33 PM
codeguy
    Thread: Page request fails to load debug toolbar.
Post: Page request fails to load debug toolbar.

I've tried all suggestions here and in SO. .env: CI_ENVIRONMENT = development app/Config/App.php: public $baseURL = 'http://localhost/MZCI4/public/'; If I place echo "First controller test";  at to...
1,412 Views
1 Replies
03-21-2021, 10:57 AM
codeguy
    Thread: Security with CI
Post: RE: Security with CI

I just ran across a great article on web app security at this site (https://www.monitis.com/blog/codeigniter-security-tips/) It's clear, concise and aimed directly at CI based apps. or use https...
20,061 Views
10 Replies
05-01-2018, 11:47 AM
codeguy
    Thread: Security with CI
Post: RE: Security with CI

I checked for replies for the first few days but gave up. Just checked back again now and found these 3. So, thanks much for the replies. They are all useful. Since then I also found this one titled: ...
20,061 Views
10 Replies
04-21-2018, 06:01 PM
codeguy
    Thread: Security with CI
Post: Security with CI

My first CI web app is now at the final stages. I've been reading articles about security for a while, especially the last couple of days. But now I want to seriously understand what the risks are spe...
20,061 Views
10 Replies
03-21-2018, 10:07 AM
codeguy
    Thread: Multiple table joins
Post: RE: Multiple table joins

JayAdra Wrote: (11-16-2017, 06:41 PM) -- Your joins are linking A.widgetID to B.tagID, whereas they need to be A.widgetID to B.widgetID (linking to the foreign key). Otherwise you'll be linking data ...
3,043 Views
2 Replies
11-16-2017, 10:37 PM
codeguy
    Thread: Multiple table joins
Post: Multiple table joins

To make maintenance easier and possibly get better performance I have split a large table 'widgets' with many columns into 4 smaller tables; widgets, tags, links and notes. For each widget row there a...
3,043 Views
2 Replies
11-16-2017, 05:12 PM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

dave friend Wrote: (09-30-2017, 12:57 PM) -- Have you loaded template_library? -- Right. Stands to reason that after creating new files and editing some existing ones to do this new thing - use a t...
19,891 Views
17 Replies
09-30-2017, 01:42 PM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

@PaulD Did a lot of reading yesterday. Can't understand why something as conceptually as simple as a template for a view can be so obscure in the CI context. Anyway, this AM I tried to just copy/past ...
19,891 Views
17 Replies
09-30-2017, 10:30 AM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

PaulD Wrote: (09-28-2017, 10:50 AM) -- Just saw your latest post and I have to say I do not like the approach. It looks like you are loading all your views into vars, and then outputting them in a 'p...
19,891 Views
17 Replies
09-28-2017, 11:36 AM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

Thanks. I'm trying to implement a strategy from the several good suggestions I've read here. I now have: Controller and page master view lib_page_view: PHP Code: -- $data3['tunes']=$this->M_tun...
19,891 Views
17 Replies
09-28-2017, 10:25 AM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

@InsiteFX, I did come across that while trying to figure this out and it seemed it might be useful. I'll take another look. Thanks for your help.
19,891 Views
17 Replies
09-27-2017, 07:14 AM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

@PaulD, You described your example as a view. I read it several times but my brain did not accept it. What confused me was you had four "$this->load->view() stmts in the example. My basic understandin...
19,891 Views
17 Replies
09-27-2017, 06:58 AM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: RE: How do I create a nested view within a nested ...

Thanks for the encouraging reply. But I am confused that I see no data being transferred to your views. Like I'd expect something like . . $this->load->view('partials/profile_view',$profile_data);...
19,891 Views
17 Replies
09-26-2017, 03:54 PM
codeguy
    Thread: How do I create a nested view within a nested view?
Post: How do I create a nested view within a nested view...

I've been stuck on this for a few days now and can't seem to put the final piece of the puzzle in place.  I've created a page of nested views that I populate with vars obtained from calls to models fr...
19,891 Views
17 Replies
09-25-2017, 05:24 PM
codeguy
    Thread: CI system can't see default controller set in config/routes
Post: RE: CI system can't see default controller set in ...

Thanks for the advice John. I found last nite that I could call a simple 'test' controller that I wrote like the 'Welcome' controller that loads a simple view. I now suspect I can't load my other cont...
10,483 Views
5 Replies
06-06-2017, 06:37 AM
codeguy
    Thread: CI system can't see default controller set in config/routes
Post: RE: CI system can't see default controller set in ...

PaulD Wrote: (06-05-2017, 11:12 AM) -- Paul, If you change the filename you also have to change the class name within the file. Sorry if my post wasn't clear on that . . . "Finally, I tried...
10,483 Views
5 Replies
06-05-2017, 12:17 PM
codeguy
    Thread: CI system can't see default controller set in config/routes
Post: CI system can't see default controller set in conf...

I've been stuck on this for several days now. I'm attempting to deploy CI 3+ app to GoDaddy server (Linux, CPanel), shared hosting acct. I've placed myapp in subfolder 'CIP17'  directly below publi...
10,483 Views
5 Replies
06-05-2017, 10:58 AM
codeguy
    Thread: Opening a new page w/ dynamic data
Post: RE: Opening a new page w/ dynamic data

Paradinight Wrote: (03-06-2017, 01:19 PM) -- codeguy Wrote: (03-06-2017, 12:11 PM) -- Paradinight Wrote: (03-06-2017, 11:34 AM) -- Wouter60 made a little misstake :) It missing a / Code: -- wi...
21,241 Views
15 Replies
03-06-2017, 05:33 PM
codeguy
    Thread: Opening a new page w/ dynamic data
Post: RE: Opening a new page w/ dynamic data

Paradinight Wrote: (03-06-2017, 11:34 AM) -- Wouter60 made a little misstake :) It missing a / Code: -- window.open(""+tuneID,'_blank'); -- -- When I try . . Code: -- window.open(""+tuneID,'_bl...
21,241 Views
15 Replies
03-06-2017, 12:11 PM
codeguy

Theme © iAndrew 2016 - Forum software by © MyBB