Broken links will give a bad impression to your users. So always do an analysis on your website using some tools if there is any broken link in the navigation links. But you can not fix the broken links from external websites to your website. Also some user might type a url to your website [...]
Continue reading...Monday, June 20, 2011
I want to share the source code first for the busy guys. Source code for Facebook connect for Codeigniter Hope you have already went through my tutorial on the Facebook Connect implementation in Codeigniter. This part comes after connecting the user to your website. Once user is authenticated with the required access tokens, you can [...]
Continue reading...Monday, June 13, 2011
Removing the “index.php” filename from the URL makes the website nice and also search engines like it. It is easy to remove the index.php from the URL in CodeIgniter website. Here are the three little steps. Enable the apache ModRewrite module. If you are using wamp server you do it by using the menu in [...]
Continue reading...Saturday, June 11, 2011
Extending the Codeigniter Model class is a great idea to reduce the code in your model classes by adding some smart functions to it. After extending it, there is no need to write any code in your model for regular CRUD operations and Search functions. Instead only need to inherit from the new model class [...]
Continue reading...Saturday, June 4, 2011
Repopulating the form fields using the Codeigniter form helper functions will not work when there is not validation assigned to a field. This post explains a solution that can be used to solve this issue. The helper function set_value() is used for populating the values of the input boxes. The function rely on the CI [...]
Continue reading...
Thursday, June 23, 2011
6 Comments