Internet, Tech Tips, Reviews, and Make Money Online

Increase Dell Inspiron LCD Panel Brightness on Battery Power

If you own a Dell Inspiron notebook, you might be facing the LCD panel bightness issue when the system is running on battery power. Even though you have set the brightness to maximum in the operating system, the LCD panel seems to be not bright enough.

You might not have notice that there is a brightness setting in the BIOS.

1. Restart your computer.

2. Press F2 to enter the BIOS configuration menu.

3. Expand the Video tree menu on the left column and select Brightness from the sub-menu.

4. Move the bar to a higher value to increase the brightness. The default value is 3.

5. Save and exit the BIOS.

Now, your LCD panel should be brighter. However, the battery power will be drained much faster if the LCD panel brightness is increased.

hMailServer For Windows Installation Guide

hMailServer is a free e-mail server for Microsoft Windows. It supports all the common e-mail protocols such as, SMTP, POP3 and IMAP.

If you are on a tight budget to purchase a commercial mail server, this is a good choice of having a reliable mail server that cost virtually nothing, except your effort you put to configure it.

I wrote this installation guide based on my experience in setting up a workable system.

Prerequisites

These prerequisites are necessary to have if you want a web mail that works with hMailServer.

1. Apache
2. PHP
3. MySQL
4. Perl

hMailServer Installation

Stop the SMTP Service in IIS (Internet Information Services). It will clash with hMailServer because both are using the same port 25.

Download the latest hMailServer from http://www.hmailserver.com

Launch the installer and follow the installation instruction.

Enter a password for hMailServer Administrator.

Launch the hMailServer Administrator.

Click Settings > Protocols > SMTP, and select the “Delivery of email” tab.

Enter the Host name and click Save.

Right-click Domains menu, then click Add.

Enter a new Domain name. Eg. mydomain.com

Enter a catch-all address. Eg. catch-all@mydomain.com

Click Save.

Expand the newly created Domain and click “Add account”.

Enter an Account Address and Password.

Click Save.

Repeat the steps to create additional accounts.

Apache Installation

Download the latest Apache 1.3.x from http://httpd.apache.org/

Launch the installer and follow the installation instruction.

Edit httpd.conf

Enter an e-mail address in ServerAdmin.

Enter a ServerName.

Modify DocumentRoot if necessary to point to the root directory. Eg. D:/www
Note the forward slash “/”.

The default root directory is at C:/Program Files/Apache Group/Apache/htdocs, or in a different folder location where the Apache program is installed.

Add: index.php to DirectoryIndex. Place it before index.html.

Add: LoadModule php5_module “C:/php/php5apache.dll”

Uncomment: LoadModule vhost_alias_module modules/mod_vhost_alias.so

Uncomment: LoadModule rewrite_module modules/mod_rewrite.so

Add: AddModule mod_php5.c

Uncomment: AddModule mod_vhost_alias.c

Uncomment: AddModule mod_rewrite.c

Save the changes.

Start Apache Service and verify there is no error.

PHP + PEAR Installation

Download the latest PHP 5.2.x Zip Package (not installer package) from http://www.php.net/

Unzip it to C:\PHP folder.

Rename php.ini-recommended to php.ini and copy it to C:\Windows folder.

Edit C:\Windows\php.ini with the following:

short_open_tag = On
max_execution_time = 60
post_max_size = 20M
upload_max_filesize = 20M
include_path=”.;C:\PHP\PEAR;C:\PHP”
extension_dir = “C:\PHP\ext”

Uncomment:
extension=php_bz2.dll
extension=php_curl.dll
extension=php_gd2.dll
extension=php_gettext.dll
extension=php_ldap.dll
extension=php_mbstring.dll
extension=php_mcrypt.dll
extension=php_mhash.dll
extension=php_mysql.dll
extension=php_xsl.dll
extension=php_zip.dll

Copy libeay32.dll and libmysql.dll from C:\PHP to C:\Windows\System32 folder.

Launch the Windows command prompt and enter C:\PHP\go-pear.bat to install PEAR.

Follow the installation instruction and keep the default settings.

Download the PEAR DB package from http://pear.php.net/package/DB/

Unzip it into C:\PHP\PEAR folder. Make sure the DB.php is in that folder.

Restart Apache and verify there is no error.

Create a phpinfo.php with the following code and place it in the root directory.

<?php
echo phpinfo();
?>

Browse the phpinfo.php in web browser. PHP installation is successful if information is displayed.

MySQL Installation

You have an option to install the MySQL automatically when the hMailServer is installed, unless you want to have a separate MySQL installation.

Download the latest MySQL Community Server 5.x from http://www.mysql.com/

Launch the installer and follow the installation instruction.

Start MySQL Service.

Download the latest MySQL Administrator GUI Tools from http://dev.mysql.com/downloads/gui-tools/

