Using Kinde with CodeIgniter 4

Kinde is an identity and access management platform that provides authentication and authorization services for web applications. It’s one of the direct auth0 competitors. The first thing that strikes you from the business side is that we get more options in the free version as well as higher limits for active users. It is also less expensive than auth0 when we finally reach the free limits. For startups that often use a cloud-based authentication model, this is a significant convenience....

July 27, 2023 · 2 min

CodeIgniter Signed Url

Signing URLs may be very useful when we want to prevent manual URL manipulation or when the given address should have an expiration date. CodeIgniter Signed URL package makes it very easy. ...

December 28, 2022 · 3 min

CodeIgniter HTMX

HTMX is gaining in popularity. No wonder, because in a world overflowing with Javascript-based sites that getting more and more complicated to achieve even tiny result, this solution turns out to be a pleasant return to the past - in quite a good way. ...

December 12, 2022 · 2 min

Generating a custom domain link in CodeIgniter 4

How can we handle generation of a custom domain link in CodeIgniter 4? Although this is not a built-in feature, we can deal with it in a fairly simple way. ...

July 31, 2022 · 2 min

Serverless Codeigniter 4

Serverless has been very popular for several years now. When we need very high performance it can be a very good alternative to traditional server solutions. Therefore, this time we will try to run CodeIgniter 4 in a serverless environment. ...

July 7, 2022 · 4 min

Verification of CNAME record for custom domain

When we give users option to connect their own domain to our service, we must also check that the DNS record has the correct CNAME settings before we approve such a domain. ...

November 22, 2021 · 1 min

Setting dynamic subdomains for every user account

What if we want every user in our application to have his data served through his own subdomain? I will show you how to do it in CodeIgniter 4 framework. ...

October 18, 2021 · 3 min

INSERT ON DUPLICATE KEY UPDATE with CodeIgniter 4

I recently had to use a query with INSERT ON DUPLICATE KEY UPDATE, but CodeIgniter 4 does not have built-in support for this type of query because it is not available in all database drivers. ...

October 15, 2021 · 5 min

CodeIgniter 4 + Mix with versioning

Last time I showed you how to easily integrate Mix with CodeIgniter 4. This time we’ll complete the integration process by implementing a helper which will make using versioned assets very convenient and easy. ...

August 25, 2021 · 3 min

CodeIgniter 4 + Mix

Today we are going to look at configuring CodeIgniter 4 in conjunction with Mix. Mix is one of the components that comes with the Laravel framework. ...

August 23, 2021 · 2 min