EzSEO Newsletter # 247

Print This Post Print This Post

July 3, 2009 by Andy 






In this issue:

1. Tutorial: Amazon Datafeeds

2. Top Linking Secrets Review

Hi Again

As promised mid-week, I’ve got a great tutorial for you, plus news (and a coupon) of Neil Shearing’s new product on link building.  If you have ever wanted to add Amazon product datafeeds to your site, you’ll love the tutorial in the first section.  I’ll show you how (and there is even a video with the complete process).

Let’s get started..

– — – — – — – — – — – — – — – — –
1. Tutorial: Amazon Datafeeds
– — – — – — – — – — – — – — – — –

Adsense has a couple of benefits which make it the monetization choice of the masses:

1. People don’t need to buy anything for you to make a commission.

2. You can set it up and forget about it.

Now I have never been a big fan of Adsense.  Yes it is easy to setup, and you can make commissions when someone clicks an advert, but quite often the amount you make is hardly worth the effort.

One great alternative to Adsense is Amazon.  Amazon even include a bunch of tools to help you add products to your site.

One of the big benefits of promoting Amazon is their brand name – everyone trusts them because nearly everyone has bought from them in the past.  An additional bonus is that once you get someone to Amazon, they could buy just about anything, and several different items – all working towards increasing our commission (e.g. I sold 4 products from my test site at Amazon.com yesterday and not one of them was a product I am promoting on my site).

While Amazon has a great set of tools to help you get products on your site, I prefer to tap into the Amazon datafeed, and this is something you can do as well.

Have a look at my diabetes site:

Blood Sugar Diabetic

Do you see the Amazon Best Sellers in the right hand column? 

Those products are drawn from Amazon’s datafeed from the books category, using a search term I have specified when I set it up.

Amazon will return the required number of products to my page and I can be sure that prices are always up to date, as well as the products changing over time. 

I have this setup to cache the Amazon results for faster loading of my pages.  The cache is recreated every 12 hours, so in theory, the products on those pages can change every 12 hours.

If this is something you would like to experiment with, I have created a tutorial showing you exactly what you need to do.  There are three basic steps:

1. Create an Amazon Web Services account.
2. Download and install Carp:

Download Carp Evolution

There is a fr.ee version of Carp that you can use, though I think the amazon images are not displayed in the free version.

3. Setup the feed on your site.

Let’s go through these points.

To join Amazon Web Services, head on over to:

Amazon Web Services

Top right is a link to create an account.

Once you have joined, login and click on the link to "Account Identifiers".  You should see your Access Key on that page.  Copy it somewhere safe (I recommend copying and pasting to a text file rather than writing it down so you don’t make any mistakes).

Now you need to download and install Carp.  I wrote a tutorial on adding rss feeds to your site using Carp a while ago, so if you need help with the downloading and installing, please read this tutorial and then come back here:

Adding RSS Feeds to your web site

You don’t need to worry about the displaying feeds part of that tutorial, just the installation.  However, do make a note of the code that Carp gives you to display feeds on your site, as you will need the path for loading carp later in this tutorial.

OK, now the trickier part. You need three files.  You can get these files from the Carp website, but to make things easier, I have created a download with all three files here. 

Carp Amazon Integration Files

The three files inside the zip dowload are:

Amazon2RSS-2.0.xsl
Amazon2RSS-2.0.php
Amazontemplate.txt

STEP 1: Uploading Amazon2RSS-2.0.xsl

OK, on your server, create a folder in your webspace called xsl, and upload the Amazon2RSS-2.0.xsl file there so that the URL of that file will then be something like:

http://mydomain.com/xsl/Amazon2RSS-2.0.xsl

STEP 2: Editing the Amazon2RSS-2.0.php

Open Amazon2RSS-2.0.php in a text editor (I recommend Notepad++ as one of the best available, and its fr.ee).

Edit the second line:

$xslt=’http://www.yourdomain.com/xsl/Amazon2RSS-2.0.xsl’;

Change the www.yourdomain.com to reflect your actual domain (and location of the xsl file).

On the next two lines:

$AccessKeyId=’put_your_access_key_id_here’;
$AssociateTag=’put_your_associates_id_here’;

Replace the put_your_access_key_id_here with your Amazon Web Services Access code you copied earlier.

Replace the put_your_associates_id_here with your Amazon affiliate ID (you need to be an affiliate of Amazon to have this, so sign up if you haven’t already).

