Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: How to retro-actively (re)trigger Myth Auth validation e-mail
Post: How to retro-actively (re)trigger Myth Auth valida...

Hello all,  Does anybody remember how to manually trigger activation e-mail for newly created users in Myth Auth?
453 Views
1 Replies
10-06-2023, 06:02 AM
gosocial2
    Thread: Why doesn't $request->getLocale() return the correct locale any more (since v.4.3)?
Post: RE: Why doesn't $request->getLocale() return the c...

Sorry, but the problem persists. I not only tried all the steps in the documentation, but also the tutorial above. Working app based on CI 4.2.x is at https://ccpdemo2.ozar.net - it can be tested by s...
499 Views
4 Replies
08-30-2023, 12:20 AM
gosocial2
    Thread: Why doesn't $request->getLocale() return the correct locale any more (since v.4.3)?
Post: Why doesn't $request->getLocale() return the corre...

I noticed that the last time $request->getLocale() returned the correct locale based on the URI was with CI_VERSION 4.2.x How I use it: PHP Code: -- class BaseController extends Controller {   ...
499 Views
4 Replies
08-27-2023, 03:34 AM
gosocial2
    Thread: Can't create a working CI4 project after 4.3.8 and 4.4
Post: RE: Can't create a working CI4 project after 4.3.8...

Captain-sensible's recommendation worked: Code: -- composer require codeigniter4/framework:4.3.8 -- But I will also be trying kenjis's ci4-composer-installer next time.
1,827 Views
5 Replies
08-26-2023, 11:10 PM
gosocial2
    Thread: Can't create a working CI4 project after 4.3.8 and 4.4
Post: Can't create a working CI4 project after 4.3.8 and...

Hello guys, Thrilled with the announcement of CodeIgniter 4.3.8 and 4.4.0, I went ahead and tried to experiment with it.  To be safe, I opted in to create a new project based on 4.3.8 rather than tr...
1,827 Views
5 Replies
08-26-2023, 07:53 AM
gosocial2
    Thread: Ci4 how to check if section exist with renderSection
Post: RE: Ci4 how to check if section exist with renderS...

You do not need to perform such a check by yourself. In your layout file: PHP Code: -- -- In a view  that uses 'content': PHP Code: -- // the content // simply ignore defau...
425 Views
2 Replies
08-05-2023, 06:03 AM
gosocial2
    Thread: Need help with In-Place Quick Sort Implementation
Post: RE: Need help with In-Place Quick Sort Implementat...

Here is a Cı4 library that ports your code to PHP: PHP Code: -- -- You can use this library in a controller like this: PHP Code: -- --
599 Views
2 Replies
07-22-2023, 10:34 AM
gosocial2
    Thread: Token Regeneration not worked
Post: RE: Token Regeneration not worked

When you set CSRFT tokens to be regenerated every time a new request is made (with a token), and open multiple browser tabs of the same web app, only the active tab on which you sent the most recent r...
607 Views
3 Replies
07-14-2023, 01:29 PM
gosocial2
    Thread: HTTP ERROR 500 - CodeIgniter cPanel
Post: RE: HTTP ERROR 500 - CodeIgniter cPanel

Can you share the contents of your /writeble/logs/ from the hosting ?
4,568 Views
3 Replies
07-03-2023, 07:13 AM
gosocial2
    Thread: Is PHP the Secret King of Code?
Post: RE: Is PHP the Secret King of Code?

I agree. Fireship's take on PHP PHP in 100 Seconds https://www.youtube.com/watch?v=a7_WFUlFS94 also PHP will make you poor? StackOverflow 2023 Results https://www.youtube.com/watch?v=3Ay6qZ88boI I...
373 Views
1 Replies
06-28-2023, 09:13 AM
gosocial2
    Thread: Installing CI4.2.10 on Hostinger in a Subdomain
Post: RE: Installing CI4.2.10 on Hostinger in a Subdomai...

You can also refer to the tutorial here: CI4 Production Deployment https://ozar.net/blog/web-development-php/codeigniter/ci4-production-deployment/
1,867 Views
5 Replies
06-12-2023, 04:59 AM
gosocial2
    Thread: User Guideline Tutorial failing
Post: RE: User Guideline Tutorial failing

If php spark serve starts serving on localhost:8081, it means port 8080 is in use. If you are sure no web server is occupying port 8080, VLC Media Player is the usual suspect if you have it and runnin...
906 Views
5 Replies
06-12-2023, 01:57 AM
gosocial2
  Bug Thread: How to resolve mobile CSRF issue in CodeIgniter?
Post: RE: How to resolve mobile CSRF issue in CodeIgnite...

This necessitates "mobile debugging" to troubleshoot what's going on with the requests and responses on a mobile device. I believe one of the below should aid you to acquire the know-how: https:...
565 Views
1 Replies
06-06-2023, 04:31 AM
gosocial2
    Thread: session()->stop() not destroying data
Post: RE: session()->stop() not destroying data

Why not just use session()->destroy() - is it not really destroying the session ?
14,408 Views
20 Replies
05-16-2023, 01:54 PM
gosocial2
    Thread: uuid
Post: RE: uuid

Here's an implementation (also used by CodeIgniter Wizard): In the database table set the PK field as char(36). E.g. let's assume we have a table named cms_pages whose primary key is a field na...
3,081 Views
7 Replies
05-13-2023, 04:17 AM
gosocial2
    Thread: CodeIgniter Wizard CRUD generator for the Mac Updated
Post: RE: CodeIgniter Wizard CRUD generator for the Mac ...

For anyone interested in CRUD generators, CodeIgniter Wizard is now at version 2.1.4 and battle-tested for many scenarios. Aside from the code generation for file uploads, automatic image cropping, ce...
5,039 Views
5 Replies
05-02-2023, 03:15 AM
gosocial2
    Thread: Create JWT Auth in CodeIgniter 4
Post: RE: Create JWT Auth in CodeIgniter 4

So the PR is approved and merged? Kudos.
16,338 Views
15 Replies
04-21-2023, 11:11 PM
gosocial2
    Thread: Create JWT Auth in CodeIgniter 4
Post: RE: Create JWT Auth in CodeIgniter 4

kenjis Wrote: (04-19-2023, 02:31 AM) -- What's the groups table? I've never heard such a request. Shield has groups_users table from the beginning. https://github.com/codeigniter4/shield/blob/779...
16,338 Views
15 Replies
04-19-2023, 04:42 AM
gosocial2
    Thread: Create JWT Auth in CodeIgniter 4
Post: RE: Create JWT Auth in CodeIgniter 4

kenjis Wrote: (04-18-2023, 10:17 PM) -- We are developing JWT Authenticator for Shield. See https://github.com/codeigniter4/shield/pull/195 I believe that is very close to completion. -- Good n...
16,338 Views
15 Replies
04-19-2023, 02:07 AM
gosocial2
    Thread: problem with form data
Post: RE: problem with form data

Which version of CI4 are you using, and can you share a list of all your routes? needless to ask you have both $routes->get('appointment', 'Appointment::appointmentForm'); and $routes->p...
5,381 Views
21 Replies
04-11-2023, 12:59 PM
gosocial2

Theme © iAndrew 2016 - Forum software by © MyBB