Launch the installer and follow the installation instruction.

Launch the MySQL Administrator.

Click Catalogs and create a New Schema.

Enter a Schema name: eg. squirrelmail

Click User Administration and Add New User.

Enter a new MySQL User name. eg. squirreluser

Enter a Password. Eg. squirrelpassword

Click Apply Changes.

Right-click the squirreluser and Add Host.

Enter a Host as localhost.

Select localhost and select the Schema Privileges tab.

Select squirrelmail and move SELECT, INSERT, UPDATE and DELETE to Assigned Privileges.

Click Apply Changes.

Launch MySQL Command Prompt and login into MySQL.

********* Skip this section of the above is done ************
CREATE DATABASE squirrelmail;

GRANT select,insert,update,delete ON squirrelmail.*
TO squirreluser@localhost IDENTIFIED BY ’squirrelpassword’;
**********************************************

USE squirrelmail;

CREATE TABLE address (
owner varchar(128) DEFAULT ” NOT NULL,
nickname varchar(16) DEFAULT ” NOT NULL,
firstname varchar(128) DEFAULT ” NOT NULL,
lastname varchar(128) DEFAULT ” NOT NULL,
email varchar(128) DEFAULT ” NOT NULL,
label varchar(255),
PRIMARY KEY (owner,nickname),
KEY firstname (firstname,lastname)
);

CREATE TABLE userprefs (
user varchar(128) DEFAULT ” NOT NULL,
prefkey varchar(64) DEFAULT ” NOT NULL,
prefval blob DEFAULT ” NOT NULL,
PRIMARY KEY (user,prefkey)
);

quit

PERL Installation

Download the latest ActivePerl 5.10.x from http://www.activestate.com/

Launch the installer and follow the installation instruction.

SquirrelMail Installation

Download the latest SquirrelMail 1.4.x from http://www.squirrelmail.org/

Unzip it into the web root C:\path to apache\htdocs or in a sub-folder. Eg C:\path to apache\htdocs\ squirrelmail\ and you will access it through http://yourdomain.com/squirrelmail/

Create a directory C:\Data and within that directory create two more directories C:\Data\Data and C:\Data\Attachments. Specify these as your Data and Attachment directories.

Edit functions/db_prefs.php and replace var $default with the following:

var $default = Array(’chosen_theme’ => ‘../themes/default_theme.php’,
’show_html_default’ => ‘1′,
‘language’ => ‘en_US’,
‘use_javascript_addr_book’ => ‘1′,
‘left_size’ => ‘140′,
‘left_refresh’ => ‘3600′,
’show_username’ => ‘1′,
’show_username_pos’ => ‘top’,
‘order1′ => ‘1′,
‘order2′ => ‘2′,
‘order3′ => ‘3′,
‘order4′ => ‘5′,
‘order5′ => ‘4′,
‘order6′ => ‘6′);

Edit squirrelmail/src/login.php and change the wording of “Name:” to “Email Address:”.

In Windows command prompt, access into C:\path to\squirrelmail\config folder.

Type perl conf.pl

D. SET PRE-DEFINED SETTINGS FOR SPECIFIC IMAP SERVERS
Choose hmailserver

1. ORGANIZATION PREFERENCES
1. Organization name : YourCompany WebMail
2. Organization Logo : /images/yourcompanylogo-100.gif
3. Org. Logo Height/Width : 100/100
4. Organization title : YourCompany WebMail (v$version)
7. Provider link : http://www.yourdomain.com
8. Provider name : YourCompany

2. SERVER SETTINGS
1. Domain : yourdomain.com

3. FOLDER DEFAULTS
15. Default Unseen Type : 2

4. GENERAL OPTIONS
1. Data directory : C:/Data/Data
2. Attachment directory : C:/Data/Attachments
5. Usernames in lower case : true
7. Hide SM attributions : true
11. Allow server-side sorting : false
( Note: Item 4.1 and 4.2 need to be forward slash “/”)

6. ADDRESS BOOKS
2. Use Javascript Address Book Search : True

9. DATABASE
1. DSN for address book :
mysql://squirreluser:squirrelpassword@localhost/squirrelmail
3. DSN for preferences :
mysql://squirreluser:squirrelpassword@localhost/squirrelmail

Now, Save and quit the config program

Start Apache Service and verify there is no error.

Done.

ClamWin

ClamWin is an open source anti-virus scanning and detection engine that will integrated seamlessly with hMailServer.

Download the latest ClamWin 0.93.x installer from http://www.clamwin.com/

Launch the installer and follow the installation instruction.

Launch hMailServer Administrator.

Expand the Settings > AntiVirus menu.

Set the desired options in General tab.

Click ClamWin tab and enable “Use ClamWin” checkbox.

Click the AutoDetect button to locate the ClamWin installation path.

Verify the ClamScan executable path and ClamScan database path are correct.

