Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: codeigniter 4.04 session destroy automatically
Post: RE: codeigniter 4.04 session destroy automatically
No 0 will turn sessions off it should be set to 1. |
|
InsiteFX |
CodeIgniter 4 Support
|
17 |
1,019 |
7 hours ago |
|
|
Thread: Entity JSON encode and manually decode
Post: RE: Entity JSON encode and manually decode
A PHP json_encode array conversion example
PHP | json_encode() Function |
|
InsiteFX |
CodeIgniter 4 Support
|
4 |
106 |
Yesterday, 11:49 AM |
|
|
Thread: codeigniter 4.04 session destroy automatically
Post: RE: codeigniter 4.04 session destroy automatically
I use Myth/Auth which is built for CodeIgniter 4 |
|
InsiteFX |
CodeIgniter 4 Support
|
17 |
1,019 |
Yesterday, 11:15 AM |
|
|
Thread: codeigniter 4.04 session destroy automatically
Post: RE: codeigniter 4.04 session destroy automatically
Implementing Secure User Authentication in PHP Applications with Long-Term Persistence (Login with "Remember Me" Cookies) |
|
InsiteFX |
CodeIgniter 4 Support
|
17 |
1,019 |
Yesterday, 06:00 AM |
|
|
Thread: How to make and include different routing files inside one route file?
Post: RE: How to make and include different routing file...
Right where the first line says to put it app/Config/Routes.php |
|
InsiteFX |
CodeIgniter 4 Discussion
|
4 |
154 |
Yesterday, 01:45 AM |
|
|
Thread: Model is not producing MySQL error #1292
Post: RE: Model is not producing MySQL error #1292
Because that is the MySQL default datetime value. |
|
InsiteFX |
Issues
|
1 |
73 |
04-17-2021, 08:50 PM |
|
|
Thread: How to make and include different routing files inside one route file?
Post: RE: How to make and include different routing file...
Something like this for modules.
PHP Code:app/Config/Routes.php //.. Other routes// Add this to Footer // Including all module routes$m... |
|
InsiteFX |
CodeIgniter 4 Discussion
|
4 |
154 |
04-17-2021, 12:41 PM |
|
|
Thread: Proper way to get array from session
Post: RE: Proper way to get array from session
I do not believe that sessions work with the dot notation on session arrays. |
|
InsiteFX |
CodeIgniter 4 Support
|
5 |
188 |
04-17-2021, 12:26 PM |
|
|
Thread: codeigniter 4.04 session destroy automatically
Post: RE: codeigniter 4.04 session destroy automatically
PHP Sessions Login with remember me
Make sure you use a token and save it to the users record every time. |
|
InsiteFX |
CodeIgniter 4 Support
|
17 |
1,019 |
04-17-2021, 12:16 PM |
|
|
Thread: session flashdata read write probleme ...
Post: RE: session flashdata read write probleme ...
Did you try.
PHP Code:$session->keepFlashdata(['item1', 'item2', 'item3']);
To see if it needs an extra save call. |
|
InsiteFX |
General Help
|
3 |
108 |
04-17-2021, 12:09 PM |
|
|
Thread: debugbar is breaking my JSON?
Post: RE: debugbar is breaking my JSON?
app/Config/Boot/development.php
CI_DEBUG = false; |
|
InsiteFX |
General Help
|
2 |
63 |
04-17-2021, 12:04 PM |
|
|
Thread: where to put the css in a CI3 generated form?
Post: RE: where to put the css in a CI3 generated form?
It should go with all your other css files in assets/css |
|
InsiteFX |
General Help
|
2 |
77 |
04-17-2021, 11:56 AM |
|
|
Thread: Cors php issues
Post: RE: Cors php issues
READ:
CORS
You have to include the http or https in the header. |
|
InsiteFX |
CodeIgniter 4 Discussion
|
7 |
237 |
04-17-2021, 06:00 AM |
|
|
Thread: View
Post: RE: View
CodeIgniter User Guide - Caching Views |
|
InsiteFX |
Model-View-Controller
|
1 |
91 |
04-17-2021, 02:34 AM |
|
|
Thread: Cors php issues
Post: RE: Cors php issues
You should do a check for either http or https. |
|
InsiteFX |
CodeIgniter 4 Discussion
|
7 |
237 |
04-16-2021, 08:36 PM |
|
|
Thread: Problem with mime_in only for heavy image
Post: RE: Problem with mime_in only for heavy image
max_post_size and max_upload_size need to also be set to the save value. |
|
InsiteFX |
CodeIgniter 4 Support
|
1 |
73 |
04-16-2021, 12:01 PM |
|
|
Thread: CI 4 contact form with configuration
Post: RE: CI 4 contact form with configuration
We help users here we do not write the code for you, read the CodeIgniter users guide on forms.
If you have a problem we will gladly help you out but we will not write everything for you.
Hint:
goo... |
|
InsiteFX |
CodeIgniter 4 Support
|
3 |
149 |
04-16-2021, 11:57 AM |
|
|
Thread: CI 4 will not recognize UserModel
Post: RE: CI 4 will not recognize UserModel
Did you save it with the characters upper case UserModel or lowercase usermodel?
Case is very important here. Also check your base_url should end with a / |
|
InsiteFX |
CodeIgniter 4 Support
|
2 |
101 |
04-16-2021, 11:54 AM |
|
|
Thread: google/facebook/ldap login
Post: RE: google/facebook/ldap login
This will help you understand it, you can also use it with CodeIgniter 4.
Hybridauth, open source social login php library. |
|
InsiteFX |
Libraries & Helpers
|
1 |
78 |
04-16-2021, 11:46 AM |
|
|
Thread: Cors php issues
Post: RE: Cors php issues
I add this to my root .htaccess file for CORS.
PHP Code: # Add Font Types AddType application/vnd.ms-fontobject .eot AddType appli... |
|
InsiteFX |
CodeIgniter 4 Discussion
|
7 |
237 |
04-15-2021, 08:58 PM |