1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Quadrupled my CTR thanks to DP members.

Discussion in 'AdSense' started by Critters, May 26, 2005.

Thread Status:
Not open for further replies.
  1. NewComputer

    NewComputer Well-Known Member

    Messages:
    2,021
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    188
    #221
    The middle ads with the three OS icons have increased moderately, but I have seen a massive jump since implementing the images above the ads. The pages that just have a border around the ads also increased quite nicely.

    All in all, I am quite happy with things. Hard to find images for say data backup... if someone want to draw some, let me know...
     
    NewComputer, Jun 10, 2005 IP
  2. anotherchancetosee

    anotherchancetosee Guest

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #222
    Thanks to everyone who recommended this technique. I've been running with my image rotation (and URL keyword targetting) code for a week now, and YES! It's working. My average CTR has TRIPLED. Very happy. :)

    For the animals that produce relevant ads, like the gorilla, rhino, manatee etc, its a particularly sweet. As long as I title my posts correctly I'm almost guranteed that I'll get a match between image and ad when a user lands on a single post page.
     
    anotherchancetosee, Jun 10, 2005 IP
  3. fcmisc

    fcmisc Active Member

    Messages:
    701
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    93
    #223
    Thanks for clarifying my confusion. What happens to people when they accidently break the TOS? I sent an email enquiry to google asking if I could put Adsense on my Poker Blog, as Poker is arguably not a form of gambling, but all their representative did was tell me that I couldn't put adsense on a blog with gambling or casino related content.
     
    fcmisc, Jun 10, 2005 IP
  4. e10

    e10 Well-Known Member

    Messages:
    2,250
    Likes Received:
    155
    Best Answers:
    0
    Trophy Points:
    185
    #224
    AmCy,
    I´ve always found the service at Google As to be exemplary. You don´t get an answer in minutes but within aboout three days you do tend to get a personal reply - IMHO and experinece.

    If the answer you got did not satisfy you, then tell them that and ask again.
     
    e10, Jun 10, 2005 IP
  5. misohoni

    misohoni Notable Member

    Messages:
    1,717
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    200
    #225
    Mate I'd love to know how you did the drawing with flash thing, I PM'd you a few days back - hope you can get back to me
     
    misohoni, Jun 13, 2005 IP
  6. Critters

    Critters Guest

    Messages:
    754
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #226
    my bad.. I did get your pm, but thought "no way i'm telling him how I made the flash drawing thing" :)

    1) spend ages making it work well
    2) would take pages to explain the flash -> asp -> db -> image processing
    3) the company i work for now own the source, so can't go giving it away

    however if you make your own, and you get stuck on something i could help you out, but im not about to go write a tutorial or post source code. sorry

    tho if you follow this thread you can up your CTR a whole bunch :)
     
    Critters, Jun 13, 2005 IP
  7. NewComputer

    NewComputer Well-Known Member

    Messages:
    2,021
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    188
    #227
    Care to post the code you are using to rotate images etc... you could also PM me. I am trying to find a good one.
     
    NewComputer, Jun 13, 2005 IP
  8. aenigma

    aenigma Peon

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #228
    I use this, I put some images into a dir and the select 4 random.
    Remember to put AT LEAST 4 images into che directory.

    In this manner I do not care of the images, when I found one that I like I put into the directory and star using it immediately.

    
    <?php
    // Prepare an array
    $adimages=array();
    // Build the path for the adsense images
    $adimages_path="adimage/";
    // Now read all images in the source dir
    if (is_dir($adimages_path)) {
    if ($dh = opendir($adimages_path)) {
    while (($file = readdir($dh)) != false) {
    if (preg_match("/[a-zA-Z0-9_-]+\.(jpg|gif)/", $file)) {
    array_push($adimages, $file);
    }
    }
    }
    }
    // Check if we have some images...
    if (count($adimages) >= 4) {
    shuffle($adimages);
    $adimage0 = $adimages_path.$adimages[0];
    $adimage1 = $adimages_path.$adimages[1];
    $adimage2 = $adimages_path.$adimages[2];
    $adimage3 = $adimages_path.$adimages[3];
    }
    
    echo<<<END
    <table border="0" cellspacing="0" cellspadding="0" width="100%" align="center">
    <tr><td align="center">
    <table border="0" cellspadding="0" cellspacing="0" width="728" align="center">
    <tr bgcolor="#FFFFFF">
    <td width="182" align="left"><img src="$adimage0"></td>
    <td width="182" align="left"><img src="$adimage1"></td>
    <td width="182" align="left"><img src="$adimage2"></td>
    <td width="182" align="left"><img src="$adimage3"></td>
    </tr><tr bgcolor="#FFFFFF"><td colspan="4" align="center">
    
    YOUR ADSENSE CODE
    
    </td></tr></table>
    </td></tr></table>
    <br>
    END;
    ?> 
    
    PHP:
     
    aenigma, Jun 14, 2005 IP
  9. NewComputer

    NewComputer Well-Known Member

    Messages:
    2,021
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    188
    #229
    How would you place that in an external file and use it as an include. My php skills are not the greatest...
     
    NewComputer, Jun 14, 2005 IP
  10. tom22

    tom22 Peon

    Messages:
    98
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #230
    Just save that code as whatever.php then on the page that you want to use it just put <?php require('whatever.php') ?>.
     
    tom22, Jun 14, 2005 IP
  11. misohoni

    misohoni Notable Member

    Messages:
    1,717
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    200
    #231
    misohoni, Jun 14, 2005 IP
  12. NewComputer

    NewComputer Well-Known Member

    Messages:
    2,021
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    188
    #232
    How do you get it to randomize between 4 different images?
     
    NewComputer, Jun 15, 2005 IP
  13. permie

    permie Peon

    Messages:
    21
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #233
    What does your URL keyword targeting do? Thanks.
     
    permie, Jun 17, 2005 IP
  14. permie

    permie Peon

    Messages:
    21
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #234
    I used this php script: http://automaticlabs.com/products/rotator

    It's very easy to install. All you have to do is copy rotator.php into a directory with your images. Then link to the rotator.php file where you would normaly link to your images.

    I setup 4 directories with different images in each directory and a copy of the rotator.php script in each directory. Probably not the best way to do it from a code efficency point of view, but it works well.

    You never get the same image on the page more than once this way. If you only use 1 directory you end up with a slot machince effect.

    People might sit there all day refreshing the page trying to get 4 of a kind :)
    The best I could get was a pair :mad:
     
    permie, Jun 17, 2005 IP
    Art likes this.
  15. Stin

    Stin Guest

    Messages:
    264
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #235
    heh, if u know a little code u could get in there and fix it
     
    Stin, Jun 17, 2005 IP
  16. anotherchancetosee

    anotherchancetosee Guest

    Messages:
    53
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #236
    I mentioned earlier in this thread that I wrote a little bit of JS to pick out certain keywords from the URL of my blog post (dervied from the post Subject) - a simplistic contextual recognition system to pick the most relevant image for the currently viewed post.

    When the post generates suitable AdSense ads, this invariably means I end up with a IMAGE/AD match, with no effort at all on my part.
    eg gorillas , rhinos
    and manatees

    For the Index and Archive pages, I'm displaying random pictures, just for fun.

    And I'm using the images as links to my most relevant posts in each topic.
     
    anotherchancetosee, Jun 17, 2005 IP
  17. mehere

    mehere Peon

    Messages:
    32
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #237
    what kind of ctr do people have for their google adsense? I'm getting about 3%. It is that good?
     
    mehere, Jun 17, 2005 IP
  18. www.AmCy.org

    www.AmCy.org American CyberSpace®

    Messages:
    1,642
    Likes Received:
    60
    Best Answers:
    0
    Trophy Points:
    190
    #238
    3 percent is pretty good, but you should aim higher. Using the technique outlined in this thread, you can increase your CTR a great deal.

    AmCy
     
    www.AmCy.org, Jun 17, 2005 IP
  19. kawebspy

    kawebspy Peon

    Messages:
    491
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #239
    kawebspy, Jun 27, 2005 IP
  20. davert

    davert Banned

    Messages:
    345
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #240
    No question but that just putting the images out helps.
    Seems like color is better than black and white at least for my bottom of page setup.
    I use a simple single banner. I don't have a whole lot of backup images nor do I want the system to run php for each page view!
     
    davert, Jun 27, 2005 IP
Thread Status:
Not open for further replies.