Comparison between various Merchant Accounts

August 17th, 2008 / No Comments » / by aloke

Merchant services usually refers to the service that enables a business to accept a transaction payment by use of the customer’s credit , debit card and Bank Transfer. More generally, the term includes the following in its use:

* Credit and debit cards payment processing
* Check guarantee and check conversion services
* Automated Clearing House check drafting services
* Gift and loyalty card programs

Here is a small comparison of various Merchant service providers in India and/or worldwide . Please note that all the information were collected from their respective websites/brochures . Hope these information is handy and will be useful , while deciding for any merchant account .

EBS (Axis) Bank

Credit Card Accepted : Master Card , Visa Card

A. Pricing Option 1

One time setup: Rs. 10000/-

TDR: 6%

Annual Charge: Rs. 6000/-

B. Pricing Option 2

One time setup: Rs. 20000/-

TDR: 5%

C. Pricing Option 3

One time setup: Rs. 25000/-

TDR: 4%

# Annual Maintenance Charge Rs. 6000/-

Payment Withdraw Method : Direct deposit in UTI Account

————————————————–

Paypal

Credit Card Accepted : VISA , Mastercard , American Express , Discover

Others : Paypal Payments, USA Echecks

Pricing Option

One time setup: FREE

TDR: 3.5%

Payment Withdraw Method : Manually Cheque Request or Direct Deposit in any US Accounts

—————————————————————————

CCAvenue

Credit Card Accepted : VISA American Express Citibank E-Cards Diners Club International

JCB Cards

Netbanking And others :

Centurion Bank of Punjab

Citibank

HDFC Bank

ICICI Bank Ltd.

IDBI Bank

IndusInd Bank

Kotak Mahindra Group

Oriental Bank of Commerce

Punjab National Bank (PNB)

The Federal Bank Ltd

UTI Bank

The Bank of Rajasthan

YES Bank

Paymate (Mobile Payment)

Itz Cash

Pricing Option 1 - Premium

One time setup: Rs. 25000/-

TDR (Credit Card): 5%

TDR (Netbanking): 4%

Annual Charge: Rs. 2400/-

Pricing Option 2 - Economy

One time setup: Rs. 7500/-

TDR (Credit Card): 7%

TDR (Netbanking): 4%

Annual Charge: Rs. 1200/-

Payment Withdraw Method : Direct deposit in any Indian Bank Account

—————————————————————————————–

2 Checkout

Credit Card Accepted : VISA Mastercard American Express Diners Club International JCB Cards

Pricing Option

One time setup: Rs. 2000/-

TDR: 5.5% + 0.45USD

Payment Withdraw Method :

Wire transfer in any Indian Bank Account or Direct Deposit in any US Accounts

Tags: , , , , , , , , , , , , , , , , , , , , , , ,

I don’t even know where to start…

August 14th, 2008 / No Comments » / by aloke

I don’t even know where to start, so i’m just going to put it out there. Yesterday on 13th August my father, Adhar Chandra Majumder , an ex employee of Unicef and Indian Railways, passed away quietly in the Central Railway Hospital , Garden Reach, Kolkata, following an extended illness. Basically he was under the treatment of Tata Memorial Hospital, Mumbai. He was 63 .

All the immediate rituals have been done and I went out into the river Hooghly ( Ganges )to spread his ashes there.

I would like to thank all the friends and others who were so supportive to me and I am really grateful to them .

Presently all my activities will be sporadic, as attention to family matters will take precedence at this time.

Tags: , , , ,

How to install Apache Tomcat on Ubuntu

August 11th, 2008 / No Comments » / by aloke

I was trying to install Apache Tomcat on Ubuntu for my friend from repository but the version from the repositories simply didnt work . So I made it installed manually and here is the steps on how to do that .

Before you install Apache Tomcat, make sure you are having Java installed on your box .

sudo apt-get install sun-java6-jdk It will make the Java installed .

Once done , proceed with apache tomcat installation :

First of all, download and extract Tomcat from the apache site. You should make sure for latest version and adjust it accordingly in the following instruction .

wget http://mirror.olnevhost.net/pub/apache/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.tar.gz

tar xvzf apache-tomcat-6.0.18.tar.gz

Now we will move the tomcat folder to a permanent location.Preferably /usr/local/tomcat, but you could move it somewhere else if you wanted to.

sudo mv apache-tomcat-6.0.18 /usr/local/tomcat

Now we will handle the most important part . Apache Tomcat requires the JAVA_HOME variable should be set up properly. The best way to do this is to set it in .bashrc file.

The better method is editing your .bashrc file and adding the following line there.

vi ~/.bashrc

Add the following line:

export JAVA_HOME=/usr/lib/jvm/java-6-sun

At this point you can start tomcat by just executing the startup.sh script in the tomcat/bin folder.

But we will go for the automatic start option

To make tomcat automatically start when boot up , you can add a script to make it auto-start and shutdown.

sudo vi /etc/init.d/tomcat

Now paste in the following:


