<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cWebConsultants</title>
	<atom:link href="http://www.cwebconsultants.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cwebconsultants.com</link>
	<description>Offshore web design, development &#38; Internet Marketing</description>
	<lastBuildDate>Sat, 28 Jan 2012 22:45:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Mobile Phone Development</title>
		<link>http://www.cwebconsultants.com/homepage/second-image/</link>
		<comments>http://www.cwebconsultants.com/homepage/second-image/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 18:50:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[homepage]]></category>

		<guid isPermaLink="false">http://localhost/cwebc/?p=128</guid>
		<description><![CDATA[This is second image]]></description>
			<content:encoded><![CDATA[<p>This is second image</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/homepage/second-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Marketing</title>
		<link>http://www.cwebconsultants.com/homepage/first-image/</link>
		<comments>http://www.cwebconsultants.com/homepage/first-image/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 18:44:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[homepage]]></category>

		<guid isPermaLink="false">http://localhost/cwebc/?p=125</guid>
		<description><![CDATA[this is first image]]></description>
			<content:encoded><![CDATA[<p>this is first image</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/homepage/first-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Admin login issue in Magento</title>
		<link>http://www.cwebconsultants.com/magento/17/</link>
		<comments>http://www.cwebconsultants.com/magento/17/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 21:03:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.cwebconsultants.com/blog/?p=17</guid>
		<description><![CDATA[admin login issues in magento version 1.3 and version 1.4. Basically, its a browser cookie issue which can be solved by editing some code. <a href="http://www.cwebconsultants.com/magento/17/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here are the solution to admin login issues in v1.3 and v1.4 of magento on your local  machine.  I have found these solution after spending hours trying different methods and searching the internet.</p>
<p><strong>Admin login issue in magento v1.3 </strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
You have to edit some code in the following way:</p>
<p>1. Instead of using &#8220;localhost &#8221; in your browser, use 127.0.0.1<br />
2. Browse to this file in your magento code: appcodecoreMageCoreModelSessionAbstractVarien.php<br />
3. Go to line number: 79 &amp; 80  &#8211; comment both of these lines<br />
//$this-&gt;getCookie()-&gt;getLifetime(),</p>
<p>//$this-&gt;getCookie()-&gt;getPath(),<br />
4. Now empty the cache folder: varcache<br />
5. Empty the session folder: varsession</p>
<p>Okay, this should be resolved by now.</p>
<p><strong>Admin login issue in magento v1.4</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Again you to edit the code in the following way:<br />
1. Instead of using &#8220;localhost &#8221; in your browser, use 127.0.0.1<br />
2. Browse to this file in your magento code: appcodecoreMageCoreModelSessionAbstractVarien.php<br />
3. Find this code:<br />
if (isset($cookieParams['domain'])) {<br />
$cookieParams['domain'] = $cookie-&gt;getDomain();<br />
}<br />
And edit it to this:<br />
if (isset($cookieParams['domain']) &amp;&amp; !in_array(“127.0.0.1″, self::getValidatorData())) {<br />
$cookieParams['domain'] = $cookie-&gt;getDomain();<br />
}</p>
<p>4. Now empty the cache folder: varcache<br />
5. Empty the session folder: varsession</p>
<p>You can know login into the admin panel.</p>
<p><strong>What was the issue:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
The issue is that magento is not able to store cookie on your system from &#8220;localhost&#8221;. It needs a true domain to setup cookie and then validate it. thats why some blogs advice you to edit &#8220;hosts&#8221; file and use some name that looks like domain name instead of using &#8220;localhost&#8221;.<br />
But if you use the &#8220;127.0.0.1&#8243; instead of &#8220;localhost&#8221; with the above discussed edits then  atleast i got both the version got working fine.<br />
<strong>Some good references that I searched:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>http://mitulmpatel.wordpress.com/2010/04/05/can-not-login-to-magento-admin-panel/</p>
<p>http://mysillypointofview.wordpress.com/2010/03/24/how-to-fix-magentos-admin-login-failing-no-error-message-on-localhost/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/magento/17/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Installing Magento on Windows/Wamp Server</title>
		<link>http://www.cwebconsultants.com/magento/installing-magento-on-windowswamp-server/</link>
		<comments>http://www.cwebconsultants.com/magento/installing-magento-on-windowswamp-server/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 23:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=6</guid>
		<description><![CDATA[Hay Guys, After struggling for many days to install  &#8221;Magento&#8221; on my local windows machine running wamp server, I found a really great post that helped me successfully install it. http://www.techyuva.com/how-to-install-magento-on-wampserver-windows-xp-with-sample-data The main thing that I noticed is that &#8211; you can&#8217;t install magento on PHP 5.3.0. You need to [...]]]></description>
			<content:encoded><![CDATA[<p>Hay Guys,</p>
<p>After struggling for many days to install  &#8221;Magento&#8221; on my local windows machine running wamp server, I found a really great post that helped me successfully install it.</p>
<p><a href="http://www.techyuva.com/how-to-install-magento-on-wampserver-windows-xp-with-sample-data">http://www.techyuva.com/how-to-install-magento-on-wampserver-windows-xp-with-sample-data</a></p>
<p>The main thing that I noticed is that &#8211; you can&#8217;t install magento on PHP 5.3.0. You need to download PHP 5.2.8 and add to your Wamp Server installation and make it active. Only after that you can install Magento on your local windows machine.</p>
<p>You have to read the whole article to make a successful installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/magento/installing-magento-on-windowswamp-server/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Upload multiple Files from single “File upload input” control</title>
		<link>http://www.cwebconsultants.com/jquery/upload-multiple-files-from-single-file-upload-input-control/</link>
		<comments>http://www.cwebconsultants.com/jquery/upload-multiple-files-from-single-file-upload-input-control/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 02:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Tips]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=7</guid>
		<description><![CDATA[Today I come across a situation in one of my projects where I had&#160; to upload multiple files from a single input file control in HTML. And I found its not possible in HTML to upload multiple files from a single file upload control. Luckily, I found 2 ways to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I come across a situation in one of my projects where I had&#160; to upload multiple files from a single input file control in HTML. And I found its not possible in HTML to upload multiple files from a single file upload control. </p>
<p>Luckily, I found 2 ways to achieve this functionality.&#160; And both are using JavaScript code (JQuery).</p>
<p>1. Upload files one by one from a single file upload control.</p>
<p><strong>Checkout this plug-in:</strong></p>
<p><a href="http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview">http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview</a></p>
<p>2. Select multiple files from the browse popup, pressing “CTRL” button on your keyboard. </p>
<p><strong>Checkout this JQuery plug-in this really works: </strong><a href="http://www.uploadify.com">http://www.uploadify.com</a></p>
<p>There must be more ways to do this same thing. If you know them please discuss in comments. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/jquery/upload-multiple-files-from-single-file-upload-input-control/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Extract Image out of YouTube Video</title>
		<link>http://www.cwebconsultants.com/jquery/extract-image-out-of-youtube-video/</link>
		<comments>http://www.cwebconsultants.com/jquery/extract-image-out-of-youtube-video/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 15:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery Tips]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=8</guid>
		<description><![CDATA[Recently, we wanted to extract image out of YouTube video and use it as a place holder on the webpage for video. I started looking for ways to do this. I found the following jQuery Code. Its works great. It lets you extract an image out of YouTube Video.&#160; http://jquery-howto.blogspot.com/2009/02/how-to-get-youtube-video-screenshot.html [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, we wanted to extract image out of YouTube video and use it as a place holder on the webpage for video. I started looking for ways to do this. I found the following jQuery Code. Its works great. It lets you extract an image out of YouTube Video.&#160; </p>
<p><a href="http://jquery-howto.blogspot.com/2009/02/how-to-get-youtube-video-screenshot.html">http://jquery-howto.blogspot.com/2009/02/how-to-get-youtube-video-screenshot.html</a></p>
<p>It has been converted into the JQuery plug-in by the developer. </p>
<p><a href="http://jquery-howto.blogspot.com/2009/05/jyoutube-jquery-youtube-thumbnail.html">http://jquery-howto.blogspot.com/2009/05/jyoutube-jquery-youtube-thumbnail.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/jquery/extract-image-out-of-youtube-video/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Internet Marketing: Press Releases</title>
		<link>http://www.cwebconsultants.com/seo/internet-marketing-press-releases/</link>
		<comments>http://www.cwebconsultants.com/seo/internet-marketing-press-releases/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 00:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=9</guid>
		<description><![CDATA[The off-page search engine optimization is largely based on quality link building.&#160; And&#160; &#34;making press releases&#34; is one of the link building method. Anyone business can make a press release, whenever they start a new service, launch a new product or anything that could be interesting for people to know [...]]]></description>
			<content:encoded><![CDATA[<p>The off-page search engine optimization is largely based on quality link building.&#160; And&#160; &quot;making press releases&quot; is one of    <br />the link building method. </p>
<p>Anyone business can make a press release, whenever they start a new service, launch a new product or anything that could be interesting for people to know about your organization/business.   <br />Basically, press release is for the media&#160; guys to pick it up and report it to the public. There are various FREE and Paid platforms to make your press release. </p>
<p>Press release is always in the form of a write-up that includes the details about your service/product or whatever you are releasing press release for. </p>
<p><strong>Is r</strong><strong>eleasing a press release really works?</strong> <br />I posted this question on LinkedIn and found some really interesting answers: </p>
<p><a href="http://uk.linkedin.com/in/heatherbakertoplinecomms"><strong>Heather Baker</strong></a><strong> Answers: </strong></p>
<p><em><span style="font-size: medium">“ </span>There is NO value whatsoever in free press release submission sites.       <br />- yes they give you backlinks, but these are nofollow backlinks so worthless for seo.       <br />- yes they give you visibility online, but have you ever met anyone who goes to a release submission site for news?       <br />- while the home pages of these sites are well optimised, the page on which your release goes is not. </em> <br /><em>when it comes to getting media coverage there are no shortcuts &#8211; you need a good story that you can pitch to journalists.      <br />Article-based marketing is a good alternative to free press release sites &#8211; for various reasons &#8211; dofollow backlinks, great optimisation, used as a resource by journalists etc. But the content needs to be unique and useful, so again not a shortcut. <span style="font-size: medium">“</span></em> </p>
<p><a href="http://in.linkedin.com/in/humansearchengine"><strong>Ramesh Kumar</strong></a><strong> Answers : </strong></p>
<p><em><span style="font-size: medium">&quot;</span>Few journalists seem to be picking stories from these free sites. They want &#8216;some spicy stuff&#8217; to build a story around. </em> <br /><em>I am not sure by submitting to PR websites, you get visibility. that happens only when some journalists pick it up and build a story around and publish </em> <br /><em>Ideally if a journalist understands your story and is convinced that readers will be interested in the story, your details may be published in the article. </em> <br /><em>Make some friends with Media people and/or hire a PR agency. <span style="font-size: medium">&quot; </span></em> </p>
<p><a href="http://www.linkedin.com/profile/view?id=1848213&amp;authType=name&amp;authToken=2aU_&amp;goback=.mid_I889635131*43.avq_735046_42471046_0_*2"><strong>Elizabeth Ball</strong></a><strong> Answers:</strong></p>
<p><em>“There are dozens of free press release submission sites out there but I think the most effective thing is to post to one (ore more) consistently so you build up a bank of info. Visitors can then check out your other releases which helps to position you(r client) as a guru</em>. “    </p>
<p> <strong></strong>
<p><strong>You can find a complete list of answers here: </strong></p>
<p><a href="http://www.linkedin.com/answers/marketing-sales/advertising-promotion/internet-marketing/MAR_ADP_INM/735046-42471046">http://www.linkedin.com/answers/marketing-sales/advertising-promotion/internet-marketing/MAR_ADP_INM/735046-42471046</a> </p>
<p><strong>How to publish press release:</strong> <br />There are several FREE press release submission sites. but I am not sure if that can serve your purpose of obtaining high quality back links. But yes, they can do give you back links.</p>
<p>And there are some high quality PAID services that can really help you get more visibility.   <br /><a href="http://www.prweb.com/">http://www.prweb.com/</a> <br /><a href="http://www.i-newswire.com/">http://www.i-newswire.com/</a></p>
<p><strong>FREE Sites to submit press release:      <br /></strong><a href="http://nakedpr.com/2007/07/29/big-list-of-free-press-release-distribution-sites/">http://nakedpr.com/2007/07/29/big-list-of-free-press-release-distribution-sites/</a> <br /><a href="http://mashable.com/2007/10/20/press-releases/">http://mashable.com/2007/10/20/press-releases/</a> <br /><a href="http://www.1888pressrelease.com/">http://www.1888pressrelease.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/seo/internet-marketing-press-releases/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Optimize Your Website for Bing</title>
		<link>http://www.cwebconsultants.com/seo/optimize-your-website-for-bing/</link>
		<comments>http://www.cwebconsultants.com/seo/optimize-your-website-for-bing/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 23:50:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=10</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><span class="Apple-style-span" style="font-family: Arial; font-size: small;"><span class="Apple-style-span" style="font-size: 13px;"><br /></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/seo/optimize-your-website-for-bing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Tools</title>
		<link>http://www.cwebconsultants.com/tools/open-source-tools/</link>
		<comments>http://www.cwebconsultants.com/tools/open-source-tools/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 19:42:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=11</guid>
		<description><![CDATA[When you start website development [either PHP/MYSQL or&#160; any other environment] you require a number of tools to get your work going. So today I am going to discuss some very essential and FREE/open source tools that can help you at various stages of website development. Setting up PHP/MYSQL/Apache development [...]]]></description>
			<content:encoded><![CDATA[<p>When you start website development [either PHP/MYSQL or&nbsp; any other environment] you require a number of tools to get your work going. So today I am going to discuss some very essential and FREE/open source tools that can help you at various stages of website development.</p>
<p><strong>Setting up PHP/MYSQL/Apache development environment:</strong><br /><strong><br /></strong><br /><a href="http://www.wampserver.com/en/">WAMP server</a><br />This package is specifically for <strong>windows based machines</strong> and the three most essential software for PHP based website development (PHP/MySQL and Apache ) are bundled in it and provided in a executable package. And moreover if you need to update any of the 3 bundled software in WAMP &#8211; you can do it!</p>
<p><a href="http://www.apachefriends.org/en/xampp-windows.html">XAMPP Server</a><br />This package is available for not just Windows platform but for Linux and Mac as well. And&nbsp; it has few more software bundled in it than WAMP server package, like FTP client, PERL and Webalizer etc. </p>
<p><strong></strong><br /><strong>FTP clients</strong><br /><strong><br /></strong><br /><a href="http://filezilla-project.org/">FileZilla</a><br />FileZilla allows you to upload/download files to/from remote server very easily. This is one of best open source / FREE FTP client available till today.</p>
<p><strong>PHP/HTML Editors</strong><br /><strong><br /></strong><br /><a href="http://notepad-plus.sourceforge.net/uk/site.htm">NotePad++</a><br />NotePad++ is one of the best FREE&nbsp; HTML/PHP editor. It not just allows you to edit/write code in PHP and HTML but many other languages. For full list of features please visit its <a href="http://notepad-plus.sourceforge.net/uk/site.htm">project website</a>.</p>
<p><strong>Database Management Tools</strong><br /><strong><br /></strong><br /><a href="http://dev.mysql.com/downloads/gui-tools/5.0.html">MySQL GUI Tools</a><br />MySQL GUI Tools is a bundle of three tools:<br />
<blockquote>
<ul>
<li>MySQL Administrator 1.2 </li>
<li>MySQL Query Browser 1.2 </li>
<li>MySQL Migration Toolkit 1.1 </li>
</ul>
</blockquote>
<p>For more information on these tools and many other tools offered by MySQL to manage your database, please visit MySQL website’s <a href="http://dev.mysql.com/downloads/">download page</a>.</p>
<p><strong>Email Client:</strong><br /><strong><br /></strong><br /><a href="http://www.mozillamessaging.com/en-US/thunderbird/">Mozilla Thunderbird</a><br />Mozilla Thunderbird is one of the best FREE email client available today. You can use this software to manage your all POP based emails boxes. For more information on thunderbird please visit <a href="http://www.mozillamessaging.com/en-US/thunderbird/">its website</a>.</p>
<p>I shall write about more FREE and essential software in my next post.</p>
<p><em>To get your website designed/developed, you can contact us on </em><a href="mailto:cwebconsultants@gmail.com"><em>cwebconsultants@gmail.com</em></a> or visit our website <a href="http://www.cwebconsultants.com/">www.cwebconsultants.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/tools/open-source-tools/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Payment gateways in India</title>
		<link>http://www.cwebconsultants.com/tools/payment-gateways-in-india/</link>
		<comments>http://www.cwebconsultants.com/tools/payment-gateways-in-india/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 15:26:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://cwebconsultants.com/blog/?p=12</guid>
		<description><![CDATA[A payment gateway is an important part of an ecommerce website. It helps the websites to accept online payments from the buyer. In this post, I have tried to discuss various payment gateways available in India along with the bucket of services that they offer.I have collected this information from [...]]]></description>
			<content:encoded><![CDATA[<p>A payment gateway is an important part of an ecommerce website. It helps the websites to accept online payments from the buyer. In this post, I have tried to discuss various payment gateways available in India along with the bucket of services that they offer.<br />I have collected this information from their respective websites so if you need more information please contact the respective payment gateway office. The sole purpose of this post is to let you know what kind of payment gateway options are available in India for your ecommerce website. <br />As you know, a payment gateway is an interface that helps websites to accept online payments from their customers.&nbsp; So&nbsp; the main payment mode for a payment gateway is credit cards. But most of Indian payment gateways allow websites to accept payments using debit/ATM cards, internet banking account or prepaid payment cards and mobile phones as well. <br />Although, all the payment gateways have same objective of allowing websites to accept online payments but they differ a lot when it comes to followings.
<ul>
<li>Pricing for merchants </li>
<li>How easy or difficult it is to integrate the gateway with a website </li>
<li>What kind of payment modes are offered by the gateway </li>
<li>Whether you need a merchant account with the any bank or same bank or not required at all. </li>
</ul>
<p>So I have tried to find out answers to all the above questions for many prominent payment gateways. And below are my findings!</p>
<p><a href="http://www.abcpayments.com/"><b>ABC Payments</b></a></p>
<p><a href="http://abcpayments.com/"><img alt="abcpayments" border="0" height="130" src="http://lh5.ggpht.com/_b5VjtGvcggA/SvamplScu_I/AAAAAAAAABg/ngw-HOEOnvI/abcpayments6.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="abcpayments" width="434" /></a><br /><strong>Pricing: </strong><br />Different pricing plans for different kind of businesses. For more information please <a href="http://www.abcpayments.com/pricing.html">click here</a>.<br /><strong>Website Integration</strong>:<br />Form based integration using various server side languages like&nbsp; PHP/ASP/PERL . More information can be found <a href="http://www.abcpayments.com/op-demo/op-demo1.html">here</a><br /><strong>Payment Modes:</strong><br />Wide range of <a href="http://www.abcpayments.com/cards.html">payment modes</a> are offered that includes:
<ul>
<li>Credit cards </li>
<li>Online banking </li>
<li>Pre-paid cards </li>
<li>Mobile phone payments </li>
</ul>
<p>*No <strong>merchant account</strong> is required for this payment gateway, payment are issued through bank cheques.</p>
<p><a href="http://www.ccavenue.com/ccavenue_index.jsp"><b>CC Avenue</b></a></p>
<p><a href="http://www.ccavenue.com/ccavenue_index.jsp"><img alt="ccavenue" border="0" height="102" src="http://lh5.ggpht.com/_b5VjtGvcggA/SvamqOFulKI/AAAAAAAAABo/bAVp9Csln2o/ccavenue7.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="ccavenue" width="434" /></a> <br /><strong>Pricing:</strong><br />Three different pricing schemes are offered. For detailed information <a href="http://www.ccavenue.com/content/pricing.jsp">click here</a>.<br /><strong>Website Integration</strong>:<br />I am afraid that I could not find any example integration kit for any server side language on their website. But yes, there&nbsp; are some references to the form based website integration in their gateway demos. More information on their website integration options can be found <a href="http://www.ccavenue.com/content/quick.jsp">here</a>.<br /><strong>Payment Modes:</strong>
<ul>
<li>Credit cards </li>
<li>Online banking </li>
<li>Pre-paid cards </li>
<li>Mobile phone payments </li>
<li>SMS based payments </li>
</ul>
<p><strong>Merchant Account:</strong><br />CCAvenue offers you to choose between saving account or current account on their signup form. So I do not think that Merchant account is compulsory for this payment gateway.</p>
<p><a href="http://www.icicibank.com/pfsuser/cards/creditcard/cc_merchantservicesclick.htm"><b>ICICI BANK – PaySeal</b></a></p>
<p><a href="http://www.icicibank.com/pfsuser/cards/creditcard/cc_merchantservicesclick.htm"><img alt="icicibank" border="0" height="88" src="http://lh3.ggpht.com/_b5VjtGvcggA/Svamq-T1_bI/AAAAAAAAABs/uJZwdTa4Oi4/icicibank8.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="icicibank" width="434" /></a> <br /><strong>Pricing</strong>:<br />Sorry, I could not find any pricing details for merchants on PaySeal. So the best way to know the correct and updated pricing is to contact ICICI bank <a href="http://www.icicibank.com/Pfsuser/cards/creditcard/merchant/contact.htm">here</a>.<br /><strong>Website Integration:</strong><br />To get PaySeal integrated with your website, you need more control over the servers where you decide to host your website. As you have to install COM components (supplied by ICICI bank) and JAVA runtime environment to make the PaySeal work. Perhaps this seems a bit complex at the face of it but it could be <em>achievable</em> if you have access to the server. <br /><strong>Payment Modes:</strong><br />Only Credit Cards (VISA/MasterCard/VISA Electron)<br /><strong>Merchant Account:</strong><br />You have to open the merchant account/current with the ICICI bank to avail the merchant services. If you already have a current account in ICICI bank then you can use that.<br /><em>ICICI bank offers you to advertise your web shop through the various advertising programs of the bank</em>. More information can be found <a href="http://www.icicibank.com/pfsuser/cards/creditcard/cc_merchantservicesclick.htm#posadvantages">here</a>.</p>
<p><a href="http://www.ebs.in/index.php"><b>E-Billing Solutions (EBS)</b></a></p>
<p><a href="http://www.ebs.in/index.php"><img alt="ebs" border="0" height="103" src="http://lh3.ggpht.com/_b5VjtGvcggA/SvamrNW0ZnI/AAAAAAAAABw/YlQHFV7tEHA/ebs5.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="ebs" width="434" /></a> <br /><strong>Pricing:</strong><br />Five different kind of pricing options are offered. You can find more and updated information regarding the pricing plans on EBS <a href="http://www.ebs.in/pricing_pricing.php">clicking here</a>.<br /><strong>Website Integration:</strong><br />I have to say these guys provide really good <a href="https://support.ebs.in/">integration documentation</a>: A number of server side languages are supported and sample kits are provided.     </p>
<p><strong>Payment Modes:</strong>
<ul>
<li>Credit Cards </li>
<li>Prepaid cards </li>
<li>Internet banking </li>
</ul>
<p><strong>Merchant account:</strong> You do need a current account but it could be with any bank.&nbsp; </p>
<p><a href="http://www.timesofmoney.com/direcpay/jsp/home.jsp"><b>DirectPay</b></a></p>
<p><a href="http://www.timesofmoney.com/direcpay/jsp/home.jsp"><img alt="directpay" border="0" height="110" src="http://lh5.ggpht.com/_b5VjtGvcggA/Svamrw0TLSI/AAAAAAAAAB0/OCyDBvIP1SE/directpay5.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="directpay" width="434" /></a><br /><strong>Pricing &#038; Website Integration:</strong><br />Sorry, I could not find any pricing/website integration information on their website. Perhaps they like you to contact them personally to get the latest information. So please contact DirectPay to get the latest information.<br /><strong>Payment Modes:</strong>
<ul>
<li>Credit cards </li>
<li>Internet banking </li>
<li>Prepaid cards </li>
</ul>
<p><strong>Merchant account:</strong><br />You do not need to open any merchant/current account with any bank to avail their services. All the accumulated funds are transferred to your existi<br />
ng bank account by DirectPay.</p>
<p><em></em><br /><a href="http://www.hdfcbank.com/personal/payments/merchant_services/Merchants_services_payment_gateway.htm"><b>HDFC Bank</b></a></p>
<p><a href="http://www.hdfcbank.com/personal/payments/merchant_services/Merchants_services_payment_gateway.htm"><img alt="hdfc" border="0" height="126" src="http://lh4.ggpht.com/_b5VjtGvcggA/SvamsS0suvI/AAAAAAAAAB4/qYXBjQJMjIw/hdfc8.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="hdfc" width="434" /></a> <br /><strong>Pricing:</strong><br />As advised by the bank, please call HDFC bank to find out latest pricing details. Phone numbers can be found <a href="http://www.hdfcbank.com/personal/payments/merchant_services/Merchants_services_features_benefits.htm">here</a>.<br /><strong>Website Integration:</strong><br />Bank claims to provide good user guides but I could not find any relevant information regarding website integration of payment gateway on their website. So please contact the bank to find it out.<br /><strong>Payment Modes:</strong><br />Only credit cards as far as I know. <br /><strong>Merchant account: </strong><br />I could not find any information regarding the requirement or non-requirement of merchant accounts on their website. So please contact the bank to get latest information.</p>
<p><a href="http://www.online.citibank.co.in/portal/cpg/pg-faq.htm"><b>CITIBank</b></a></p>
<p><a href="http://www.online.citibank.co.in/portal/cpg/pg-faq.htm"><img alt="citibank" border="0" height="108" src="http://lh3.ggpht.com/_b5VjtGvcggA/Svams4-xYLI/AAAAAAAAAB8/q84mhCyAV5k/citibank5.jpg?imgmax=800" style="border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; display: inline;" title="citibank" width="434" /></a><br />As far as I know, CitiBank provides little information regarding <strong>Pricing plans</strong> and <strong>website integration</strong> on their website. So the best way to find out the latest information is to either <a href="http://www.hdfcbank.com/personal/access/popup_pbnumbers.htm">call</a> them or <a href="https://leads.hdfcbank.com/applications/webforms/customersupport/mainfrm.htm">write</a> to them.<br /><strong>Payment Modes:</strong>
<ul>
<li>Credit cards (VISA/MasterCard/CitiBank Card) </li>
<li>CitiBank ATM/Debit cards </li>
</ul>
<p><strong>Merchant account:</strong><br />I could not find any information regarding <strong>merchant accounts</strong> on their website so please do contact the bank regarding this.</p>
<p>In addition to the above payment gateways, there are more payment gateway that are offering similar services. I have briefed them below.
<ul>
<li><a href="http://www.indiapayment.com/Home/tabid/89/Default.aspx">IndiaPay</a> </li>
<li><a href="http://www.optimalpayments.com/us/products-services/default.asp">Optimal Payments</a> </li>
<li><a href="http://www.transecute.com/">Transecute</a> </li>
</ul>
<p>If you come across more payment gateways or any error/bug in the above post, please report that in the comments section.</p>
<p><em>To get your ecommerce websites designed/developed or to get any of the payment gateway integrated on your website contact us on </em><a href="mailto:cwebconsultants@gmail.com"><em>cwebconsultants@gmail.com</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwebconsultants.com/tools/payment-gateways-in-india/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

