Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: framework4.0.4 doenst run on php 7.1 alternative
Post: RE: framework4.0.4 doenst run on php 7.1 alternati...

Look, sooner or later you would need to add external packgages to your project, people that maintain them push their PHP versions up. At the moment a resonable minimal PHP version is 7.2.5.
5,658 Views
8 Replies
12-05-2020, 12:07 AM
ivantcholakov
    Thread: Codeigniter 4 not workin PHP 8
Post: RE: Codeigniter 4 not workin PHP 8

ferb Wrote: (12-04-2020, 03:01 PM) -- I downloade development version from github, but not show this error for php on xampp 8.0.0 Code: -- Deprecated: Required parameter $userAgent follows opti...
13,375 Views
8 Replies
12-04-2020, 10:43 PM
ivantcholakov
    Thread: Looking for input from those of you with CI experience as well as Node/TS. experience
Post: RE: Looking for input from those of you with CI ex...

CodeIgniter + jQuery + Turbolinks ( https://github.com/turbolinks/turbolinks ). I think, for a one-army man or for a small team this is the best choice. Edit: Here it is a brief article: https://www....
5,157 Views
4 Replies
07-30-2020, 02:02 PM
ivantcholakov
    Thread: Make debugging bar Turbolinks friendly
Post: Make debugging bar Turbolinks friendly

Recently I tried CI4 with Turbolinks 5: https://github.com/turbolinks/turbolinks (https://github.com/turbolinks/turbolinks) Showing pages gets fast with very minimal efforts about adjustment some Jav...
1,994 Views
1 Replies
07-26-2020, 04:16 AM
ivantcholakov
    Thread: CKFinder modal opens homepage and does not show files
Post: RE: CKFinder modal opens homepage and does not sho...

It is possible, in the past I modified the bootstrapping process of the framework. In this case I loaded the framework with calling a dummy controller and then session (database-driven) got accessible...
1,754 Views
3 Replies
07-15-2020, 11:44 PM
ivantcholakov
    Thread: Help needed for CI v3
Post: RE: Help needed for CI v3

Nice!
51,005 Views
26 Replies
07-09-2020, 03:24 AM
ivantcholakov
    Thread: Help needed for CI v3
Post: RE: Help needed for CI v3

Guys, enthusiasm is good, but what are you going to do, generally? There are pending PRs, there are open issues to be reviewed, but is there a bigger picture than that?
51,005 Views
26 Replies
07-08-2020, 06:59 AM
ivantcholakov
    Thread: How to continue a Code Igniter function after rendering a view
Post: RE: How to continue a Code Igniter function after ...

Or the payment system should return information/status about the initiated payment. It usualy does it by a http-request to your server - then you could update payment status within the database. If th...
2,333 Views
4 Replies
07-08-2020, 02:46 AM
ivantcholakov
    Thread: Ckeditor and Ckfinder with file manager
Post: RE: Ckeditor and Ckfinder with file manager

I don't use CKFinder, but something other. I can tell that the first thing to be ensured is that CodeIgniter and CKFinder share the same session, especially when we talk about administrative part of t...
6,836 Views
9 Replies
07-07-2020, 04:19 AM
ivantcholakov
    Thread: A PHP Application Starter, Version 5, Based on CodeIgniter 4
Post: A PHP Application Starter, Version 5, Based on Cod...

Yet another application starter of mine.  :) https://github.com/ivantcholakov/starter-public-edition-5 Today I released its first alpha.0. https://github.com/ivantcholakov/starter-public-edition-5/re...
2,374 Views
0 Replies
07-06-2020, 12:11 AM
ivantcholakov
    Thread: My template library
Post: RE: My template library

I think, almost everyone passed through this stage - to create a library for templating with useful routines. No problem with that. When you get annoyed at PHP-templating ( sooner or later this wil...
2,150 Views
1 Replies
07-05-2020, 02:05 AM
ivantcholakov
    Thread: why is this code failing?
Post: RE: why is this code failing?

If you are outside of context of a controller or a model, try this: Code: -- get_instance()->load->library('session'); -- But it would be preferable not to desperse usage of the session libr...
2,802 Views
6 Replies
07-03-2020, 08:01 AM
ivantcholakov
    Thread: Is my library function from common file a good practice ?
Post: RE: Is my library function from common file a good...

Try this Code: -- $this->shopLibrary = \Config\Services::shopLibrary(); -- This way you will have a singleton. And since you have an instance, avoid using static methods, because they will force ...
2,546 Views
4 Replies
07-01-2020, 03:16 PM
ivantcholakov
    Thread: Is my library function from common file a good practice ?
Post: RE: Is my library function from common file a good...

No, it is not. 1. You are making your own unique loading system that somebody else should get used with. Also, this system makes your code less portable. 2. Your function always returns a new instanc...
2,546 Views
4 Replies
06-30-2020, 04:13 PM
ivantcholakov
    Thread: email example for CI4
Post: RE: email example for CI4

In the article how to use CodeIgniter's Email class is described. You are showing an attempt for using PHPMailer. Why are you trying to load its classes manually? Maybe you would need to read PHPMaier...
6,502 Views
4 Replies
06-29-2020, 02:04 PM
ivantcholakov
    Thread: Minifier - asset minification and versioning library
Post: RE: Minifier - asset minification and versioning l...

Does it have an autoprefixer for CSS? Some older mobile devices need it.
16,415 Views
15 Replies
06-27-2020, 08:47 PM
ivantcholakov
    Thread: CI 3.2 - does it worth it?
Post: RE: CI 3.2 - does it worth it?

Ok, exceptions, but I doubt that they alone give enough value.
2,995 Views
4 Replies
06-25-2020, 12:48 PM
ivantcholakov
    Thread: CI 3.2 - does it worth it?
Post: RE: CI 3.2 - does it worth it?

Or another idea. Maybe 3.2 with a BC break about exceptions would make more sense if it serves as "bridge" to CI 4. I mean some features to be backported from CI 4 - the debugger, spark, the same look...
2,995 Views
4 Replies
06-25-2020, 11:33 AM
ivantcholakov
    Thread: CI 3.2 - does it worth it?
Post: CI 3.2 - does it worth it?

Outside the recent fun from our Terminator, I would like to ask what would be the fate CI 3.2 branch. Wouldn't it be better if some new features there to backported to CI 3.1? I think that nobody woul...
2,995 Views
4 Replies
06-25-2020, 10:48 AM
ivantcholakov
    Thread: The future of Codeigniter
Post: RE: The future of Codeigniter

A Terminator! :-)
37,770 Views
50 Replies
06-25-2020, 10:27 AM
ivantcholakov

Theme © iAndrew 2016 - Forum software by © MyBB