Categories
PHP Tutorials Wordpress Tutorials

Add custom menu, Add theme locations & register new menu

A WordPress developers guide / tutorial – for adding custom menu in new wordpress theme, add one or multiple new theme locations for the custom WordPress menus, so that menu can appear in those places. Register new menu items. Enable your new wordpress theme to add custom user defined nav menus from the admin dashboard.

Categories
Linux

Ubuntu : Add user to a new group, existing group, group creation

To add a user to an existing group:

$ sudo adduser <USERNAME> <GROUPNAME>

To make a new group:

$ sudo addgroup <GROUPNAME>

See Which Groups Your Linux User Belongs To

$ groups <username>

If you don’t enter a username, it defaults to your own username. For instance:

$ groups

Remove a user from an existing group in Ubuntu

$ deluser <username> <groupname>

Categories
Linux

Install Eclipse manually offline in Ubuntu 14.04

How to install Eclipse java editor in Ubuntu 14.04 LTS manually after downloading Eclipse from the eclipse.org website. This is a guide for offline installation of Eclipse software.

Categories
Linux

Install java netbeans offline manually in ubuntu 14.04 LTS linux

How to install Java Netbeans package manually in ubuntu 14.04 LTS linux operating system (after downloading netbeans from the Netbeans or Oracle website).

Categories
Linux

Setting up virtual host in Ubuntu 14.04 localhost

I was searching for a guide to setup Virtual Hosts In Apache On Ubuntu 14.04 LTS installation in my local PC running ubuntu 14.04 lts. I was able to setup the Ubuntu local virtual host by reading this guide. Read the full guide here. The URL shown below.

http://www.unixmen.com/setup-virtual-hosts-apache-ubuntu-14-04-lts/

Read the help of VI Editor Here

Virtual Hosts are used to setup more than one domain or websites using a single IP address. This is very useful if anybody wants to run multiple websites using a single IP address on single VPS.

In this tutorial, let me show how to setup virtual hosts in Apache web server on Ubuntu 14.04 LTS. Be mindful that this tutorial is only tested On Ubuntu 14.04 32bit edition. I may not issue any assurance that this will work on all other Ubuntu lower versions and Ubuntu derivatives.

Categories
Developer tools & IDE

Configure Eclipse PHP IDE for WordPress

For the beginners to Eclipse (A popular FREE PHP editor), it becomes a nightmare how to configure and use Eclipse PHP Editor properly. In fact I have also struggled with it. There are lots of PHP developers like me who also use Eclipse editor for WordPress coding , from theme design to plugin development.

This is a good short Video tutorial and by viewing it you shall learn – how to configure Eclipse PHP editor (Luna / Helios etc) for wordpress web development. For WordPress training centers in Kolkata click here

Categories
JavaScript

Tutorial on DOM : Learn the basics of DOM

The Document Object Model (DOM) is the model that describes how all the Elements/Tags/ Selectors in an HTML / XML page, are placed as a TREE structure or hierarchical structure, inside the document. How each DOM elements can be accessed and manipulated.  In this tutorial you will learn the basics of DOM object model.

Categories
general topic

Speed up your website : Make your website faster

Read the Yahoo guide to speed up your website, minimize HTTP Requests:

Categories
JavaScript

JavaScript global variable updated by onchange event of drop down lists

Example of Global variable in JavaScript. In this program when you select a drop down element then JavaScript function is called and the select element is passed to the function and function updates the global variable inside the function and add the select element’s option element’s value to the global variable and the output is displayed.

Categories
HTML5

Three column fluid layout- middle column centered between 2 columns

The Case Study : This is a simple CSS style sheet code of Kolkata CSS web page layout expert Mr. B Choudhury where he explains the CSS- “three column liquid layout” where the mid column will be centered between left and right columns. Here % width has been used for the columns.