Finally in Step 2, change the country code if you want to promote a non-US Amazon (note: Make sure you are an affiliate with the country you choose).

e.g. Instead of

$country=’US’;

You could choose:

$country=’UK’;

Other options are: ‘CA’,'DE’, ‘FR’ & ‘JP’

Save the Amazon2RSS-2.0.php file and upload it to your server in the same folder as carp.php.

STEP 3: Preparing the template code

Open the Amazontemplate.txt file.  This file is a slightly modified version to the one on the Carp Web Site. 

The only line you need to edit is the one that has the path to the Amazon2RSS-2.0.php file:

include ‘/path/to/Amazon2RSS-2.0.php’;

This "/path/to" is the server path to the file.  NOTE: This is not the same as the URL to the file.

Remember earlier I told you to save the code Carp gave you at installation because you would need the path to carp on your system?  Well now is the time to dig that code up and have a look.

Since Amazon2RSS-2.0.php is in the same folder as carp, the path will be the same.  You’ll find it on the second line of the code after the require once bit.

There are a couple of other options to set in your template.

After the $q= bit, enter a word or phrase inside the quotes that will be the seed word for your Amazon search.

MaxItems is the maximum number of items to display.
MaxReviewLength is the number of characters to display in the reviews.
SearchIndex is the searchable index at Amazon to pull results from.  You cannot just type in any category or sub-category here, you need to use one that Amazon recognises. 

These are the valid Amazon Search Indices you can currently use (though do check Amazon documentation to see if these have changed):

Apparel, Baby, Beauty, Blended, Books, Classical, DigitalMusic, DVD, Electronics, ForeignBooks, GourmetFood, HealthPersonalCare, HomeGarden, Jewelry, Kitchen, Magazines, Merchants, Miscellaneous, Music, MusicalInstruments, MusicTracks, OfficeProducts, OutdoorLiving, PCHardware, PetSupplies, Photo, Restaurants, Software, SoftwareVideoGames, SportingGoods, Tools, Toys, VHS, Video, VideoGames, Wireless, WirelessAccessories

With the template finished, save it.  This code is going to be included in your website page.

If you want to add the feed to a standard html site, follow the instructions on the Adding RSS feeds tutorial:

Adding RSS Feeds to your web site

Instead of using the carp feed integration code, just use the template you have created.

If you want to include the feed on a Wordpress site, you need to be aware that PHP code won’t work if you paste it into a blog post.  You can use the Carp Wordpress plugin if you want:

Carp Wordpress Plugin

Alternatively, what I did on my test site was to edit the sidebar templates, adding the template code at the point I wanted the feed to appear.

I have made one other change in the dispaly of my feed – using the more link to open up the user comments if the visitor wants to see more of the comment.  If you want to do that, check out the Carp Expander plugin.

I am sure this tutorial has thrown open a lot of questions, and many who try to integrate Amazon feeds in this way will have problems.  If you have any questions, problems or ideas, please post a comment at the end of this blog post (do not email me).

As a bit of extra help, I have created a video showing the entire process:

– — – — – — – — – — – — – — – — –
2. Top Linking Secrets Review
– — – — – — – — – — – — – — – — –

We all hate having to go out and get links into the pages of our sites, but know that it is an essential part of building a quality, long-term business online.  I was therefore happy to see that Internet Marketing veteran Neil (and his wife Linda) are coming out with a new guide to link building.  It will be released on July 7th.

Neil was kind enough to let me see their latest draft word document, so be aware that what I discuss below is based on an unfinished draft, not the final PDF.

The course is split into three sections and I’ll go into more detail on each of the sections in a moment, but let me give you an overview. 

The first section discusses some of the background information you need to know before embarking on any kind of link building exercise. 

The second section concentrates on link sources – that is, the types of resources avaiable for acquiring links.

The thirds section of the course is Neil & Linda’s Step by Step Link Building plan of action.

Let’s look at the course in a little more detail.

The first section is really important as Neil describes links in terms of why they are so important to your search engine rankings. 

This section starts with a history lesson and covers the basics, but even veterans in Internet Marketing should read these first few chapters as they cover important up to date stuff like the nofollow tag changes as well as a novel idea about how links can save your content from thieves ;O)

Neil discusses important issues like natural and artificial linkage, and why this is important to you as you go about your link acquisition.  There are a number of variables at work here and many of these are discussed to show you how these will help or hinder your own rankings.  The bottom line here is that link building needs to be done properly, or it wont be effective – Neil shows you how.

