Category: CodeIgniter
Exploring Different Notification Methods in CodeIgniter
Push notifications are a powerful marketing tool, a successful way to interact with consumers, and a way to increase app engagement. Since users don’t need to keep their apps open all the time to receive push notifications, app publishers can send them whenever they want. Push notifications can either appear as a pop-up. The user…
Things to keep in mind for safeguarding Codeigniter 3 websites
Anti-CSRF (Cross-Site Request Forgery) tokens To protect Codeigniter3 web applications from malicious attacks, it provides built-in CSRF protection. It can be enabled by making $config[‘csrf_protection’] = TRUE in the application/config/config.php file. Then include the CSRF token in the form. A CSRF token is valid for a single form submission. A new token is generated for…
Routing in CodeIgniter with Nginx
Routing in CodeIgniter with Nginx While setting up Codeigniter in Nginx if a 404 error occurs when you have to set Codeigniter for subfolders in Nginx. Why Choose Nginx? Nginx is known for its high performance, stability, and low resource consumption. It’s an excellent choice for serving web applications, including those built with CodeIgniter. Its…