Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Pubvana/Open-Blog For Sale
Post: Pubvana/Open-Blog For Sale

Hi all,   I'm not exactly sure where to put this, so please move if needed. I've been writing in CI since two thousand (mumblemumble) and a few years ago I stumbled onto a project I wanted to fu...
1,143 Views
0 Replies
08-20-2020, 01:52 PM
enlivenapp
    Thread: htaccess for redirecting all requests to public folder in shared hosting
Post: RE: htaccess for redirecting all requests to publi...

You get what you pay for... cheaper = less security. If someone gains access to files apache can serve, they can get database login/password and then everything in the database. Sometimes that's ...
23,680 Views
8 Replies
03-16-2020, 06:23 PM
enlivenapp
    Thread: IonAuth: how to remove not needed session cookie?
Post: RE: IonAuth: how to remove not needed session cook...

While you may find someone here that can answer your question, you might be better served to ask the developer himself... https://github.com/benedmunds/CodeIgniter-Ion-Auth/issues
2,835 Views
2 Replies
08-01-2018, 05:22 AM
enlivenapp
    Thread: intController() and __construct()
Post: RE: intController() and __consturct()

kilishan Wrote: (07-30-2018, 02:13 PM) -- You're overthinking it :) -- It's how I roll.   :D Thanks!
10,042 Views
6 Replies
07-30-2018, 02:29 PM
enlivenapp
    Thread: intController() and __construct()
Post: intController() and __construct()

I'd like to make sure I have my head wrapped around the removal no longer need of __contruct() from controllers to construct the parent. I I've got that  PHP Code: -- public function __construc...
10,042 Views
6 Replies
07-30-2018, 01:26 PM
enlivenapp
    Thread: prevent my application from unauthorized mobile application
Post: RE: prevent my application from unauthorized mobil...

The way I've done this before with an API was to look for a 'app-id' sent from the application... if it wasn't present the request was rejected.
3,779 Views
3 Replies
07-26-2018, 12:50 PM
enlivenapp
    Thread: Login library
Post: RE: Login library

FYI, Ion-Auth recently began working on Ion-Auth 3, it's in (late?) testing, and they're still keeping up with fixes and such with Ion-Auth 2. They are planning a CI4 version once CI4 is released.
8,949 Views
6 Replies
07-25-2018, 08:24 PM
enlivenapp
    Thread: CI4: what the use of esc inside view
Post: RE: CI4: what the use of esc inside view

Not all content is generated by the developer's (code/template)... Don't assume you'll catch everything going in or your customers won't find a way to break something(because they will).
11,506 Views
9 Replies
07-24-2018, 08:27 PM
enlivenapp
    Thread: CI 4 Stable Release
Post: RE: CI 4 Stable Release

but... could you announce the date, you might announce the date of a firm date that might be a tentative date for a stable release? ok ok... I'll go back to my dark corner.
6,659 Views
4 Replies
07-23-2018, 03:31 PM
enlivenapp
    Thread: Adding admin area
Post: RE: Adding admin area

The short version is your route is looking for the Admin Controller with a 'dashboard' Method.  It should be looking for the Admin Controller with the View Method.  You're close, almost there. To...
10,050 Views
5 Replies
07-13-2018, 07:12 AM
enlivenapp
    Thread: facing problem in website coding
Post: RE: facing problem in website coding

It depends how your CI installation is set up. First two options to figure it out is look for the HTML file that's loaded, if not there, check in the CSS file(s). Without knowing how your instal...
2,341 Views
1 Replies
07-11-2018, 09:06 PM
enlivenapp
    Thread: Issue with the controller arguement
Post: RE: Issue with the controller arguement

Sorry for the probably dumb question... between this and the other thread I'm still somewhat confused. So do we use `intController()` now instead of `__contsruct()` when we need to automatically se...
13,245 Views
16 Replies
07-11-2018, 08:42 AM
enlivenapp
    Thread: google captcha not working
Post: RE: google captcha not working

Quote: -- I want to add google captcha with validation of only (Regno field and Google captcha) -- remove PHP Code: -- $this->form_validation->set_rules('dob', 'dob','required'); -- an...
2,958 Views
1 Replies
07-07-2018, 07:21 AM
enlivenapp
    Thread: CI4 Slug Library
Post: CI4 Slug Library

Hey all, So while learning to use and create things with CI4 I ended up playing with an old existing library to convert it to CodeIgniter 4.   I have it working and figured I'd share what I've l...
1,804 Views
0 Replies
07-06-2018, 01:40 PM
enlivenapp
    Thread: REST_Controller - limits & levels?
Post: RE: REST_Controller - limits & levels?

Levels are basically permissions. So you would check that the API Key/User has permission (correct level) to perform that particular method (or even in the entire class). The default level is 1 (or ...
2,030 Views
1 Replies
07-06-2018, 09:43 AM
enlivenapp
    Thread: Remove index.php
Post: RE: Remove index.php

It is, but the page didn't completely answer the OP's question. That's why I added more info after "However, after reading that page,"... to imply that page had important information he needs too.
6,048 Views
4 Replies
07-05-2018, 11:35 AM
enlivenapp
    Thread: Remove index.php
Post: RE: Remove index.php

That page isn't too informative yet.  However, after reading that page, In the below file: PHP Code: -- application/Config/App.php -- PHP Code: -- Change: public $indexPage = 'index.php';...
6,048 Views
4 Replies
07-05-2018, 11:03 AM
enlivenapp
    Thread: *Project Log* - Dove Forums - Codeigniter Forums Solution
Post: RE: *Project Log* - Dove Forums - Codeigniter Foru...

T3utonicT3rror Wrote: (07-02-2018, 01:34 PM) -- enlivenapp Wrote: (07-02-2018, 09:30 AM) -- T3utonicT3rror I sent you a message. -- Where abouts have you sent it? Noting in my PM’s or was it v...
38,251 Views
21 Replies
07-02-2018, 01:43 PM
enlivenapp
    Thread: Show your support!
Post: RE: Show your support!

muuucho Wrote: (06-30-2018, 10:58 AM) -- Paradinight Wrote: (06-30-2018, 09:52 AM) -- I am interested in how many people donate money for the project. How can i help? 4 help wanted issue. -- I'...
82,822 Views
34 Replies
07-02-2018, 11:53 AM
enlivenapp
    Thread: REST_Controller - Generating the API-KEYs?
Post: RE: REST_Controller - Generating the API-KEYs?

Don't do a random string manually. Sadly, Chris has taken the Phil Sturgeon School of Documentation masters course. Check out the below file on how to generate keys. https://github.com/chriskac...
8,782 Views
3 Replies
07-02-2018, 10:37 AM
enlivenapp

Theme © iAndrew 2016 - Forum software by © MyBB