Useful SVN Commands
svnadmin create REPOS_PATH – Create a new repositiry in the REPOS_PATH svnadmin create –fs-type fsfs /var/svn/repos – Create a new repositiry in the REPOS_PATH using...
word-wrap not working in ie
If you are trying to apply the css property word-wrap: break-word to an anchor tag it will not get effect in internet explorer. To overcome this apply...
Apache http server in detail – 1
To verify httpd installed or not rpm -qa httpd (will display the package details if available) ex: httpd-2.2.15-29.el6_4.x86_64 Default Paths /usr/sbin/httpd command path /etc/httpd httpd...
Useful Shortcuts for Aqua Data Studio
To Launch the SQL Query Window Ctrl+Q To autocomplete the query Ctr+Space To launch the query builder Ctrl+Alt+O To execute the query Ctrl+E To execute...
.htaccess in Detail
What is .htacces file? .htaccess are files (or “distributed configuration files”) which provide a way to make configuration changes on a per-directory basis. With the...
Struts2 Tutorial Part 5 – Namespaces
In this session we will discuss about Struts2 namespaces.Struts2 namespaces are the Namespaces of the URL accessed. For example if a user types types a...
Struts2 Tutorial Part 4 – Packages
In this tutorial session we will discuss about struts 2 packages.Struts 2 packages are like java packages where actions can be grouped together. See a...
Struts2 Tutorial Part 3 – Actions 2
In this tutorial session we will create a simple struts 2 application to understand the complete flow of an action. If you want to know...
How to make apache server listen on particular port ?
Apache can be made to listen to a particular port/ip address using Listen directive. Syntax : Listen [IP_Address:]Port Examples : Listen 0.0.0.0:80 Listen 80 Listen...
Struts2 Tutorial Part 3 – Actions 1
In this tutorial session we will see the important key aspects of Struts2 Actions. If you want to get clear idea over struts 2 from...