Sunday, February 22, 2009

Installing Bugzilla on a Window's System Part 1

As you are building your project, you need a way to keep track of issues. Many people keep track of issues in an excel spreadsheet which can be hard to maintain. The better way is to use an issue tracking system. Bugzilla is an open source issue tracking system. I don't think it is the best one out there, but it is the only open source one that I know about. It can be a big pain to install though.

You can install Bugzilla by checking it out from CVS, or by downloading the tar.gz file from their website.

Installing Bugzilla by downloading tar.gz
***************************************************
download from http://www.bugzilla.org/download/
select stable release
I am installing version Bugzilla 3.2.2

You will download a tar.gz file which some unzip programs can't unzip.

If you do not have a tool to unzip this type of archive file, you can download one from here: http://www.sfsu.edu/ftp/win/utils/. I Download the powarc61.exe.

You can now open the tar file for bugzilla using this tool. Select extract and place the bugzilla file somewhere on your c drive.


Install from CVS
********************************
Instead of installing from CVS using the command client, I would use TortoiseCVS.

You can download Tortoise from this site: http://www.tortoisecvs.org/download.shtml.
The version I am downloading is TortoiseCVSW-1.10.10.exe.

After installing it, you will select the right mouse button on your C: and select cvs checkout.

Fill in the following information-

Protocal: Password server (:pserver:)
Protocol parameters:
Server: cvs-mirror.mozilla.org
Port: 2401
Repository folder: /cvsroot
User name: anonymous
Module (located in the lower right corner): Bugzilla

***********************************
You also need to install mySQL. You can download mySQL from this website: http://dev.mysql.com/downloads/. You can see my mySQL tutorial for instructions on how to install it. If you already have it installed, you can skip this step.

Now you need to create the database for Bugzilla.

