Skip to main content

Posts

Laravel 5 Installation

Laravel: Simple/Easy Installation Guide This tutorial shows step-by-step guide to install Laravel. Here, I will show two ways for installation. One is installing directly by  composer create-project  command and the other is by cloning or downloading Laravel from GitHub and then running the  composer install  command. 1) Method 1 – Go to your web server root – In Ubuntu, it’s /var/www/. – In Windows, if you install Wampp on C: drive then the server root is C://wamp/www/, for Xampp, it’s C://xampp/htdocs/ – Run the following command in terminal/command-prompt: 1 composer create - project laravel / laravel name - of - your - project – This will create a directory with  name-of-your-project  and install Laravel files in it – Then, you can simply browse  http :// localhost / name - of - your - project / public  to access Laravel 2) Method 2 – Go to  Laravel Github – Clone or Download it to your web serv...

How to convert PSD to HTML and vice versa HTML to PSD

While working on web page projects converting a website PSD design to HTML page is a very common thing but sometimes there is a need to convert the page in the opposite direction – from HTML to PSD. A typical case is when the website owner comes to the marketing agency to redesign the website but the original PSD design doesn’t exist. In such case, first the graphic designer needs to recreate the design manually in Photoshop that takes some time. Now it is time for the conversion from PSD design to HTML page . The  conversion  word is here not really a good one. In fact going from PSD design to a functioning website is called  implementation process  and the PSD design file only describes how the page should look like however not necessarily how it should work. To transfer a graphical design into a fully functioning website strong technical development skills are required. While making HTML to PSD or PSD to HTML conversion you have two options… Option One – U...

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...