Importance of 301 Permanent Redirection

What is the difference between http://www.myhostname.com and http://myhostname.com ? In most of the case you will get the same website. But if this is the actual scenario , why we redundantly use www, is it only for time consuming ? Class B web development says that , no need to use www, we have to [...]

0 Comments , ,

SVN – Subversion

Setup Subversion (svn) >> Depends on your linux version use package managers apt-get install subversion or yum install subversion How can i create respository ? Create a folder which you want to make as repository. svnadmin create /path/to/folder If you check the folder after this comment, you can see some files there viz conf dav [...]

0 Comments

Javascript Classes

Hello, Javascript supports different types of OOPS concept. You know basically javascript is a functional lanugage. We can make these function to classes and objects as follows: <input type=”button” name=”man1_butt” id=”man1_butt” onClick=”man1.get_name(); man1.get_age();” value=”Man 1″> <input type=”button” name=”man2_butt” id=”man2_butt” onClick=”man2.get_name(); man2.get_age();” value=”Man 2″> We can implement inheritance also using javascript. See below the example: Click [...]

1 Comments

Putty

Putty is a n implementation of ssh / telnet for win32 and unix application. If you are using windows desktop and your website is hosted in a linux machine, putty helps to ssh from your windows to a linux machine. You need to do two things for this. Download putty.exe from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Enter your host [...]

0 Comments