Click Save.

ASSP (Anti-Spam SMTP Proxy Server)

This is installation is option.

ASSP is an open source, multi-platform anti-spam proxy server which will detect and block spam e-mails before they rech your mail server.

The accuracy of ASSP in catching spams is very high, which I do recommend that you give it a try.

Download the latest ASSP installer from http://www.asspsmtp.org/

Read the ASSP installation guide available from the ASSP web site.

Try Out Your Installation

It’s time to try out your hMailServer SMTP, POP3 and IMAP installation using Outlook, Mozilla Thunderbird or Squirrelmail.

High Speed Internet Broadband Booster Software

I found the Full Speed software in the Internet yesterday that advertised itself to be able increase your Internet broadband speed. The software tweaks nd optimizes the Windows Operating System’s Internet and network settings for best performance possible.

I installed and tested it yesterday and noticed there was a significant increase in web browsing and file downloading speed.

The Full Speed software has free and paid versions. The free version is fully functional without time limitation.

Test your Internet broadband speed at SpeedTest.net before and after installing the Full Speed software.

Personalized Firefox 3 World Record Download Day Certificate

Firefox 3 set a Guinness World Record on June 17, 2008, for the most software downloaded in 24 hours. More than 8 million people downloaded Firefox 3 that offers safer, smarter and better web browsing experience.

I’ve got my very own personalized Firefox 3 Download Day certificate as seen below.

Firefox 3 Download Day 2008 Certificate

Create your personalized Firefox 3 Download Day certificate with your name embedded in it at the Spread Firefox Download Day 2008 web site.

SEOQuake for Mozilla FireFox and Internet Explorer

SEOQuake is an add-on for Mozilla Firefox and Internet Explorer. It is a must-have Search Engine Optimization (SEO) and web site promotions tool for webmasters.

The tool can be used to retrieve and investigate SEO parameters of web pages on the fly. User can use SEOQuake to study other web sites SEO parameters so that his or her own web site can follow the best practise of other web site SEO configurations in order to achieve higher ranking in the search engine results.

When a web page is loaded in the web browser, SEOQuake will retrieve and display the results such as, Google PageRank, Google, Yahoo and MSN indexes, and Alexa rank, and etc. in the toolbar.

I like the built-in Keyword Density tool which will analyze and tell you the density of every word found in a web page being queried. Within the Keyword Density tool, you can also load Google keywords data that coresponds to the keywords it has analyzed.

New Tires On The Rear

When I changed my car tires, most of the tire dealers would say that new tires should be installed on the front. I believe you have been told the same, correct?

I came to know this interesting fact from Michelin that new tires on the rear of a car will have a better grip to prevent its tail from spinning in the event of oversteer especially in wet condition.

Watch this car safety video about why we must always install new tires on the rear.

Iris Browser for Windows Mobile uses WebKit rendering engine

WebKit is an open source web browser rendering engine. The WebKit rendering engine is used by Apple’s iPhone Safari and Nokia’s Series 60 mobile phones.

The Iris Browser developed by Torch Mobile is a web browser for Windows Mobile 5 & 6 that uses the WebKit rendering engine.

It is now available for download at Torch Mobile’s web site.

Free music download for everyone

Artists that upload their own music to Jamendo allows anyone to listen, download and share their music for free. Yes, free!

The site stated that it is hosting more than 10,000 albums created by more than 5000 artists. That’s a lot of music you can listen to all day long.

The albums are are organised with tags, plus a search feature allowing you to easily find your favourite music.

So, let’s turn on your PC speakers, visit Jamendo, sit back and enjoy those wonderful music.

Clickbank accepts sign up from Malaysia

Clickbank just added more countries to its sign up form recently. There were many countries “banned” from registering for a Clickbank account.

If you live in one of those affected countries such as, Macau and Malaysia, this will a joyous day for many internet marketers from these countries that they can sign up for a Clickbank account.

There will be no more worry about find ways to get a Clickbank account.

You can now concentrate to market your products and make more money for yourself.

Sign Up Clickbank Account

Move IE7 Menu Bar Back to Original Location with IE7Pro

After I installed and ran the Internet Explorer 7 (IE7) for the first time, the first thing I noticed was the address bar located above the menu bar, while the menu bar was located below it.

IE7 layout is shifted from the stardard user interface found in most of other Microsoft applications.

I found that many people posted methods to move the menu bar back to its original location by editing the Windows Registry.

Editing the Windows Registry is not recommended for a novice because if someone accidentally edited the wrong setting, it might cause the operating system to crash.

I was searching around the Internet and stumbled upon IE7Pro. IE7Pro is an add-on for Internet Explorer which can move the menu bar back to its origincal position.

IE7Pro also has lots of sleek features and extras that make your browsing faster, more responsive and customizable.

Visit IE7Pro web site for more information and download the add-on.