Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter 4.0 is here!
#71

This is great!
I am new to CodeIgniter as have said in my earlier mail and with little things have seen in the CI 3.4 Documentation, I love this framework. I am PHP and MySQL Savvy but I want my work to be faster.
Please, I want anyone of us here to lead me to :
1) Excellent Tutorials or book or Video subscription especially Udemy.com on CodeIgniter4 and Bootstrap 4 or 3.
2) E-commerce website Using CodeIgniter 4 with full admin panel.
I googled and searched but the rating I am seeing confused me. I don't want to have the same experience I had when learning PHP by using about 6 years to look for the book that will add comment to blog when writing blogs all of them were just saying in order to keep the script simple the would not add comment section.
Reply
#72

(02-24-2020, 06:43 AM)John_Betong Wrote: Great news and well worth the three year wait!

Here's new welcome_message.php

https://ci4-strict.tk/welcome-new

...and it's fast!

https://tools.pingdom.com/#5c1dd69bcc800000

Tested from the London web server:
Performance grade : 100%
Page size : 15.0 KB
Load time : 131 ms
Requests : 2

Many thanks to all the Team that made this possible - let the promotion begin Smile

Link: https://forum.codeigniter.com/thread-755...#pid372298 

May I Ask you about 
app config and server config for using codeigniter 4 in strict_mode? is this way is increasing ci speed? i interested on your serving codeigniter that executed very fast (0,0002 s). I try to add mode_strict to every ci php file, and got error ( 500 internal server error) . Many thanks for your answer/help..
Reply
#73

Link error:https://codeigniter.com/download

https://codeload.github.com/codeigniter4...zip/v4.0.2

404: Not Found
Reply
#74

(02-26-2020, 12:31 AM)eboominathan Wrote: It is very hard to understand the upgrading documentation anyone know how to do upgrade from CI3 to CI4 How to upgrade CI3 to CI4
You need to re-write your entire application
Reply
#75

Nice ! Congratulation !
Reply
#76

Congratulations to the team of Codinator 4
Reply
#77

That's great news!

Thank you @kilishan and everyone.
Reply
#78

(02-26-2020, 12:31 AM)eboominathan Wrote: It is very hard to understand the upgrading documentation anyone know how to do upgrade from CI3 to CI4 How to upgrade CI3 to CI4

Hello CI2/3 is differrent from CI4 and i dont think upgrading from CI3 to Ci4 will be easy or benificial. you might want to rewrite your app. Or just use CI3. it is stable anyway
Reply
#79

(02-26-2020, 03:18 AM)tomologos Wrote:
(02-24-2020, 06:43 AM)John_Betong Wrote: Great news and well worth the three year wait!

Here's new welcome_message.php

https://ci4-strict.tk/welcome-new

...and it's fast!

https://tools.pingdom.com/#5c1dd69bcc800000

Tested from the London web server:
Performance grade : 100%
Page size : 15.0 KB
Load time : 131 ms
Requests : 2

Many thanks to all the Team that made this possible - let the promotion begin Smile

Link: https://forum.codeigniter.com/thread-755...#pid372298 

May I Ask you about 
app config and server config for using codeigniter 4 in strict_mode? is this way is increasing ci speed? i interested on your serving codeigniter that executed very fast (0,0002 s). I try to add mode_strict to every ci php file, and got error ( 500 internal server error) . Many thanks for your answer/help..
> May I Ask you about app config and server config for using codeigniter 4 in strict_mode?
The source code is available on Github, app directory is original, app-strict is the modifications and system is every PHP file with declare(strict_types=1); inserted int the top of each PHP file.


is this way is increasing ci speed?
I use the strict_mode mainly to help with debugging, warnings are usually converted into errors , program execution stops until the errors are fixed.

I also think using the strict mode will reduce server processing time because the PHP "type juggling" will be eliminated... Less processing means faster rendering.

Following are the modifications made to index.php and errors that required fixing in order to comply with the strict mode. One of these fine days when not busy I will raise Github Pull Request to the CI4 Development Team.

https://ci4-strict.tk/bugs-fixed


I try to add mode_strict to every ci php file, and got error ( 500 internal server error) .
The 500 errors experienced are usually down to the script not being able to perform requested tasks.

https://developer.mozilla.org/en-US/docs...Status/500

Try downloading the Github Strict Version which is the actual script used in the online demonstration. I find it is far easier to have script that works then add or modify until it breaks Smile
Reply
#80

That's awesome. RIP James
Reply




Theme © iAndrew 2016 - Forum software by © MyBB