Adding a new user in Mercury Quality Center

To add a new user you need to have site administration access like this

http://lsn-d2012:8080/sabin/SiteAdmin.htm
Then log on to the Admin using your username and password for QC.
To create a new user
a)Click on Siteusers in Dashboard
b)To add a new user click on new user icon
A dialog box will open where you add a
a)User id
b)Name
c)Email
d)Phone etc.
and also you [...]



Using Quality center api to get Bug/Defect history by a Macro in Excel

Here is the code that will get you the bug history of a particular defect in Quality center..
1)To run this code ,Open Excel and Press ALT+F11 to go to Visual Basic Editor and paste this code .
2)Replace the url with your QC url
3)Replace username and password with your own username and password

Dim QCConnection
Set QCConnection = [...]



Writing a Shell Scripting in Ubuntu

Go to
1.Applications->System Tools-> Root Terminal
2.Create a file for editing say “a1.txt”
3.Open it and save it as a1.sh or just a1
Then type these lines

#! /bin/sh
# This is a comment
#echo  “Ramanean”
a=1
b=1
c=”$(($a+$b))”
echo “$c”
Every script would being with #! /bin/sh/ and rest of the lines are self explanatory and also one important thing you have to keep in mind [...]



How to create folders in Ubuntu via root terminal

To create folders in Ubuntu via Root terminal
<!–adsense–!>
First go to
a)Applications->System Tools->Root Terminal
Then go to the folder of your choice  and use this command
b) mkdir <directory name> E.g mkdir ramanean
c) A directory “ramanean” will be created within your current folder
d)you can access it by typing cd /folder/folder/ramanean/



How to create folders and files in htdocs for Ubuntu fo Xampp

<!–adsense–>
To create files and folders inside htdocs in Ubuntu
Here is the simple way
First
1.Go to root terminal
2.Type gedit somefilename.php
3.When you save it save it htdocs folder
You can browse through this filesystem->opt->lampp->htdocs->
here you can also create a new folder
and then save it.
or else
1.go to root terminal
2.type gedit filename.php /opt/lampp/htdocs/ (Since Xampp is usually installed in Opt folder)
when [...]



Installing Xampp on Ubuntu

HOWTO: Setup easy web development environment (XAMPP)
This is a how-to for setting up a web development environment easily. This guide will install the XAMPP lampp stack into /opt, setup an easy way to start it up and shut it down, and link a folder in your [...]