# Tomcat auto-start
#
# description: Auto-starts tomcat
# processname: tomcat
# pidfile: /var/run/tomcat.pid

export JAVA_HOME=/usr/lib/jvm/java-6-sun

case $1 in
start)
sh /usr/local/tomcat/bin/startup.sh
;;
stop)
sh /usr/local/tomcat/bin/shutdown.sh
;;
restart)
sh /usr/local/tomcat/bin/shutdown.sh
sh /usr/local/tomcat/bin/startup.sh
;;
esac
exit 0

You’ll need to make the script executable by running the chmod command:

sudo chmod 755 /etc/init.d/tomcat

Next step is actually linking this script to the startup folders with a symbolic link. Execute these two commands and we should be on our way.


sudo ln -s /etc/init.d/tomcat /etc/rc1.d/K99tomcat
sudo ln -s /etc/init.d/tomcat /etc/rc2.d/S99tomcat

All done and your Apache Tomcat should be running at FQDN:8080 or localhost:8080 . Open a browser and access it .

The final step is to set Apache Tomcat Manager login credentials should be added for your management .

Edit the following file


vi /usr/local/tomcat/conf/tomcat-users.xml

And Add the following and save .

< role rolename="manager"/>
< user username="PUT_ANY_USERNAME" password="PUT_ANY_PASSWORD" roles="manager"/>

Now restart apache tomcat and all should be set to go ……

Tags: , , , , , , , , , , , , ,

Google offers ‘Insights for Search’

August 8th, 2008 / No Comments » / by aloke

Here’s the article from Cnet:

Google has taken its popular Google Trends and launched a spin-off product called Google Insights for Search. Geared toward advertisers, it’s a tool to track a particular search term’s popularity across the Web and geographic regions of the world.

For Google, this can help boost advertiser confidence and potentially win its program some new converts who would’ve otherwise been skeptical regarding how effectively they could target an online ad campaign.

With Google Insights for Search, you can search for a term to track how much it’s been googled over time, where on a “heat map” it’s most popular, and what the top “related” and “rising” searches for the term are.

Results can also be filtered by geographic region, time frame, or category. Let’s say you search for “spears,” and most of the results on Google Insights for Search deal with some trashy pop star. But you happen to be the owner of a small business that creates replica medieval weapons, so that’s not the sort of spears you’re looking for. You can narrow your search down to a single field–”industries,” say, or “recreation,” and hope you see fewer instances of Britney and Jamie Lynn.

Here’s another one: search for “spaghetti,” and you’ll get a lot of results about people seeking recipes. But narrow it down to the “lifestyles” category, and you’ll see that most of the search results that Google Insights provides involve the Church of the Flying Spaghetti Monster.

http://google.com/insights/search/#

Tags: , , , , , , , , , ,

File Transfer in GNU/Linux

August 2nd, 2008 / No Comments » / by aloke

FTP (file transfer protocol)

This is mostly used to copy files between computers. It doesn’t support compression. It is also not encrypted. This is how to transfer files.

To connect to aloke.info

ftp aloke.info

You will have to enter your username and password when prompted.

If the file being transferred is a binary file (yes, PDF and PS are binary files), type the following.

binary

To upload your file aloke.pdf to the directory in aloke.info

cd /home/aloke/backup
put aloke.pdf

To download the file aloke.txt from the directory in aloke.info

get aloke.txt

If you have multiple files, use mget instead of get and mput instead of put.

To quit, type bye. This is just the basic file transfer using FTP. To check all the options using FTP, type man ftp from your shell prompt.

SFTP (secure file transfer protocol)
SFTP is an interactive file transfer program, similar to FTP, which performs all operations over an encrypted secsh transport. If you are a Windows user, you will need a secure file transfer program like WinSCP program.

To connect to aloke.info here is what you should do.

sftp aloke.info

You will have to enter your username and password when prompted.

To upload your file aloke.pdf to the directory in aloke.info

cd /home/aloke/backup
put aloke.pdf

To download the file aloke.txt from the directory in aloke.info

get aloke.txt

If you want to download multiple files, say all PDF files,

get *.pdf

To quit, type exit. This is just the basic SFTP. To check all the options using SFTP, type man sftp from your shell prompt.

SCP (secure copy)
SCP is used for single file transfers unlike SFTP or FTP, where once connected, you can carry out any number of transfers.

To upload the file aloke.pdf to the /home/aloke/backup in the remote computer aloke.info here is what you should do. Lets say the username and password for connecting to aloke.info are aloke and p4ssword respectively, read ahead.

scp aloke.pdf aloke@aloke.info:/home/aloke/backup/

You will be prompted for your password, which you should enter. It uploads the file and quits automatically.. all in one operation.

To download the file aloke.txt from the remote directory, here is what you must do.

scp aloke@aloke.info:/home/aloke/backup/aloke.txt

If you want to upload the entire perl directory (recursively) here is what you do.

scp -r /home/aloke/perl us3r@aloke.info:/home/aloke/backup/


wget

To download the index.html page of gnome.org, here is what you type.

wget http://www.aloke.info/index.html

