<?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>Internet Marketing Tips &#187; Tips</title>
	<atom:link href="http://imtips.co/category/tips/feed" rel="self" type="application/rss+xml" />
	<link>http://imtips.co</link>
	<description>I don’t blog to make money; I make money to blog</description>
	<lastBuildDate>Sat, 12 May 2012 06:52:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Copy Database in phpMyAdmin</title>
		<link>http://imtips.co/copy-database-phpmyadmin.html</link>
		<comments>http://imtips.co/copy-database-phpmyadmin.html#comments</comments>
		<pubDate>Thu, 01 Mar 2012 16:48:36 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=5817</guid>
		<description><![CDATA[A simple process to get large database copied using phpMyAdmin and without shell access.]]></description>
			<content:encoded><![CDATA[<p></p><p>Every resource on Google for Copy Database in phpMyAdmin says &#8211; Export the database in phpMyAdmin. Create a new database and import the exported file into the newly created database using phpMyAdmin interface. The problem with import using phpMyAdmin is when you have a very large file and don&#8217;t have access to command prompt or shell to run import command. In my case the database size was more than 500 MB which cannot be uploaded into phpMyAdmin.</p>
<h2>How to Copy Database in phpMyAdmin?</h2>
<p>Let me share a simple process to get database copied using phpMyAdmin and without shell access.</p>
<ol>
<li>The first thing is to export the database from phpMyAdmin. When exporting make sure you don&#8217;t have the <strong>Create Database</strong> line at the very top of the export file. If you have that line, you need edit the file to delete that line.</li>
<li>The next step is to create a new database where you would like the old database to be copied over.</li>
<li>Download the <a href="http://www.ozerov.de/bigdump/" target="_blank">BigDump MySQL Importer</a>. For your reference I have attached it <a href="http://cdn.imtips.in/wp-content/uploads/2012/03/bigdump.zip" target="_blank">here</a> as well.</li>
<li>Extracting the content of the zip file, you will see one php file named bigdump.php.</li>
<li>Edit the file to add the details of your new database created in step 2.</li>
</ol>
<pre>$db_server = 'localhost';
$db_name = '';
$db_username = '';
$db_password = '';</pre>
<ol start="6">
<li>Once you have the details upload your sql file and the bigdump file to your server using FTP. You may not be allowed to upload 500 MB file into phpMyAdmin but you can always upload them using FTP.</li>
<li>Once uploaded point your browser to the bigdump.php file. It should give you option to import the sql file into the database.</li>
</ol>
<p>I hope this helps other fellow webmasters cloning large database when they have no access to shell. Enjoy.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/copy-database-phpmyadmin.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Add Additional WordPress Menu in thesis?</title>
		<link>http://imtips.co/wordpress-menu-thesis.html</link>
		<comments>http://imtips.co/wordpress-menu-thesis.html#comments</comments>
		<pubDate>Mon, 13 Feb 2012 14:03:26 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=5611</guid>
		<description><![CDATA[How to have a menu that is not a thesis menu but an additional Wordpress menu which means it is not hard coded links in your thesis theme?]]></description>
			<content:encoded><![CDATA[<p></p><p>When re-designing my <a href="http://shabbir.in/new-design-feedback/" target="_blank">Technical Analysis Blog</a> to <a title="Thesis WordPress Theme" href="http://imtips.co/thesis" target="_blank">Thesis Theme</a> I wanted to have a menu that is not a thesis menu but an extra WordPress menu. Searching Google I landed on few articles but they all referred to static links hard coded into the theme and not have an WordPress Menu integrated. So I thought I will share my code of having an additional WordPress menu in your thesis theme.</p>
<p>The process is pretty simple and all you have to do is add few lines to your custom_functions.php file.</p>
<p>1. Register the menu by adding the following line anywhere in the custom_functions.php file</p>
<pre>if (function_exists( 'register_nav_menu' )) register_nav_menu('additional_menu', 'Additional Menu');</pre>
<p>2. Hook to display the menu at an appropriate location. I wanted an additional menu in header and so the code becomes.</p>
<pre>add_action('thesis_hook_header','additional_nav');
function additional_nav()
{
    wp_nav_menu( array( 'theme_location' =&gt; 'additional_menu' ) );
}</pre>
<p>You can replace thesis_hook_header with your location of thesis hook.</p>
<p>Visit menu option in your WordPress admin and now your Thesis theme supports an additional menu.</p>
<p><img class="aligncenter size-full wp-image-5614" title="thesis-additional-menu" src="http://cdn.imtips.in/wp-content/uploads/2012/02/thesis-additional-menu.png" alt="thesis additional menu How to Add Additional WordPress Menu in thesis?" width="286" height="252" /></p>
<p>I hope it helps other fellow thesis developers. Share your feedback in comments below.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/thesis-theme-affiliates-move-to-shareasale.html' rel='bookmark' title='Thesis Theme Affiliates Move to ShareASale'>Thesis Theme Affiliates Move to ShareASale</a></li>
<li><a href='http://imtips.co/free-premium-wordpress-theme.html' rel='bookmark' title='Free or Premium WordPress Theme?'>Free or Premium WordPress Theme?</a></li>
<li><a href='http://imtips.co/best-wordpress-theme-seo.html' rel='bookmark' title='Which is The Best WordPress Theme for SEO?'>Which is The Best WordPress Theme for SEO?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/wordpress-menu-thesis.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Enable Google Analytics Site Search For Google Custom Search?</title>
		<link>http://imtips.co/google-analytics-site-search.html</link>
		<comments>http://imtips.co/google-analytics-site-search.html#comments</comments>
		<pubDate>Sun, 15 Jan 2012 06:17:52 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Keyword Research]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=5465</guid>
		<description><![CDATA[How to Enable Google Analytics Site Search For Google Custom Search and discover what your site audience is looking for.]]></description>
			<content:encoded><![CDATA[<p></p><p>Almost every webmaster uses <a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> but there are very few who can use it to the full potential and I will share one of the secret trick in using Google Analytics that can help you understand your site audience and what they are looking for. The feature we will enable is called Site Search feature which tracks the site search terms for your site and you can use it to give your audience what they are looking for when they visit your site.</p>
<h2>What Is Google Analytics Site Search Tracking?</h2>
<p>If you’re a webmaster, you probably have a search function on your site. If don&#8217;t have search feature, you should definitely add one because it is an easy way to allow your site visitors to find content on your site. Once you have the site search feature on your site, you can track what people are searching for on your site using Google Analytics and this is termed as site search.</p>
<h2>How To Benefit From Google Analytics Site Search Tracking?</h2>
<p>Most webmasters and bloggers have site search option on their website but they don&#8217;t track searched terms and use it to their advantage. They don&#8217;t track what their site visitors are searching for and though the tracking can be enabled with just few clicks in Google Analytics. Today I will explain how you can understand what your visitors are looking for.</p>
<h2>How To Set Up Google Analytics Site Search?</h2>
<ul>
<li>Access your Google analytics new interface account and click on the settings button in the top right corner.</li>
<li>Visit Google Analytics Website profile where you want to enable search tracking.</li>
<li>Click on Profile Settings tab of your site.<br />
<img class="aligncenter size-full wp-image-5469" title="GA-Profile-Settings" src="http://cdn.imtips.in/wp-content/uploads/2012/01/GA-Profile-Settings-e1326561564928.png" alt="GA Profile Settings e1326561564928 How to Enable Google Analytics Site Search For Google Custom Search?" width="485" height="244" /></li>
<li>Scroll to the end and enable the Site Search Option with <em>Do track Site Search</em> radio button.<br />
<img class="aligncenter size-full wp-image-5472" title="Site-Search" src="http://cdn.imtips.in/wp-content/uploads/2012/01/Site-Search-e1326606380986.png" alt="Site Search e1326606380986 How to Enable Google Analytics Site Search For Google Custom Search?" width="565" height="229" /></li>
</ul>
<p>If you are using Google Search on your website, your query parameter will be q. If you are using WordPress internal search, your search parameter will be s.</p>
<p>If you are not using Google search or WordPress, you can find your query parameter by making a search on your site. When I search for the term &#8220;shabbir&#8221; here at IMTips, the URL in the address bar is <a title="Search for : shabbir" href="http://www.imtips.co/?s=shabbir" target="_blank">http://www.imtips.co/?s=shabbir</a>. Take note of the Query Parameter (?s=shabbir). For your search results page, identify the searched query parameter. If you are not sure, post in comments below and I will try to help you find your searched query parameter.</p>
<p>Once you have the query parameter, Apply the changes and you are all set to tracking what your visitors are searching on your site.</p>
<h2>How To Analyze Google Analytics Site Search Report?</h2>
<p>If you just have enabled Google Analytics Site Search tracking, you will need some time for data to start accumulating. If you don&#8217;t have enough visitors that are actively doing searches on your site, it can take even longer. Let us take a look at my Site Search Report for <a title="Programming and SEO Forum" href="http://www.go4expert.com" target="_blank">Go4Expert</a> and try to understand. Click on the image to enlarge.</p>
<div id="attachment_5470" class="wp-caption aligncenter" style="width: 600px">
	<a href="http://cdn.imtips.in/wp-content/uploads/2012/01/go4expert-site-search.png"><img class="size-medium wp-image-5470" title="go4expert-site-search" src="http://cdn.imtips.in/wp-content/uploads/2012/01/go4expert-site-search-600x335.png" alt="go4expert site search 600x335 How to Enable Google Analytics Site Search For Google Custom Search?" width="600" height="335" /></a>
	<p class="wp-caption-text">Go4Expert Site Search Report</p>
</div>
<p>The term that is searched most often on my site is &#8220;Facebook&#8221; and when they do that search, they don&#8217;t find what they are looking for and so 80% of people leave. Approximately 4% of people refine the search to add few more terms to the keyword Facebook.</p>
<p>Conclusion: Need more content related to keyword Facebook. Similar conclusion can also be drawn for the term hacking. Obviously, people are searching go4Expert for information on Hacking Facebook but there are very few articles to actually hacking Facebook and most of them are threads asking how to do that. <img src='http://cdn.imtips.in/wp-includes/images/smilies/icon_biggrin.gif' alt="icon biggrin How to Enable Google Analytics Site Search For Google Custom Search?" class='wp-smiley' title="icon biggrin photo" /> .</p>
<p>The next search term on my site is &#8220;C&#8221;. Fortunately, Go4Expert has a lot of content related to C Programming and so only 47% of people who do that search leave the site, and 18% of the people refine search to find more content on the site.</p>
<h2>Final Thoughts</h2>
<p>Google Search along with Google Analytics Site Search provides valuable information about what your site audience is looking for. This data provides two action items. The first is obvious which is making more content that people are searching for. Secondly, making search box much more prominent on websites. The more visitors use search, more you know what people are looking for.</p>
<p>Have you set up the Site Search reporting capabilities in Google Analytics? If so, how are you using the information? Share your thoughts in comments below.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/bug-on-google-custom-search-results-page.html' rel='bookmark' title='Found a Bug on Google Custom Search Results Page'>Found a Bug on Google Custom Search Results Page</a></li>
<li><a href='http://imtips.co/link-multiple-adwords-account-in-google-analytics.html' rel='bookmark' title='How to Link Multiple Adwords Account in Google Analytics?'>How to Link Multiple Adwords Account in Google Analytics?</a></li>
<li><a href='http://imtips.co/time-to-quit-google-analytics.html' rel='bookmark' title='Is your Google Analytics Data Inaccurate? Time to Quit'>Is your Google Analytics Data Inaccurate? Time to Quit</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/google-analytics-site-search.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Multiple Income Streams</title>
		<link>http://imtips.co/multiple-income-streams.html</link>
		<comments>http://imtips.co/multiple-income-streams.html#comments</comments>
		<pubDate>Sat, 17 Dec 2011 12:21:41 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Affiliate Programs]]></category>
		<category><![CDATA[Freelancing]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=5221</guid>
		<description><![CDATA[Let me share what are the other income streams you can have along with advertisement for your content site or blog to multiply your income.]]></description>
			<content:encoded><![CDATA[<p></p><p>Most webmasters think advertising as the only moneymaking option from websites. Advertising is definitely the better option to monetize your content-based site but remember it is not the only option. I have seen many bloggers and webmasters who have advertising as monetization strategy in mind, misses out on the other monetization option to multiply income streams. I am going to share what other income streams you can have along with advertisement for your content site or blog to multiply your income.</p>
<h2>#1 Consult to Increase Income</h2>
<p>If you have a good content site, you’re already helping your readers. If you provide them for more option like a personal one on one consultation, they will be more than happy to hire you for a fee because they already know you are an expert in the domain. On my <a title="Learn Technical Analysis" href="http://shabbir.in/" target="_blank">Technical Analysis</a> Blog, I share my views on Indian market and though I don&#8217;t have any consultation services option on my blog, there are readers who have hired me to get a personal consultation from me adding one more income stream to my blog.</p>
<h2>#2 Affiliate Programs to Increase Income</h2>
<p>Do you often recommend products or services on your site? Why not earn a commission from those recommendations? I use lot of products for my websites. I share my experience with those products or services and I recommend the same here on IMTips and some of those products earn me a commission.</p>
<p>Note that I don&#8217;t recommend products only for commission but I recommend products that I use which I think will be useful to my readers and some (not all) of them earn me commission.</p>
<h2>#3 Referral Programs to Increase Income</h2>
<p>Consider creating a referral program and reward your existing customers for sending new customers to you. I used to follow this a lot when I was new in freelancing. Remember one of my client responded that I don&#8217;t sell my friends for cash and yes you will see such responses but it is then when I decided to give my existing clients discount for sending new clients my way.</p>
<h2>#4 Add Services to Increase Income</h2>
<p>Another way to boost your income is to expand your services. If you are providing web designing, you can think about adding web development, or even web hosting service.</p>
<p>I use to provide vBulletin services when I started and I added few extra services like server management for large sites or forums and as I added more services, I was overbooked with lot more work than I can actually handle.</p>
<h2>#5 Membership Programs to Increase Income</h2>
<p>A membership program provides you with a consistent monthly income. It helps you make more money each month. If you have a product where you are charging your client a one-time fee, you can look about expanding your product to add some membership type program where you can make lot more monthly consistently over the period of time.</p>
<p>Apart from advertising, what other income streams you use on your sites? Share your income streams in comments below.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/best-affiliate-programs-with-recurring-income.html' rel='bookmark' title='20 Best Affiliate Programs With Recurring Income'>20 Best Affiliate Programs With Recurring Income</a></li>
<li><a href='http://imtips.co/clickbank-multiple-sales-page.html' rel='bookmark' title='Clickbank Multiple Sales Page'>Clickbank Multiple Sales Page</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/multiple-income-streams.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Track Social Media Traffic in Google Analytics</title>
		<link>http://imtips.co/track-social-media-traffic-google-analytics.html</link>
		<comments>http://imtips.co/track-social-media-traffic-google-analytics.html#comments</comments>
		<pubDate>Thu, 25 Aug 2011 08:31:52 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=4758</guid>
		<description><![CDATA[Google Analytics don't have tracking for Social Media traffic as default option but with custom segments you can track social media traffic in Google Analytics.]]></description>
			<content:encoded><![CDATA[<p></p><p>Search Engine Optimization is no longer just confined to</p>
<ul>
<li>Create unique content</li>
<li>Get bunch of backlinks</li>
</ul>
<p>Definitely the above things needs to be done but then you have to add one more factor of Social Media to your SEO efforts these days and so tracking your social media efforts is very important.</p>
<p>The most used statistics tool by webmasters is definitely Google Analytics but in Google Analytics you don&#8217;t have the Social Media Tracking added as default option and understandably so but using the advance segments you can track all your social media traffic in Google Analytics very easily.</p>
<h2>Create Social Media as Custom Segment in Google Analytics</h2>
<p>Under Advance Segments Create a <em>New Custom Segment</em>. Advance Segments Link can be found just under the navigation menu.</p>
<p><img class="aligncenter size-full wp-image-4763" title="adv-seg-new" src="http://cdn.imtips.in/wp-content/uploads/2011/08/adv-seg-new.png" alt="adv seg new How to Track Social Media Traffic in Google Analytics" width="448" height="387" /></p>
<p>Add an OR condition for each social media site as source of traffic.</p>
<p><img class="aligncenter size-full wp-image-4764" title="sm-source" src="http://cdn.imtips.in/wp-content/uploads/2011/08/sm-source.png" alt="sm source How to Track Social Media Traffic in Google Analytics" width="600" height="500" /></p>
<p>Give a name to the segment and save it. Once saved you can compare your custom segments you just created with the default segments provided by Google Analytics.</p>
<p><img class="aligncenter size-full wp-image-4776" title="compare" src="http://cdn.imtips.in/wp-content/uploads/2011/08/compare.png" alt="compare How to Track Social Media Traffic in Google Analytics" width="497" height="316" /></p>
<p>And track vital statistics for your social media campaigns.</p>
<p><img class="aligncenter size-full wp-image-4765" title="some-stats" src="http://cdn.imtips.in/wp-content/uploads/2011/08/some-stats.png" alt="some stats How to Track Social Media Traffic in Google Analytics" width="329" height="362" /></p>
<p><em>Update: In old Google Analytics interface you will find the Advance Segment Option is in the left panel. Rest is pretty much same as new interface.</em></p>
<p><img class="aligncenter size-full wp-image-4766" title="adv-seg" src="http://cdn.imtips.in/wp-content/uploads/2011/08/adv-seg.png" alt="adv seg How to Track Social Media Traffic in Google Analytics" width="270" height="362" /></p>
<p>What are the other ways to track social media traffic? Share in comments below</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/what-is-actually-social-media-marketing.html' rel='bookmark' title='What is actually Social Media Marketing?'>What is actually Social Media Marketing?</a></li>
<li><a href='http://imtips.co/track-aweber-google-analytics.html' rel='bookmark' title='How to Track AWeber Conversions with Google Analytics'>How to Track AWeber Conversions with Google Analytics</a></li>
<li><a href='http://imtips.co/email-marketing-vs-social-media-marketing.html' rel='bookmark' title='Email Marketing Vs Social Media Marketing'>Email Marketing Vs Social Media Marketing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/track-social-media-traffic-google-analytics.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Why Google +1 Will Fail in Google SERPs</title>
		<link>http://imtips.co/why-google-plusone-fail.html</link>
		<comments>http://imtips.co/why-google-plusone-fail.html#comments</comments>
		<pubDate>Sun, 05 Jun 2011 06:26:46 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Plusone]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=4281</guid>
		<description><![CDATA[As Google's +1 Button gathers more data it will appear in Google SERP's but according to me it will fail when implemented in SERP's for multiple reasons.]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-4290" title="+1 Icon" src="http://cdn.imtips.in/wp-content/uploads/2011/06/icon1.png" alt="icon1 Why Google +1 Will Fail in Google SERPs" width="64" height="54" />As Google&#8217;s <a href="http://www.google.com/webmasters/+1/button/" target="_blank">+1 Button</a> gathers more data it will become part of Google search results algorithm but according to me Google +1 will fail drastically when implemented in search algorithm for multiple reasons.</p>
<h2>1. +1 requires Google profile</h2>
<p>Making a Google Profile a requirement for +1 buttons is a move on Google’s part to match Facebook’s user profiles. The aim of Google is to have more Google profiles which mean Google has more personal and demographic information about user than it has currently. The motivation for Google is obvious. It needs more user personal data to show more and more related ads to you.</p>
<h2>2. +1 May be for SEO Spammers</h2>
<p>Google Panda update took a big toll on search engine spammers but with +1 Google will open doors once again for spammer. Google +1 is clearly showing signal that it can give you search ranking benefits where as with Facebook like button, user only recommends the content to their friends. The more motivated user of +1 would be a person intensely interested in search engine ranking.</p>
<h2>3. +1 in Google SERP&#8217;s May be useless</h2>
<p>I am not sure if I could ever judge from Google Results (Read Google search result excerpt) the quality of a site or content. If a user doesn’t know the quality of a page before a visit, how can they honestly click on +1 for it? In short, Google needs other ways to gather data before they can show recommendation and so they need to convince webmaster&#8217;s to have the +1 button installed on their site.</p>
<h2>4. Google needs Friend Information</h2>
<p>Google is focusing more on getting user profiles but for +1 to work on search results page they also need to find people I know i.e. my friends. If I click on +1 it does not make sense to have the same recommendation shown to me again because I anyway know it is good but it makes lot more sense if my friends see my +1. How will Google gather information about people I know can be tricky and I hope it&#8217;s not using the GMail&#8217;s address book?</p>
<p>What Google +1 means to you? Share your views in comments below.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/bug-on-google-custom-search-results-page.html' rel='bookmark' title='Found a Bug on Google Custom Search Results Page'>Found a Bug on Google Custom Search Results Page</a></li>
<li><a href='http://imtips.co/google-and-amazon-partner-up-make-money-with-amazon-from-blogger-blogs.html' rel='bookmark' title='Google And Amazon Partner Up : Make Money With Amazon from Blogger Blogs'>Google And Amazon Partner Up : Make Money With Amazon from Blogger Blogs</a></li>
<li><a href='http://imtips.co/bing-copies-google.html' rel='bookmark' title='Google Say &#8211; Bing Copies Me. Do You Agree?'>Google Say &#8211; Bing Copies Me. Do You Agree?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/why-google-plusone-fail.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Transfer Domain out of GoDaddy</title>
		<link>http://imtips.co/transfer-domain-out-godaddy.html</link>
		<comments>http://imtips.co/transfer-domain-out-godaddy.html#comments</comments>
		<pubDate>Wed, 27 Apr 2011 11:12:16 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Domain Name]]></category>
		<category><![CDATA[Godaddy]]></category>
		<category><![CDATA[Namecheap]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=4103</guid>
		<description><![CDATA[3 simple steps to get your domain out of GoDaddy. Unlock domain and Get Transfer Authorization code in GoDaddy, Initiate the transfer and Accept the transfer.]]></description>
			<content:encoded><![CDATA[<p></p><p>I am moving my domains out of <a href="http://imtips.co/go/godaddy" target="_blank">GoDaddy</a> into <a href="http://imtips.co/go/namecheap" target="_blank">Namecheap</a> and I did not found a clear article with clear instructions to transfer a domain out of GoDaddy and so I am trying to give you 3 simple steps to get your domain out of GoDaddy.</p>
<h2>1. Unlock Domain and Get Transfer Authorization code</h2>
<p>Login to your GoDaddy Account and visit the Domain control. Visit the domain you want to transfer out of GoDaddy.</p>
<p><img class="aligncenter size-full wp-image-4104" title="GoDaddy-Step1" src="http://cdn.imtips.in/wp-content/uploads/2011/04/GoDaddy-Step1.gif" alt="GoDaddy Step1 How to Transfer Domain out of GoDaddy" width="385" height="266" /></p>
<p>Unlock the domain if you see it as Locked. See 1 in screenshot above.</p>
<p>Once the domain is unlocked, click on the Send by Email link to get authorization code for your domain. You will get the following email from GoDaddy with your transfer authorization code.</p>
<p><img class="aligncenter size-full wp-image-4106" title="GoDaddy-AuthCode" src="http://cdn.imtips.in/wp-content/uploads/2011/04/GoDaddy-AuthCode.gif" alt="GoDaddy AuthCode How to Transfer Domain out of GoDaddy" width="389" height="175" /></p>
<h2>2. Initiate the Transfer from other Registrar</h2>
<p>Now you can transfer the domain to any other registrar of your choice. All you have to be doing is initiate the transfer process and add the domain authorization code you have from step 1. In Namecheap you can do that at the time of initiating the transfer and they term it as EPP code.</p>
<p><img class="aligncenter size-full wp-image-4107" title="namecheap-transfer" src="http://cdn.imtips.in/wp-content/uploads/2011/04/namecheap-transfer.gif" alt="namecheap transfer How to Transfer Domain out of GoDaddy" width="414" height="221" /></p>
<p>Once you have made the purchase expect a series of emails from both the domain registrar.</p>
<h2>3. Accept Domain Transfer Request</h2>
<p>You should see the following looking email. Approve the transfer.</p>
<p><img class="aligncenter size-full wp-image-4108" title="namecheap-transfer-accept" src="http://cdn.imtips.in/wp-content/uploads/2011/04/namecheap-transfer-accept.gif" alt="namecheap transfer accept How to Transfer Domain out of GoDaddy" width="600" height="538" />Once the transfer is initiated expect the following email from GoDaddy.</p>
<p><img class="aligncenter size-full wp-image-4109" title="GoDaddy-Step2" src="http://cdn.imtips.in/wp-content/uploads/2011/04/GoDaddy-Step2.gif" alt="GoDaddy Step2 How to Transfer Domain out of GoDaddy" width="600" height="245" /></p>
<p>See the text I have underlined in Green. Ideally you can do nothing and transfer will complete in 5 days but you can visit your GoDaddy Domain control panel and accept the pending transfers to transfer your domain immediately to the new registrar.</p>
<p><img class="aligncenter size-full wp-image-4110" title="accept-domain" src="http://cdn.imtips.in/wp-content/uploads/2011/04/accept-domain.gif" alt="accept domain How to Transfer Domain out of GoDaddy" width="377" height="148" /></p>
<p>After you accept the transfer you will get a final confirmation email from GoDaddy.</p>
<p><img class="aligncenter size-full wp-image-4113" title="godaddy-final-email" src="http://cdn.imtips.in/wp-content/uploads/2011/04/godaddy-final-email.gif" alt="godaddy final email How to Transfer Domain out of GoDaddy" width="575" height="254" /></p>
<p>All done from your end but at times it may take some time for the domain to show up in the list of domains in the new registrar list.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/domain-cloaking-clickbank.html' rel='bookmark' title='Domain Cloaking To Clickbank Products'>Domain Cloaking To Clickbank Products</a></li>
<li><a href='http://imtips.co/why-co-domain.html' rel='bookmark' title='Why .co Domain'>Why .co Domain</a></li>
<li><a href='http://imtips.co/memorable-domain-name.html' rel='bookmark' title='Memorable Domain Name'>Memorable Domain Name</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/transfer-domain-out-godaddy.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Integrate MAXCDN With vBulletin 3.8</title>
		<link>http://imtips.co/integrate-maxcdn-vbulletin.html</link>
		<comments>http://imtips.co/integrate-maxcdn-vbulletin.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 04:02:17 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[MaxCDN]]></category>
		<category><![CDATA[Page Speed]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=3999</guid>
		<description><![CDATA[MaxCDN plugin for vBulletin is for vBulletin 4+. If you are using vBulletin 3.8 or lesser and have no plans to move to vBulletin 4, you can still use MaxCDN.]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://imtips.co/go/maxcdn" target="_blank"><img class="size-full wp-image-4020 alignright" title="maxcdn125" src="http://cdn.imtips.in/wp-content/uploads/2011/04/maxcdn1251.jpg" alt="maxcdn1251 How to Integrate MAXCDN With vBulletin 3.8" width="125" height="125" /></a>If you are trying to <a href="http://imtips.co/optimize-vbulletin.html" target="_blank">optimize vBulletin</a> for better user experience, content delivery network can definitely help especially <a href="http://imtips.co/go/maxcdn" target="_blank">MaxCDN</a> which can help make your site load faster and boost your SEO effort.</p>
<p><a href="http://wiki.netdna.com/Implementation/vBulletin" target="_blank">MaxCDN plugin</a> for vBulletin is for vBulletin 4+. If you are using vBulletin 3.8 or lesser and have no plans to move to vBulletin 4, you can still use MaxCDN.</p>
<p class="hireme">If you have any issues you can always post in comments and I will be more than happy to help or else you can even <a href="http://imtips.co/go/elance-profile" target="_blank">hire me</a> at Elance to get it done for you.</p>
<h2>1. Creating Pull Zone in MaxCDN</h2>
<p>We will create two pull zones in MaxCDN &#8211; One for images and the second for clientscripts.</p>
<p><img class="aligncenter size-full wp-image-4004" title="imgaes-pull-zone" src="http://cdn.imtips.in/wp-content/uploads/2011/04/imgaes-pull-zone.gif" alt="imgaes pull zone How to Integrate MAXCDN With vBulletin 3.8" width="501" height="267" /></p>
<p>Images will be pulled from your forumroot/images folder and clienscripts will be pulled from forumroot/clienscripts. Once you have created both the pull zone verify that you are able to browse through the images as well as the CSS files</p>
<p>As an example:</p>
<div class="wp-caption alignnone" style="width: 282px">
	<img title="MBAGuys Logo" src="http://www.mbaguys.net/images/misc/mbaguyslogo.gif" alt="mbaguyslogo How to Integrate MAXCDN With vBulletin 3.8" width="282" height="72" />
	<p class="wp-caption-text">www.mbaguys.net/images/misc/mbaguyslogo.gif</p>
</div>
<p>Becomes</p>
<div class="wp-caption alignnone" style="width: 282px">
	<img title="MBAGuys Logo" src="http://mbaguys1.g4estatic.com/misc/mbaguyslogo.gif" alt="mbaguyslogo How to Integrate MAXCDN With vBulletin 3.8" width="282" height="72" />
	<p class="wp-caption-text">mbaguys1.g4estatic.com/misc/mbaguyslogo.gif</p>
</div>
<p>Make sure both the URLs are working.</p>
<p><strong><em>Remember you need to create the CName record for your domain.</em></strong></p>
<p>Once you have the images being pulled into MaxCDN create the second pull zone for the Clienscripts folder. Nomenclature I follow is &lt;SomeName&gt;1 for Images and &lt;SomeName&gt;2 for clientscripts i.e. mbaguys1.g4estatic.com for Images and mbaguys2.g4estatic.com</p>
<p>Once you have the pull zone part done, we will make changes in vBulletin to use the new image and CSS paths.</p>
<h2>2. vBulletin Image Paths</h2>
<p>Admin CP &gt; Styles &amp; Templates &gt; Style Manager &gt; and select StyleVars from combobox. Edit the Image Paths to the new URLs</p>
<ul>
<li>images/buttons becomes http://mbaguys1.g4estatic.com/buttons</li>
<li>images/misc becomes http://mbaguys1.g4estatic.com/misc</li>
</ul>
<p>And so on for all the image paths.</p>
<h2>3. vBulletin Replacement Variable</h2>
<p>We will need few replacement variables to be configured to change the other Image paths like Post Icons. Visit Admin CP &gt; Styles &amp; Templates &gt; Replacement Variable Manager and create the following Replacement Variables.</p>
<p>Search for Text : <code>src="images/</code><br />
Replace with Text : <code>src="http://New_Images_CName_Path/</code></p>
<p>For me it becomes</p>
<p><code>src="images/</code> to <code>src="http://mbaguys1.g4estatic.com/</code></p>
<p>Similarly for Clienscripts Create 3 more replacement variables.</p>
<ol>
<li><code>href="clientscript</code> to <code>href="http://New_Clientscript_CName_Path</code></li>
<li><code>src="clientscript</code> to <code>src="http://New_Clientscript_CName_Path</code></li>
<li><code>url("clientscript</code> to <code>url("http://New_Clientscript_CName_Path</code></li>
</ol>
<p>Once you have the above replacement variables in place browse through your forum to see everything is working fine. You can check the source of you HTML webpage to see all the images and clientscripts are being fetched from the new URLs or can wait for few seconds to see the hit reports in MaxCDN as well.</p>
<p>If everything is working fine we will move to custom avatars and other images which needs to be moved to the images folder for it to be using MaxCDN.</p>
<h2>4. Custom Avatars and Images</h2>
<p>To Move the custom avatars and other user images to be served from CDN all you have to do is move them under the images folder and everything will be taken care of automatically by the replacement variable. Make sure you have the URLs Relative to your forum home.</p>
<p>Visit Admin CP &gt; Avatars &gt; User Picture Storage Type and change the</p>
<ol>
<li>Avatars to be served from the filesystem at ./images/customavatars and URL is images/customavatars relative to forumhome</li>
<li>Profile pictures to be served from the filesystem at ./images/customprofilepics and URL is images/customprofilepics relative to forumhome</li>
<li>Signature pictures to be served from the filesystem at ./images/signaturepics and URL is images/signaturepics relative to forumhome</li>
</ol>
<p>Similarly change the Social Groups &gt; Social Group Icon Storage Type and User Albums &gt; Album Picture Storage Type under the forumroot/images folder</p>
<p>Hope this helps fellow forum admin&#8217;s. Share your views and feedback in comments below.</p>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/integrate-aweber-with-vbulletin.html' rel='bookmark' title='Integrate AWeber with vBulletin'>Integrate AWeber with vBulletin</a></li>
<li><a href='http://imtips.co/integrate-aweber-with-vbulletin-registration.html' rel='bookmark' title='Integrate AWeber with vBulletin Registration'>Integrate AWeber with vBulletin Registration</a></li>
<li><a href='http://imtips.co/customizing-amazon-s3-urls-with-cname.html' rel='bookmark' title='Customizing Amazon S3 URLs With CNAME'>Customizing Amazon S3 URLs With CNAME</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/integrate-maxcdn-vbulletin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clickbank Multiple Sales Page</title>
		<link>http://imtips.co/clickbank-multiple-sales-page.html</link>
		<comments>http://imtips.co/clickbank-multiple-sales-page.html#comments</comments>
		<pubDate>Tue, 05 Apr 2011 05:52:21 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Clickbank]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=3954</guid>
		<description><![CDATA[Clickbank Multiple Sales Page Wordpress plugin allows vendors to have multiple sales page based on affiliate referrer.]]></description>
			<content:encoded><![CDATA[<p></p><p>Clickbank does not allow you to have different sales page for your affiliates especially the super affiliates. I wanted to have a different sales page for some of my super affiliates and so created this plugin. I have gone through the Clickbank terms and condition where I did not found anything that is against this plugin provided you redirect users to new sales page which follows Clickbank&#8217;s <a href="http://www.clickbank.com/help/vendor-help/vendor-basics/get-started-as-a-vendor/#2">sales page guidelines</a>.</p>
<p><em>If you would like to get started with Clickbank check out <a href="http://imtips.co/start-selling-with-clickbank.html">Step By Step Guide to Start Selling With Clickbank</a></em></p>
<h2>Installation</h2>
<ol>
<li>Download the <a href="http://cdn.imtips.in/wp-content/uploads/2011/04/cbmsp.zip">Zip file</a>. Extract the php file inside it and Upload the file at wp-content/plugins.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>Open the plugin configuration page, which is located under Settings -&gt; Clickbank Multi Sales page and enter the Redirection URLs one affiliate per line in the form of affiliateid|URL.</li>
</ol>
<h2>Frequently Asked Questions</h2>
<p><strong>How do I get the affiliate id of my affiliates?</strong></p>
<p>There are multiple ways to get the affiliate id of your affiliates.</p>
<ol>
<li>Ask them. You can ask your super affiliates what is their Clickbank id so you can customize sales page for them.</li>
<li>Use your clickbank reports to know who your super affiliates are? Offer them a custom sales page.</li>
</ol>
<div id="_mcePaste"><strong>More queries, Can you help?</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">Yes I will be actively helping on any issue you have with this plugin so just post your questions, feedback or anything else you want to share in comments below.</div>
<br /><p>More Related Posts:<ol>
<li><a href='http://imtips.co/tracking-clickbank-sales-google-analytics-e-commerce.html' rel='bookmark' title='Tracking Clickbank Sales into Google Analytics E-Commerce'>Tracking Clickbank Sales into Google Analytics E-Commerce</a></li>
<li><a href='http://imtips.co/start-selling-with-clickbank.html' rel='bookmark' title='Step By Step Guide to Start Selling With Clickbank'>Step By Step Guide to Start Selling With Clickbank</a></li>
<li><a href='http://imtips.co/domain-cloaking-clickbank.html' rel='bookmark' title='Domain Cloaking To Clickbank Products'>Domain Cloaking To Clickbank Products</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/clickbank-multiple-sales-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracking Clickbank Sales into Google Analytics E-Commerce</title>
		<link>http://imtips.co/tracking-clickbank-sales-google-analytics-e-commerce.html</link>
		<comments>http://imtips.co/tracking-clickbank-sales-google-analytics-e-commerce.html#comments</comments>
		<pubDate>Tue, 15 Mar 2011 09:08:20 +0000</pubDate>
		<dc:creator>Shabbir</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Clickbank]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://imtips.co/?p=3888</guid>
		<description><![CDATA[Let us track Clickbank Sales into Google Analytics e-commerce tracking platform without using Goals. Make sure you have selected e-Commerce profile as Yes in your Google Analytics Website profile. If you have not opted for an e-Commerce site profile edit profile and select e-Commerce. Once you are done with the settings, grab your Analytics code [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Let us track Clickbank Sales into Google Analytics e-commerce tracking platform without using Goals. Make sure you have selected e-Commerce profile as Yes in your Google Analytics Website profile. If you have not opted for an e-Commerce site profile edit profile and select e-Commerce.</p>
<p><img class="aligncenter size-full wp-image-3889" title="google-analytics-ecom" src="http://cdn.imtips.in/wp-content/uploads/2011/03/google-analytics-ecom.gif" alt="google analytics ecom Tracking Clickbank Sales into Google Analytics E Commerce" width="367" height="79" /></p>
<p>Once you are done with the settings, grab your Analytics code for the site. The sample code looks like</p>
<pre>&lt;script type="text/javascript"&gt;

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXXXX-XX']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

&lt;/script&gt;</pre>
<p>Now let us follow <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingEcommerce.html">Google Analytic&#8217;s e-commerce guidelines</a> to add Clickbank transactions into Google Analytics. Let me quote the basic process from the link.</p>
<blockquote>
<ol>
<li><strong>Create a transaction object</strong> &#8211; Use the _addTrans() method to intialize a transaction object. The transaction object stores all the related information about a single transaction, such as the order ID, shipping charges, and billing address. The information in the transaction object is associated with its items by means of the order IDs for the transaction and all items, which should be the same ID.</li>
<li><strong>Add items to the transaction</strong> &#8211; The _addItem() method tracks information about each individual item in the user&#8217;s shopping cart and associates the item with each transaction via the orderId field. This method tracks the details about a particular item, such as SKU, price, category, and quantity.</li>
<li><strong>Submit the transaction to the Analytics servers</strong> - The _trackTrans() method confirms that a purchase has occurred, and all data that has been built up in the transaction object is finalized as a transaction.</li>
</ol>
</blockquote>
<p>First we will need to grab the transaction details that Clickbank passes to our thanks page. I will use PHP as sample but this can be extended to other web languages very easily.</p>
<pre>&lt;?php 

$cb_item=$_REQUEST['item'];
$cb_affiliate=$_REQUEST['cbaffi'];
$cb_receipt=$_REQUEST['cbreceipt'];
$cb_cname=$_REQUEST['cname'];
$cb_cemail=$_REQUEST['cemail'];
$cb_ccountry=$_REQUEST['ccountry'];

$net_amount = 19.97;
if($cb_affiliate!='0') $net_amount = 0.3*$net_amount;
?&gt;</pre>
<p><em>Note that you need to change the $net_amount to your product price in Clickbank. </em></p>
<p>If a sale is done through an affiliate you can adjust the amount as well. I give my affiliates 70% commission and so for an affiliate sale I reduce my net amount accordingly.</p>
<pre>if($cb_affiliate!='0') $net_amount = 0.3*$net_amount;</pre>
<p>Once you have the needed variables in your code you need to prepare the transaction as per Google&#8217;s guidelines.</p>
<pre>_gaq.push(['_addTrans',
    '&lt;?php echo $cb_receipt; ?&gt;', // order ID - required
    'XXXXXXXX',                   // affiliation or store name
    '&lt;?php echo $net_amount; ?&gt;', // total - required
    '0',                          // tax
    '0',                          // shipping
    'Any',                        // city
    'Any',                        // state or province
    '&lt;?php echo $cb_ccountry; ?&gt;' // country
  ]);

  _gaq.push(['_addItem',
    '&lt;?php echo $cb_receipt; ?&gt;', // order ID - required
    '999',                        // SKU/code - required.
    'XXXXXXXXXXX',                // product name
    'ebook',                      // category or variation
    '&lt;?php echo $net_amount; ?&gt;', // unit price - required
    '1'                           // quantity - required
  ]);
  _gaq.push(['_trackTrans']); //submits transaction to the Analytics servers</pre>
<p>Once we have the code for the transaction we will insert this Code into the Google Analytics code we generated before. So final code becomes -</p>
<pre>&lt;script type="text/javascript"&gt;

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXXXX-XX']);
  _gaq.push(['_trackPageview']);

  _gaq.push(['_addTrans',
    '&lt;?php echo $cb_receipt; ?&gt;', // order ID - required
    'XXXXXXXX',                   // affiliation or store name
    '&lt;?php echo $net_amount; ?&gt;', // total - required
    '0',                          // tax
    '0',                          // shipping
    'Any',                        // city
    'Any',                        // state or province
    '&lt;?php echo $cb_ccountry; ?&gt;' // country
  ]);

  _gaq.push(['_addItem',
    '&lt;?php echo $cb_receipt; ?&gt;', // order ID - required
    '999',                        // SKU/code - required.
    'XXXXXXXXXXX',                // product name
    'ebook',                      // category or variation
    '&lt;?php echo $net_amount; ?&gt;', // unit price - required
    '1'                           // quantity - required
  ]);
  _gaq.push(['_trackTrans']); //submits transaction to the Analytics servers

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

&lt;/script&gt;</pre>
<p>If you are copying the above code make sure to replace XXXX string with appropriate details.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://imtips.co/tracking-clickbank-sales-google-analytics-e-commerce.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: imtips.co @ 2012-05-18 10:10:02 by W3 Total Cache -->
