Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Should CI-4 require PHP 7.3 ?
Post: RE: Should CI-4 require PHP 7.3 ?

Google Cloud finally got PHP 7.2 for App Engine Standard late last year. Moving to 7.3 may make CI4 incompatible with a large swath of cloud services- I'm not sure what AWS and Azure are doing. Edit:...
19,205 Views
19 Replies
03-14-2019, 10:29 AM
NiteRaven
    Thread: Advice CI 3.x or 4.x
Post: RE: Advice CI 3.x or 4.x

I'm working on a large enterprise project that is due to be launched early next year. I started with CI4 Alpha.2 and while there have been several bugs discovered, I have found the framework to be ove...
10,802 Views
7 Replies
12-28-2018, 09:04 AM
NiteRaven
    Thread: Validation Placeholders being ignored for is_unique
Post: RE: Validation Placeholders being ignored for is_u...

Any updates on this? This comes in to play when post data needs validating and you call a validation rule set by name... instead of by array... so you can't actually pass {$id}: $this->validate('us...
3,385 Views
2 Replies
12-06-2018, 07:23 PM
NiteRaven
    Thread: Session/Redis question
Post: Session/Redis question

If I'm using redis for sessions and I store some session data in variables for 'user' (active user data) and 'business' (active business) and then I get those session variables with: $session->get(...
1,957 Views
1 Replies
12-06-2018, 03:34 PM
NiteRaven
    Thread: Undefined variable: _SESSION
Post: RE: Undefined variable: _SESSION

kilishan Wrote: (12-03-2018, 02:03 PM) -- That should be fixed as of a day or so ago. Let me know if it's working for you or not! -- I just saw your commit from yesterday and yes this fixed the iss...
20,413 Views
11 Replies
12-03-2018, 02:26 PM
NiteRaven
    Thread: CodeIgniter\Validation\Validation::setRules() must be of the type array, string given
Post: RE: CodeIgniter\Validation\Validation::setRules() ...

This was fixed! Thanks!
5,558 Views
4 Replies
12-02-2018, 03:29 PM
NiteRaven
    Thread: Undefined variable: _SESSION
Post: RE: Undefined variable: _SESSION

kilishan Wrote: (11-22-2018, 09:49 PM) -- I just pushed a fix for this. Let me know if it works for you. -- In alpha3 you fixed the issue where php spark serve would not load (or exit out) if a red...
20,413 Views
11 Replies
12-02-2018, 03:14 PM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

Cool, cool. I'm happy to be the guinea pig! :) Any updates on that?
13,572 Views
13 Replies
12-02-2018, 08:38 AM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

I'm guessing the paths, specifically system, has changed since ci4 is in the vendor folder now?
13,572 Views
13 Replies
12-01-2018, 05:13 PM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

Ok, cool... we are getting closer. I ran php spark serve and it won't run: C:\Users\Kyle\Desktop\OGD\appstarter>php spark serve Warning: require(system/bootstrap.php): failed to open stream: No ...
13,572 Views
13 Replies
12-01-2018, 05:06 PM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

I realize that would be the easy way :) In fact, that's the way I've been doing web development for a long time. I'm trying to get hip with the cool kids and do the whole composer thing.
13,572 Views
13 Replies
12-01-2018, 03:11 PM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

I have a feeling the process will be rename framework to framework_old and then install codeigniter4/appstarter and then move my application and other files over as needed. Am I thinking about that co...
13,572 Views
13 Replies
12-01-2018, 10:45 AM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: RE: How-to update codeigniter4 framework via compo...

ciadmin, thanks for the quick reply, this sounds like a good solution! How do I rebuild my project folder? What steps do I need to take given the way I first installed the project?
13,572 Views
13 Replies
12-01-2018, 10:25 AM
NiteRaven
    Thread: How-to update codeigniter4 framework via composer?
Post: How-to update codeigniter4 framework via composer?

Hi all, I installed alpha2 via this command: composer create-project codeigniter4/framework (or I think I may have actually used:) composer install codeigniter4/framework:dev-master How...
13,572 Views
13 Replies
12-01-2018, 10:04 AM
NiteRaven
    Thread: Form with POST return null
Post: RE: Form with POST return null

https://codeigniter4.github.io/CodeIgniter4/incoming/routing.html#placeholders ! Note: {locale} cannot be used as a placeholder or other part of the route, as it is reserved for use in localizatio...
5,299 Views
4 Replies
11-26-2018, 08:11 PM
NiteRaven
    Thread: Validation Placeholders being ignored for is_unique
Post: RE: Validation Placeholders being ignored for is_u...

Something like this? PHP Code: -- public function is_unique(string $str = null, string $field, array $data): bool { // Grab any data for exclusion of a single row. list($field, $ignoreFie...
3,385 Views
2 Replies
11-26-2018, 11:55 AM
NiteRaven
    Thread: Validation Placeholders being ignored for is_unique
Post: Validation Placeholders being ignored for is_uniqu...

https://codeigniter4.github.io/CodeIgniter4/models/model.html#validation-placeholders PHP Code: -- protected $validationRules = [    'email' => 'required|valid_email|is_unique[users.email,id,{id...
3,385 Views
2 Replies
11-26-2018, 11:31 AM
NiteRaven
    Thread: CodeIgniter\Validation\Validation::setRules() must be of the type array, string given
Post: CodeIgniter\Validation\Validation::setRules() must...

Hi there, I believe I found a bug with the controller validate method. The following doc page... https://codeigniter4.github.io/CodeIgniter4/incoming/controllers.html#validating-post-data ... st...
5,558 Views
4 Replies
11-25-2018, 09:50 PM
NiteRaven
    Thread: Undefined variable: _SESSION
Post: RE: Undefined variable: _SESSION

kilishan Wrote: (11-22-2018, 09:49 PM) -- I just pushed a fix for this. Let me know if it works for you. -- Thanks so much kilishan! I really appreciate the very quick bug fix. I'll test this when ...
20,413 Views
11 Replies
11-24-2018, 10:42 AM
NiteRaven
    Thread: Undefined variable: _SESSION
Post: RE: Undefined variable: _SESSION

Hi ciadmin, I know they are an HTTP thing. I guess then the new question is: Do I need to comment all of the things in my code that do not work with the CLI when running "php spark serve"? I'm trying ...
20,413 Views
11 Replies
11-20-2018, 06:18 PM
NiteRaven

Theme © iAndrew 2016 - Forum software by © MyBB