Start your mySql database and open your SQLyog Enterprise Manager. (If you aren't using an Enterprise Manager, you will need to create the database using the command prompt)

Under root@localhost, select your right mouse button and select create Database.

Input the name bugs for the database name.

Run this query in the Query Analyzer: grant all privileges on bugs.* to 'bugs'@'localhost'
Run this query: flush privileges;


Go To Bugzilla Installation Part 2

Read more...

Friday, February 20, 2009

Web Design for Idiots

Webdesignad
Are you looking to improve your website or blog? You should checkout the web design for idiots main page website tutorials. This is a great place to help you design a website. You can teach yourself oscommerce for newbies oscommerce file structure and learn all about web designing. You can also get your web design questions answered by web design for idiots. About Web Design for Idiots is a blog about web designing. The blog contains different categories that you might be interested in. One category you might be interested in is the Web Design category which discusses some information on creating forms. You can read about creating a contact form, and you can read all about the secure socket layer (SSL). The blog also contains some quick steps concerning graphics on your website. There is one post that discusses the easy way to change any website image. One of the most valuable things the blog discusses is the SEO crash course. SEO stands for Search Engine Optimization and this blog discusses the importance of making sure your website is seen by search engines. So what are you waiting for? If you are looking to learn about web designing for a website or a blog, you need to checkout webdesignforidiots.net and see how the blog can help you.
Post?slot_id=32571&url=http%3a%2f%2fsocialspark

Read more...

Sunday, February 15, 2009

Online Backups

Have you ever had your hard drive crash? Maybe you had to reformat your hard drive because you got a computer virus. To prevent a situation like this, you might want to consider an Online Backups. The online solution will run software that is easy to use and runs in the background. It is easy on your bandwidth, and you will also be able to recover your data from a different point in time. Every company should have their data backed up, and even individual people should backup their important data. If you have a horror story on how you lost all of your important data, you might want to tell people about it at the Sumo Backup website. This way other people can here of your mistake and can prevent it from happening to them. Of course, if people backup their data properly, they won't have any horror story. You do not want to keep your backups in the same location as your original either because if a fire happens, you don't want your backups destroyed too. That is why you should consider an online solution. If you are looking for a good backup solution, you should checkout Sumo Backup and see how they can help.

Post?slot_id=32339&url=http%3a%2f%2fsocialspark

Read more...

Wednesday, February 11, 2009

Getting Form Information from PageContext in JSP Step 61

If you need to access form information without using a tag in your jsp page, you can do that by using the pageContext.

For Example, in your include-taglibs.jspf file, you can add this import.

%@ page import="com.form.UserForm"%>

In your UserForm class, you should add a test method:


public String getTest()
{
return "This is a test";
}


In your addbook.jsp page, you can add this code:

<%Object o=pageContext.getAttribute("userForm",PageContext.SESSION_SCOPE);
UserForm userForm=(UserForm)o;
System.out.println("testing: " userForm.getTest()); %>


This code will pull the userForm and call the method getTest. This can come in handy when a tag will not fulfill your needs.

You should make sure you use the proper scope for your application:
PageContext.PAGE_SCOPE
PageContext.REQUEST_SCOPE
PageContext.SESSION_SCOPE
PageContext.APPLICATION_SCOPE
Go To Step 62 Conclusion

Read more...

Blog Stats

Powered by  MyPagerank.Net








Dmegs Web Directory

Read more...

Thursday, February 5, 2009

Play Some Online Casino Games

Are you looking to get some extra money? Do you enjoy gambling? One of my favorite places to gamble is at the supercasino. They have a lot of online casino games from the traditional game of roulette to the game of BlackJack. The supercasinolive roulette uses the European standard certified version of the roulette wheel. You can also enjoy playing the roulette game for free by playing with the fun chips. The live roulette show has regular presenters who will spin the wheel for you. They are all official and licensed croupiers. With the live roulette TV, the paying out and betting process is automatic so the dealer can spend more time to entertain you. You can visit the supercasino blog to get the online advantages and benefits of playing casino games online. One of the reasons is that you can play from the comfort of your own home, and you do not have to spend hours at an actual casino. The blog also discusses some dangers of gambling and warns against allowing yourself to get addicted to it. If you are going to gamble, you have to gamble responsibly. They have other good articles to read about. You might be interested in reading about the roulette history. They also have an interesting article about playing BlackJack online. So what are you waiting for? If you are dying to challenge the odds playing some entertaining casino games, then supercasion.uk.com might be the place for you. It is very easy to get started. All you need to do is visit the website and create a username and password. After you have completed your registration, you will be on your way to getting involved in some of the best online casino games out there. If you think you have the skills, you can also enter some tournaments.

Read more...

Tuesday, February 3, 2009

Using Probe with Tomcat Step 60

It is a good idea for you to be familiar with a profiler or static analysis tool. Profilers can give you information about memory leaks and other needed information to help you improve your code. One tool that you can try is the Lamda Probe which is a tool to analyze your Tomcat applications.

http://www.lambdaprobe.org/d/index.htm
You can download it from the above site and select the Download Lambda Probe on the left hand side. The version I downloaded is probe.1.7b.zip.

When you unzip it, you will notice that the file is called probe.war. Deploy that war file to your webapps folder of your tomcat instance.

You need to add some users to tomcat for this application. Open your tomcat-users.xml file under your tomcat conf folder.

Add these roles to this xml file:
<role rolename="probeuser"/><role rolename="poweruser"/><
role rolename="poweruserplus"/>

and add these users:
<user username="poweruser" password="poweruser" roles="poweruser"/>
<user username="poweruserplus" password="poweruserplus" roles="poweruserplus"/>
<user username="probeuser" password="probeuser" roles="probeuser"/>
<user username="probemanager" password="probemanager" roles="manager"/>

Now you should start your tomcat and visit this URL:
http://localhost:8080/probe/

Login as one of the users you added. I logged in as probeuser with the password as probeuser.
This application will give you data on the memory usage of your tomcat instance.

There are many other static analysis tools that can help you discover memory leaks and other issues you might have in your application.
Go To Step 61

Read more...

Sunday, February 1, 2009

Junk Mail Removal Service

Netdetective
Are you tired of constantly receiving junk mail? If you are looking to End Junk Mail, you should consider supporting the Privacy Council. There primary goal is to work with educators and lawyers to end unwanted junk mail. You can make a contribution to this cause, and your contribution will help pay for operations, research, and the filtering of mailing lists. It is important to keep your information private so you don't get flooded with unwanted junk mail. Therefore, you should support the Privacy Council. So what are you waiting for? You should visit their website today to get more information.
Post?slot_id=

Read more...