… and you have the index.html page on your current directory :)

If you want to rip the website upto 3 levels,

wget -r -l 3 http://www.aloke.info

Tags: , , ,

How to enable no password login in Ubuntu

July 22nd, 2008 / No Comments » / by aloke

If you want to enable a password less account in Gnome for your family/friends who have access to your computer. Please note that this is different than not typing a password (autologin) . It is just a “password less account”

Create a user (system/administration/user and groups)

username: guest
real name: guest or whatever you want to display in the graphical greeter later on
profile: desktop user (DO NOT use administrator)
password: password

click ok and close the users and groups tool.

Remove the password for the guest user

open a terminal

sudo passwd -d guest

Authorize login with no passwords in gdm

sudo sed -i ’s/#PasswordRequired=false/PasswordRequired=false/’ /etc/gdm/gdm.conf

Authorize login with no passwords in pam

sudo sed -i ’s/nullok_secure/nullok/’ /etc/pam.d/common-auth

You can now log in with your guest user with no password.

Tags: , , , , , ,

How to Install Mozilla Sunbird in Ubuntu

July 22nd, 2008 / No Comments » / by aloke

Mozilla Sunbird® is a cross-platform calendar application, built upon Mozilla Toolkit. Mozilla Sunbird is now installable by using Synaptic or apt-get. This is the recommended installation method for most users.

Here’s an easy install process of Mozilla Sunbird on Ubuntu

Open a terminal

And go to the /opt directory:

cd /opt

Then download Sunbird :

sudo wget http://mozilla.isc.org/pub/mozilla.org/calendar/sunbird/releases/0.8/linux-i686/en-US/sunbird-0.8.en-US.linux-i686.tar.gz

Now extract Sunbird to a folder named sunbird in /opt

sudo tar -xvf sunbird-0.8.en-US.linux-i686.tar.gz

Give ownership of the sunbird directory to root.

sudo chown -R root:root /opt/sunbird/

Now make a script to redirect to sunbird folder in /opt

sudo gedit /usr/bin/sunbird.sh

In the document that opens, copy this into it:

cd /opt/sunbird/
./sunbird

Save and close the document.

Now make the script executable :

sudo chmod +x /usr/bin/sunbird.sh

Now create a entry in the appilcations menu

sudo gedit /usr/share/applications/sunbird.desktop

In the document that opens, enter:

[Desktop Entry]
Name=Sunbird
Comment=Calendar Application
Exec=sunbird.sh
Icon=/opt/sunbird/chrome/icons/default/default.xpm
Terminal=false
Type=Application
Categories=Application;Office;

Save the document and enjoy.

Tags: , , , , , ,

Disable IPV6 to speed up Internet.

July 22nd, 2008 / No Comments » / by aloke

Having IPv6 be the cause of ’slow’ connection is actually a common misconception, reinforced in that disabling some IPv6 features may help mitigate the problem, in most cases it is the result of bad network configuration. IPv6 itself does not in any way slow down connection, problems will arise however if the network is having a route out to the IPv6 internet but it is not operational, as the browser will try to connect and it will take a while to time-out, note this would also happen with a bad IPv4 internet connection.

To check IPv6 state open terminal and execute:

ip a | grep inet6

If this command shows some lines - IPv6 is enabled. If output is empty - IPv6 disabled. If its disabled , you are fine . if enabled follow the steps :

create fie named bad_list in /etc/modprobe.d containing the following line:

alias net-pf-10 off

Now reboot and you will find no IPv6 on your system!

This method will work even if /etc/modprobe.d/aliases get replaced at some update.

So happy browsing ……btw did I say that I use Ubuntu ;-)

Tags: , , , , , ,

Download Youtube Videos directly

July 22nd, 2008 / No Comments » / by aloke

There is a nice CLI program called youtube-dl . This allows to save the youtube video directly .

Install it first . :

sudo apt-get install youtube-dl

Then just run it:

youtube-dl http://www.youtube.com/watch?v=nPecBxM2f6c —- url of the video you wish to download

And you’ve got it in your home directory. There are also some good command line switches you can use for it too.
Just run man youtube-dl for details of usage.

btw, dont forget to to check the vidoe mentioned here in example …;-)

Tags: , , , , ,

Thousands Of New Land Rushes To Come Thanks To ICANN!

July 22nd, 2008 / No Comments » / by aloke

ICANN has approved a plan in Paris to add virtually unlimited new TLDs including those with non-ASCII characters. This is likely to lead to big changes in the domain space in the years to come with some big companies probably acquiring their own TLD .

The plan enables failed registries to be replaced by a new registry that takes over the TLD from a failed registry. Registrants should be protected from losing their names when this occurs. However, if a new registry is not found quickly, a TLD can be closed and the TLD removed from the root. A new entity could then conceivably apply for the closed TLD and it could be started as a brand new operation, without any registrations.

Details can be found here : http://www.icann.org/en/announcements/announcement-4-26jun08-en.htm
http://www.icann.org/en/topics/new-gtld-program.htm

Tags: , , , , , , ,