codeigniter
Posts related to the Codeigniter PHP framework
-
If you use the TinyMCE Image Manager and CodeIgniter together, this class can save you a bit of work. “This package can handle TinyMCE Image Manager image uploads using CodeIgniter. It is a port of the TinyMCE image manager plugin to integrate it with CodeIgniter framework. This class was originally written by Andrey Antonov. -Pablo…
-
These two settings inside the index.php file should be changed to random strings. The folder names should also be changed to match as well. You may be wondering to yourself: “why does it matter?”. It matters when you DO NOT want your application fingerprinted as a codeigniter application by a hacker. One of the first…
-
Rerouting in CodeIgniter is really simple if you already know how paths work in the framework. You have a controller that is used as the route redirect target. In other words, it picks up the redirected path as its own. Everything other than that is simple CodeIgniter coding. The path can be as many variables…