The first section is an excellent introduction to links, how they work and why they sometimes work against you.

In Section 2 of the book Neil and Linda show you the "categories" of places you can go to get links e.g Link Directories, Press Releases, article submission  plus many more (including one sneaky method Neil used to get a link back to his blog from me!!), with vital information on all of these link sources.  This section is the most comprehensive coverage I have seen on link sources, and will be something I refer back to regularly for my own sites.

I know from experience that many people want to be shown exactly what to do, and when to do it.  Well, section three of this book is for you.  Neil & Linda have included a step-by-step action plan, showing you THEIR recommended way to start building links to a new site.

I highly recommend this book to anyone who struggles with link building.  By the end of the course, you will know more than most webmasters, and have the knowledge to go out and build links with confidence, while not getting into hot water with Google.

While this product is not available for a few more days, you can go and download Neil’s excellent PDF on Linking Myths from:

Link Building Secrets

The product itself will be available on Tuesday 7th July. 

When it is available, you can use the following coupon to get a massive discount:

save30

This coupon will only work for 72 hours after launch.  As soon as I hear from Neil that it is live, I will send you a reminder.

Well, that’s it for this issue.  If you want to read the recent issues of this newsletter, you can read them online at my
blog:

http://ezseonews.com/

For older newsletters, you will need to visit the old archives at:

http://ezseonews.com/archives

Have a great week!

#######################################################
Visit the subscriber Bonus page for fr.ee reports and other subscriber-only:

Subscribers Only

If you enjoyed this newsletter, please recommend it to your friends. Also if you have any tips of your own, questions or comments, please leave a comment at the online version of this newsletter: http://ezseonews.com

Any tips or questions & answers I print in this newsletter will also be put up on the web version of the newsletter with a link to your site if you want it. That’s extra free traffic for your site as well as an incoming link to your site.

The contents of this newsletter is copyright 2009 Andrew Williams.  If you want to republish any of the articles, you must get permission from the author.

This newsletter disclaims all responsibility for the advertising copy or the product advertised. You cannot rely on the fact that the newsletter has examined the product or recommends or endorses the product, unless it clearly says that it has, when you make your decision whether or not to purchase the product or interact with the advertiser. You are advised to do your own investigation before buying. Additionally, this newsletter may accept articles that we do not write or investigate the accuracy of and for which we may receive direct or indirect benefit or compensation. We specifically disclaim any responsibility for the content of such copy.

#######################################################



Related Articles

  • EzSEO Newsletter # 246 -   In this issue: 1. How an article killed conversions 2. Wordpress Shortcodes 3. Success Story
  • ezSEO Newsletter #238 - In this issue: 1. Adrian Ling's New Script 2. Science of Getting Rich 3. What am I working on? 4. T
  • EzSEO Newsletter # 236 -   In this issue: 1. Creating Wordpress Templates in seconds 2. Moving a Wordpress Blog to the R
  • EzSEO Newsletter # 275 - In this issue: 1. Competition is not what it seems... 2. FOUR Recommended Strategies for Starting yo
  • EzSEO Newsletter # 269 - In this issue: 1. Web Content Studio Is NOT... 2. Sell ice to Eskimos - Part III 3. Annoying Wordpre
"The Money Is In The List"

AWeber proves it to thousands of businesses every day.

Learn how email marketing software
can get you more sales, too.

Comments

