Skip to main content

Posts

Page structure of HTML 5 different from HTML 4 or previous HTML

A typical web page has headers, footers, navigation, central area and side bars. Now if we want to represent the same in HTML 4 with proper names to the HTML section we would probably use a DIV tag. But in HTML 5 they have made it more clear by creating element names for those sections which makes your HTML more readable. HTML 5 elements which form the page structure. <header> : Represents header data of HTML. <footer> : Footer section of the page. <nav> : Navigation elements in the page. <article> : Self-contained content. <section> : Used inside article to define sections or group content in to sections. <aside> : Represent side bar contents of a page.

Difference between MySQL Table Type MyISAM and InnoDB

The big difference between MySQL Table Type MyISAM and InnoDB is that InnoDB supports transaction InnoDB supports some newer features: Transactions, row-level locking, foreign keys InnoDB is for high volume, high performance Most people use MyISAM if they need speed and InnoDB for data integrity. You can use more than one or any combination of these table types in your database. Remember to asses the needs of your application before building it. Even though MyISAM is faster than InnoDB in the MySQL world, InnoDB is fast compared to any database  engine.With  InnoDB you get transactions, speed and integrity three features not usually used in the same sentence. InnoDB  has been designed for maximum performance when processing large data volumes. Its CPU efficiency is probably not matched by any other disk-based relational database engine. Fully integrated with MySQL Server, the  InnoDB  storage engine maintains its own buffer pool for caching data and ...

SQL for ordering by number - 1,2,3,4 etc instead of 1,10,11,12

SQL for ordering by number - 1,2,3,4 etc instead of 1,10,11,12 When we use ORDER_BY registration_no ASC get... 1 101 102 103 104 105 106 107 108 109 11 110 Etc … Using 'order by len ( registration_no )' we will get 1 11 101 102 10 104 105 106 107 108 119 Etc... This is particularly useful when the column might contain non-numeric values. Note: in some databases, the function to get the length of a string might be called  length()  instead of  len() .

Intoduction to DotNetNuke

Intoduction to DotNetNuke                     DNN® ( formerly DotNetNuke® ) is the leading open source web content management platform (CMS) in the Microsoft ecosystem. The product is used to build professional looking and easy-to-use commercial websites, social intranets, community portals, or partner extranets. Containing dynamic content of all types, DNN sites are easy to deploy and update. The DNN Platform has been downloaded more than 8 million times and powers more than 750,000 websites globally. A community of more than 1 million members forms a powerful support network. Thousands of commercial extensions, apps and skins are available at the DNN Store that make extending a DNN site fast and affordable. Free open source extensions are also available from the DNN Extensions Forge . In addition to robust content management, the free, open source DN...

Securing Your WordPress Site

              WordPress is a great system that is often secure, but no system is perfect. Hackers are always finding ways to exploit WordPress’s coding, and it’s only a matter of time until hackers find some way to sneak into the CMS. While WordPress is constantly doing its best to minimize the threat of hackers, you have to do some work to harden your website. It’s not that hard, but you have to be on the ball if you don’t want to be hacked. Installation The common WordPress installation should be safe, but there is one easy way to mess it up. Never, ever, under any circumstances should you download and install this CMS other than from the official website or a trusted installer (like Fantasico or Softaculous). Believe me, hundreds of people have been fooled into downloading the WordPress files from another website. While this might be safe, many hackers do this to easy sneak a virus onto your installation. Not only that, but you might also infec...

5 Most Common WordPress Errors With Solutions

             WordPress   is one the most popular CMS platforms which people use for creating their blogs, websites and e-stores as well. Whether you are an Experienced WP Programmer or a newbie who loves to install plugins or widgets, you need to understand that encountering errors is unavoidable. Sometimes it becomes really frustrating when we get some unexpected errors and we don’t know how to solve them! So, if you are also facing some kind of errors in WordPress, this blog post is surely for you as we would be talking of some common WP errors along with their solutions. 1. Lost Admin Password & Email Retrieval Is Not Functioning Problem:   Many times it happens with WP users that their admin password doesn’t work. And when they try to recover the password using “Lost Your Password” feature which helps in getting the new password via email, this also doesn’t work. Solution:   In order to solve this issue, there are 2...