

Website ranking is usually referred to the search engine optimization. Ranking of any website depends upon the content being used and the way of placing the content so that search engine crawlers can easily read them. This is referred to the text visibility in terms of SEO. Search engine optimization has been an integral part of any web development for its better ranking in the search engine these days. Beside the unique and descriptive content to be used in the website for the better ranking the use of W3C standard tag too plays a vital role. use of CSS layout has been highly emphasized in order to replace the table layout and focus the text visibility. Keyword popularity beyond other issues is key factors to be considered for the web site ranking. The more you are able to describe the website as per your keyword the more ranking the site generates. Web servers too plays a key role for the better web ranking in the Search engine. More bandwidth and error free server hosting are the major concern for driving traffics to website. Use of search engine friendly URL too determines the web ranking.
Content Management System(CMS) refers to the web application for creating the web based content. When the content of the website are of dynamic nature, Web CMS acts as a tools for dynamic content creation, control, manipulation and maintenance of the website. The main purpose of CMS is to eliminate the technical hassles and to allow users to control the dynamic content without essence of knowing the internal details of the markup languages.
The dynamic content are stored in a database and are accessed for the display through HTTP protocol using the database Query. Web based interface acts as an administrative tools that allow users to add, edit or delete the content as per the requirement. Read the rest of this entry »
Codeigniter problem in Godaddy hosting is related to URI acess methods. If your Codeigniter application works fine in the localhost but throws 404 page not found error in the godady server than you need to manipulate the codeigniter URI acess methods. This article will help you to know about the URI information, problem with URI acess method and solution to resolve this issues in server like Godady.
What is URI ?
URI is an acronym for Uniform Resource Indentifier. Its a group of characters that contains the information about the server location, resource and the types of protocol used by the website. Web browser handles the specified URI on the basis of response received after the operating system Parses the string and descides the appropriate application to handle it. Read the rest of this entry »
User Login and Authentication is one of the crucial issues to be addressed during the web application development. In order to address the security issues, a new practice for restriction on the multiple login with the same account ID has been developed. To implement this security tips, there are various standards developed. This article will help you to explore the various methods developed to restrict the multiple user login with the same account through PHP.
To resolve these issues you may define a field in database to record the flag that helps to track whether the user has been logged in or not. You can set the flag to be 1, if the user is logged in and flag as 0 if the user is not logged in. This operation is to be performed when the user is authenticated so that the application can restrict the multiple accesses with the help of the flag recorded. While writing the authentication function, check the flag at user authentication table on the basis of the stated username and restrict the user if the flag is set to 1. When the user logs out, do not forget to set this flag to 0. Read the rest of this entry »
During the web development process I have noticed that the FCK editor is not loaded in some of the browsers. This article is published to help web designer, website developers or newbie to resolve such issues. Analyzing the code that had editor problems in some of the browser, I discovered that that the pages which used Absolute URL to load the editor, would display javscript error msg as “uncaught exception: Permission denied to get property Window.__FCKeditorNS“ and then the editor is not loaded.
Absolute URL refers to link that uses a full domain name. For example:
http://www.vujudesign.com . Absolute URL are sometimes blocked by some of the the browsers security settings. If you wonder why the editor is not loaded in all PCS then let me explain your concern through the following points. Read the rest of this entry »