26 Responses to “EzSEO Newsletter # 247”
  1. Rick L. says:

    Andy:

    Are you able to create Ebay datafeeds with CaRP? It would be
    nice if you could include both in a blog for added monetization.

    Rick

  2. Troy says:

    Great newsletter this week Andy.

    I found the Amazontemplate text file had to be modified to work. The include portion had a typo and had to be changed from
    include ‘include ‘/path/to/Amazon2RSS-2.0.php’;
    to include ‘/path/to/Amazon2RSS-2.0.php’;

    How can I remove the powered by link? I tried using variations of
    CarpConf(’poweredby’,”);
    but I couldn’t figure out how to make it work in my blog.

    • Andy says:

      Sorry about the typo in the template, and thanks for mentioning it. I have uploaded a new set of file which should fix this.

      As for removing the powered by link, I am pretty sure that its:

      CarpConf(’poweredby’,”);

      I am not sure if its possible to remove the Powered by link in the free version.

  3. Carlos says:

    Hi Andy,

    It is my understanding Amazon has begun to discontinue its affiliate programs.

    It is also my understanding that the commissions on Amazon products are very low as compared by ClickBack or Commission Junction and others.

    Given this, is all this worth the effort?

    Carlos

    What am I missing here?

    • Andy says:

      Carlos
      I havent heard anything about Amazon closing its affiliate program other than North Carolina, and as far as I know, that was only going to happen if certain tax changes happened. Can you point me to any Amazon source that says it is closing its affiliate program?

      Also, regarding Amazon, it converts better than most program (with commission tiers as well for those who go for performance program), and it offers just about anything, whereas Clickbank only offers eBooks and software. Sure, CJ has a lot of merchants, but most dont convert as well as Amazon, and also Amazon has a tendency to get visitors to buy more than they went for.

      • Carlos says:

        Hi Andy,

        You are the expert I am just your humble student.

        It doesn’t appear Amazon has totally closed or will close its Associate program.

        Here are some links which indicate the Amazon associate program has or may close in the American states of North Carolina, Rhode Island, New York (Amazon is collecting taxes here while challenging it in court), Hawaii and California.

        http://www.google.com/hostednews/ap/article/ALeqM5hKdFre9oSA1YmRO8AREhPzYVwGoAD9938EOO0

        http://www.downloadsquad.com/2009/06/29/amazon-kills-rhode-island-affiliate-program/

        http://www.businessinsider.com/hawaii-finds-out-amazon-will-cut-a-state-2009-6

        http://www.business-opportunities.biz/2009/06/27/is-it-the-end-of-amazons-affiliate-program/

        http://affiliate-blogs.5staraffiliateprograms.com/3469/california-advertising-tax.html

        California ranks as the 7th to 10th largest economy in the World depending on the source and how it’s measured.

        California is now bankrupt and is issuing paper IOU’s to its vendors instead of real money.

        California has raised taxes in the midst of the worldwide recession, which will cause the state’s economy to further decline.

        I predict Amazon will discontinue its Associate program here soon.

        California usually leads the US in trends.

        More states may follow.

        However, that still leaves 45 out of 50 states as of now.

        Regardless there is Europe and the rest of the world, which may continue to benefit from the Amazon Associate program.

        Now regarding the commission from Amazon. The percentage is like 3-5%, right?

        Even if the conversion rate is higher, it doesn’t translate to more money given the low commission rate.

        One sale at 50% of $49.00 at Commission Junction is $24.50.

        One sale at 5% of $100.00 at Amazon is $5.00.

        Anyway, like I said, I am just a student here.

        I’ve bought most of your products and continue to learn loads of good stuff from you.

        I am not in your league Internet Marketing business wise.

        I just thought this was an interesting question.

        Again, if I missed it I stand corrected.

        Respectfully,

        Carlos

        • Andy says:

          What I like Amazon for is a replacement for Adsense, not a replacement for other good affiliate program.

          Amazon performance structure is 4% – 8.5% on Amazon.com.

          Yes that is well below Clickbank, but in many niches there just are not QUALITY Clickbank products available.

          Would you prefer to recommend a crappy Clickbank product and get 50% commission, or recommend a quality product and get a much lower commission? That is your choice, but I prefer to keep my customers coming back to my site and liking my recommendations.

          • Carlos says:

            Hi Andy,

            Have your tests shown that Amazon pays a total more than Adsense for an Adsense optimized page?

            I realize that payouts on Adsense declined in the last year or so.

            Internet Marketers in the above 5 American states may not have the option of choosing between ClickBank and Commission Junction or Amazon if the lawmakers there are tax passing junkies as some are.

            Again, there is the rest of the world who could benefit from Amazon Ads.

            I don’t believe the choice is between a crappy ClickBank or Commission Junction product and Amazon.

            I wouldn’t promote a crappy affiliate product because of the negative economic consequences attendant thereto.

            The choice is one of total revenue.

            Which option will make me the most money long term?

            A quality ClickBank or Commission Junction product or a low commission Amazon product?

            Now if there is no quality ClickBank or Commission Junction product in a niche, then as you wrote, Amazon may be the only option.

            Thanks for pointing that out.

            Once more, if I knew as much or more as you, then people would be writing to me.

            Since I am the one writing to you, I defer to your advice.

            Carlos

  4. Lane Lester says:

    Andy, I’m using the carp widget since I have the rest of the two sidebars set up that way. The default output looks pretty crappy, just a list of books with no white space, pictures, or anything else. I presume one of the template files can be tweaked to make the text look better, but do you think Amazon products sell without pictures?

    • Andy says:

      Do you have the paid version of Carp? I know that the free version wont show pictures. I don’t use the widget, so cannot comment on the default layout, but I agree, pictures are much better to help sell products. They help draw the eye in an otherwise sea of text.

  5. Lane Lester says:

    I should have looked at the files before I whined about the output. I just had to copy some code from carp-wp-theme.php to carp-wp-widget-theme.php to get pictures and reviews along with the titles and prices. Much better looking, anyway.

    To eliminate the carp plug at the end, you have to edit carp.php. I just moved a comment terminator to include the plug.

    • Andy says:

      For the carp plug, depends what type of a site you have it on. You could use your affiliate link in that plug :)

  6. Kaya says:

    Andy, thank you for the instructions but some how I am receiving the following error mesage

    [CaRP] XML error: not well-formed (invalid token) at line 8 – This appears to be an HTML webpage, not a feed

    Can’t figure it out.

    Thanks

    Kaya

    • Andy says:

      If you have problems with Carp, you need to contact them for support. I think they have a forum.

  7. John Cowburn says:

    Hi Andy

    Have you seen Edwin Boiten’s new app? It’s called the AffiliateBlogBuilder, it looks pretty amazing. Saw it on the Warrior forum. It looks like it covers just about everything. I have a few of Edwin’s Wordpress templates and like what he produces.

    John

    • Andy says:

      I just took a quick look. Seems like it could be very useful. One thing you need to be careful of with any auto-generator is how much unique content are you going to have on the pages? In most cases, none, so you can kiss goodbye to any rankings. Before I bought into a system like that, I would want to see proof that sites built with it could rank well for a variety of terms.

  8. Lane Lester says:

    My wanting to use the CaRP-WP plugin as a widget, instead of embedding the code as you did, led to all kinds of confusion on my part. I ended up having to actually learn what was going on (ugh!) to get it to work for me. I wrote a checklist so I could forget what I learned and still get it right in the future. I’ve edited a public version and posted it at the-web-doctor.com/Carpchecklist.pdf I may have left some stuff out, but I hope not.

  9. Mark says:

    Amazon sent me an email that said:

    We want to remind you that all calls to the Product Advertising API must be authenticated using request signatures by August 15, 2009. Please remember that calls to the Product Advertising API that are not signed will not be processed after August 15, 2009.

    But I can’t find any information on it. has anybody got a link for Amazon giving instructions what we are supposed to do with our websites?

    Or can somebody post some instructions here?

    Thanks

    Mark

    • Andy says:

      I think that this means any scripts you are using must use the request signatures. Contact author of script you are using.

  10. John T. says:

    I went through the tutorial and this is what came out at the when I pasted the url path to Amazon2RSS.php in the browser.

    RSS feed imported by CaRP
    [CaRP] Unknown document format.

    I went to the Carp website for more info and change the if(0) to if(1), all that did was displayed an url, if the affiliate id is wrong, could that cause the problem. I need help on this.

  11. John T. says:

    Now I have just the

    RSS to HTML conversion by CaRP

    I guess it is setup correctly, not pulling data.

  12. John T. says:

    Found out that the if 1 and if 0 only displays the content url. still no solution found. emailed anthony about problems i am having maybe luck there.

    btw, I type the xsl url path(updated version for amazon) and this was posted

    0 250 Amazon Search Results http://www.amazon.com/ Amazon Search Results , Amazon Price: Amazon Price: Customer Reviews: Customer Review: … » … &

    I guess it is not pulling the datafeed from Amazon, I suppose I have installed it correctly, just the info I provided the the amazon2rss.php is wrong.

    I will be working on seeing if my affiliate id is correct.

    • Andy says:

      John
      My Amazon feeds have gone down as well. Not sure if its Carp or Amazon. I’ll do some searching later.

  13. Andy says:

    Carlos
    What is an Adsense optimized page? A page that has almost no content and all visitors see is Adsense?

    I have never built those types of pages as they are not the type of pages Google ranks well, and pages built for Adsense are also against the Google TOS. I actually gave up on Adsense a few years back and concentrated on affiliate income, so I am no expert in Adsense.

    I have a lot of examples on my own sites where Amazon is the best option, but not every site nor even every page.

    The main point is to test whatever you do. Try Amazon, try Adsense (if you want to or have no other choice) and try merchants from other networks.

Trackbacks

Check out what others are saying about this post...
  1. [...] Displaying Amazon datafeeds on your site [...]



Speak Your Mind

Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!