Tech Guide Blog

Tech Guide Programming Tutorial Tips Tricks

Archive for the ‘Tutorial’ Category

How to Make Favicon

Posted by Admin On June - 11 - 2009
favicon_sample

favicon

Sometimes, we look at the browser and see something unique above the browser, left beside the address bar. That’s called favicon. It’s not necessary to make it, but for some reasons, it can raise up your webs honor and pride. See how many websites like microsoft.com and wordpress.org. They must have a favicon, because a favicon can tell you how serious they work on their website, a website that doesn’t have favicon is like an under construction website :(. Here is an example what favicon is looks like.

Doesn’t know how to make it? You can try these simple steps to make it.

  1. Make a square image for your favicon with paint or sumthin’ like that (square is recommended, 300×300 pixels should be enough). Save it with .jpeg or .png format, it’s not must-do but save it
  2. Go to http://www.html-kit.com/favicon/
  3. Upload your favicon image and click generate Favicon.ico
  4. Download the favicon package and extract it
  5. Now, you will be given 2 files, animated and static one, choose one that you desire
  6. Upload it to your website/ FTP server
  7. Add following HTML tags to your web page after the <head> tag but before the </head> tag: <link rel=”shortcut icon” href=”favicon.ico”> (this is for static favicon), <link rel=”icon” type=”image/gif” href=”animated_favicon1.gif” (for animated favicon)  href value is depend from your favicon location on your website, if you want to be like this, you must upload your favicon to your public_html folder
  8. Save your web page.

It’s should be done and you can try to reload or visit your website and see it works.

Popularity: 27% [?]

How to Set Up Listener Oracle 10g

Posted by Admin On May - 24 - 2009

This post is the second part of how to install Oracle Database 10g. After you finished installing the database, you can start by installing the listener. Just open Net Consfiguration Assistant in start menu -> all programs, usually found at Oracle - OraDb10g_home1 (default name in start menu) -> Configuration and Migration Tools -> Net Configuration Assistant. But first you have to set up the Oracle Net Admin (Net Manager), this also in Configuration and Migration Tools.

oracle-net-manager

click to enlarge

Just fill the Oracle home directory with your Oracle home directory like the picture above and SID with your Oracle service name. Save network configuration and exit (File -> Save Network Configuration).

Back to Net Configuration Assistant and you will see the configuration wizard.

click to enlarge

click to enlarge

Choose Listener Configuration -> Add -> fill your listener name -> TCP (Selected Protocols) -> use the standard port number -> no -> next -> done. Now the listener have already configured.

Popularity: 100% [?]

How to Install Oracle Database 10g part 1

Posted by Admin On May - 3 - 2009

These days, who don’t know Oracle? Many firms and DBA use this software to keep them earn money and keep their database that contains many sensitive information. But unfortunately, installing Oracle is a bit difficult, because for the beginner, they don’t know many words, words that they never hear before, and moreover Oracle gave many configurations that I think those are too difficult to understand and not likely too necessary to show those settings configuration, but these may be important for experienced user to do those. I think Oracle should give two options for installation, express and custom like another software.

step1

Setup Wizard

Back to topic, after you insert the Oracle DVD or after you download it, just start install Oracle Database (setup.exe from Database).

This picture above is the first step you install the database, just choose basic installation and choose the installation directory. In this page you have to choose whether you create starter database, created by Oracle itself, or you can create your own database later after the installation, for beginner I suggest you choose to make Oracle starter database, just choose your global database name and password. Many people think this password is for SYS and SYSTEM username, but they’re wrong. These people can’t log on into Manager Console as administrator (SYSTEM) because of this. You have to set SYSTEM password manually later. Just click next and so on until you get firewall warning, just click unblock to javaw.

firewall javaw

Unblock javaw

Just wait until the installation is finished and click exit. I will show you how to create the database in the next post. Hope I have enough power to post it! Any questions?

Popularity: 30% [?]