CodeIgniter | Open Source PHP Framework
kandi X-RAY | CodeIgniter Summary
kandi X-RAY | CodeIgniter Summary
Open Source PHP Framework (originally from EllisLab)
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of CodeIgniter
CodeIgniter Key Features
CodeIgniter Examples and Code Snippets
Community Discussions
Trending Discussions on CodeIgniter
QUESTION
I have a CMS that I've built myself in PHP (Codeigniter framework). I was thinking why every time PHP has to process all code just that to respond with a page. So instead I will create the complete HTML pages and serve them when a user asks for them.
That is why I need to rewrite an URL to a specific file only if that file exists. For this, I need to use regex captured groups because I want to build this for all files in that folder and subfolders.
For example, I want to put a bunch of HTML pages on %{DOCUMENT_ROOT}/out and want to access them directly with rewrite rules.
For example, if the URL is like this:
...ANSWER
Answered 2022-Apr-15 at 10:11Your RewriteCond
is almost correct but you have to capture $1
in a group in RewriteRule
and also your target needs to be out/$1.html
.
You can use this rewrite rule in your site root .htaccess:
QUESTION
I'm using codeigniter-4.1.9. I have a score table and there have multiple round. each user getting there scores in different rounds. I want to retrieve each users score in a single row with different rounds but unable to get expected result. How to fix this?
I tried both :
...ANSWER
Answered 2022-Mar-29 at 13:35If you want the rounds as separate columns you need to make a pivot query
something like this:
QUESTION
I got this error after install a new xampp version (php8). and clone my codeigniter project.
...ANSWER
Answered 2022-Feb-16 at 14:37For anyone else that comes across this error, I also experienced it after upgrading to PHP 8.1. The only way I could find to "fix" it was by adding #[\ReturnTypeWillChange]
before the open
, read
, write
, close
, destroy
and gc
functions in /system/libraries/Session/drivers/Session_files_driver.php
. For example:
QUESTION
I'm trying to select comments in my Comments
table. And I want to select them based on a Report Number and in descending order using the codeigniter 3 query builder functions.
I got this code here in my model and if I var_dump
it just doesn't work the way I want to.
this is the code I have so far:
ANSWER
Answered 2022-Feb-08 at 16:57You need a get
clause to query a table; you can either use:
where()
and get()
:
QUESTION
I need make a query with 2 parameters in model on codeigniter 4. Is this possible?
This is the model:
...ANSWER
Answered 2022-Jan-23 at 15:07Yes, it is possible to make a query with multiple params.
QUESTION
I'm trying to return an array from a PHP script in Ajax, however, it seems to not work, it returns me a string rather an Array. I'm using CodeIgniter Framework, there is my .php code :
...ANSWER
Answered 2022-Jan-20 at 20:08You need to parse the JSON in Javascript:
QUESTION
I'm using CodeIgniter 3 and the flashdata I set on that project is not cleared even after a redirect. It still being shown after the page is refreshed or visit the page again. How can I fix this issue?
A function in a controller.
...ANSWER
Answered 2021-Dec-23 at 05:24If you do not do this please follow the following steps.
QUESTION
I think the problem may be from LanguageControl. Refreshing the page by repeating the url all the time. I am using multi-language support in the admin panel. Below are all the code blocks that I think might be the problem.
route
...ANSWER
Answered 2021-Dec-21 at 14:28I'm pretty sure you need to replace the array_unshift
. For me, when I set your code up, I needed to look at $segments[1] so forgive me if you need to tweak this slightly:
QUESTION
is there any possible way to send parameters within the redirection function from Codeigniter 4? Important, it is a named route:
...ANSWER
Answered 2021-Nov-05 at 08:35The short answer is no its not possible. Take a look at system/Common.php
and you'll see there is only 1 parameter to the redirect()
function.
The longer answer however is take a look at what the redirect function does.
QUESTION
I'm building a web app with CodeIgniter 4 where I implemented a REST API for register and login and a profile page just a test my login.
I have a login form that sends a javascript fetch post request to my api and I receives a jwt token. This is working.
Now I am in the situation where I think I did not understand the principle. I want that the user stays logged in and doesn't need to re-login every time. The token expires after 12h.
And I want to use php (if possible) as the entire app runs on php.
Currently, I have a little javascript function to store my token:
...ANSWER
Answered 2021-Oct-10 at 15:53First of all there is nothing wrong with building "login with API". It is common practice. And JWT is perfectly suited for auth.
You sure can store JWT token inside a cookie, but it is a little bit wrong in my opinion. Usually JWT tokens are stored in the local storage on the client side. It will persist after page reload.
Set token in the local storage:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install CodeIgniter
PHP requires the Visual C runtime (CRT). The Microsoft Visual C++ Redistributable for Visual Studio 2019 is suitable for all these PHP versions, see visualstudio.microsoft.com. You MUST download the x86 CRT for PHP x86 builds and the x64 CRT for PHP x64 builds. The CRT installer supports the /quiet and /norestart command-line switches, so you can also script it.
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page