Tag

Codeigniter

Browsing

Index..php remove php remove and HTTP to https redirect in CodeIgniter. make web.conig file and put the code. <?xml version=”1.0″ encoding=”UTF-8″?> <configuration> <system.webServer> <httpErrors errorMode=”Detailed” /> <asp scriptErrorSentToBrowser=”true”/> <rewrite> <rules> <rule name=”Rule” stopProcessing=”true”> <match url=”^(.*)$” ignoreCase=”false” /> <conditions> <add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” negate=”true” /> <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” negate=”true” /> <add input=”{URL}” pattern=”^/favicon.ico$” ignoreCase=”false” negate=”true” /> </conditions> <action type=”Rewrite” url=”index.php/{R:1}” appendQueryString=”true” /> </rule> <!– redirect non http to https –> <rule name=”www redirect” enabled=”true” stopProcessing=”true”>…

CodeIgniter vs. CakePHP I almost fear putting this kind of post together as it’s bound to pull the fanatics (in the negative sense of the word) out of the woodworks. Right off the bat, let me just say that I’ve tried to be as fair and honest in this assessment and I’ve tried to keep it just to the facts while interjecting what my preferences are. I’m pitting these two frameworks against each other but there really…

1) Explain what is CodeIgniter? Codeigniter is an open source framework for web application. It is used to develop websites in PHP. It is loosely based on MVC pattern, and it is easy to use compared to another PHP framework. 2) Explain what are hooks in CodeIgniter? Codeigniter’s hooks feature provides a way to change the inner working of the framework without hacking the core files. In other word, hooks allow you to execute a script with a particular path…