Tip of the day - blog related

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dirty F
    Too lazy to set a custom title
    • Jul 2001
    • 59204

    #1

    Tip of the day - blog related

    I'm sure most of you know it already but for those who don't:

    Always add alt descriptions to all the pics on your blog (or on any other site for that matter).

    Eventhough my blog is dead, i dont update it anymore, im getting 1000's of image hits a day which i redirect. They are making me easily 500+ a month.
  • Dirty F
    Too lazy to set a custom title
    • Jul 2001
    • 59204

    #2
    I'm happy you all enjoy my money making tips!

    Comment

    • QualityMpegs
      Confirmed User
      • Feb 2003
      • 3521

      #3
      Originally posted by Franck
      I'm sure most of you know it already but for those who don't:

      Always add alt descriptions to all the pics on your blog (or on any other site for that matter).

      Eventhough my blog is dead, i dont update it anymore, im getting 1000's of image hits a day which i redirect. They are making me easily 500+ a month.
      you redirecting with .htaccess? may we have the code?

      PAYSITES CATEGORIZED AND THUMBNAILED BY NICHE - 69767780

      Comment

      • dissipate
        The Dirty Frenchman
        • Nov 2005
        • 8904

        #4
        Originally posted by QualityMpegs
        you redirecting with .htaccess? may we have the code?
        You'd be redirecting any google searches through .htaccess - this will block google spidering in the future, but it will also redirect google image traffic.

        Comment

        • cool1
          sex is good
          • Sep 2001
          • 24939

          #5
          Thanks for the tip
          I had forgot to add a few

          Comment

          • Dirty F
            Too lazy to set a custom title
            • Jul 2001
            • 59204

            #6
            Originally posted by dissipate
            You'd be redirecting any google searches through .htaccess - this will block google spidering in the future, but it will also redirect google image traffic.

            No its java, google bot dont read java.

            Comment

            • Dirty F
              Too lazy to set a custom title
              • Jul 2001
              • 59204

              #7
              Originally posted by cool1
              Thanks for the tip
              I had forgot to add a few

              Its really worth it...it tooks a long time though before you get it.

              Comment

              • fuzebox
                making it rain
                • Oct 2003
                • 22353

                #8
                I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.

                Comment

                • fuzebox
                  making it rain
                  • Oct 2003
                  • 22353

                  #9
                  Originally posted by dissipate
                  You'd be redirecting any google searches through .htaccess - this will block google spidering in the future
                  Untrue...

                  Comment

                  • QualityMpegs
                    Confirmed User
                    • Feb 2003
                    • 3521

                    #10
                    or, i guess you could just cloak your page
                    Code:
                    <?php
                    
                    function redirect($loc, $ref)
                    {
                    
                       if (strstr(strtolower($ref), 'google.')
                          || strstr(strtolower($ref), 'yahoo.')
                          || strstr(strtolower($ref), 'msn.')
                          || strstr(strtolower($ref), 'altavista.')
                          || strstr(strtolower($ref), 'ask.')
                          || strstr(strtolower($ref), 'aol.')
                          || strstr(strtolower($ref), 'looksmart.')
                          || strstr(strtolower($ref), 'dogpile.')
                          || strstr(strtolower($ref), 'lycos.')
                          || strstr(strtolower($ref), 'netscape.')
                          || strstr(strtolower($ref), 'hotbot.')
                          || strstr(strtolower($ref), 'alltheweb.')
                          || strstr(strtolower($ref), 'freeserve.'))
                       {
                          header("Location: $loc");
                       }
                    }
                    ?>
                    To call it from any page of your website, or from a template, save the above file as cloak.php (or whatever) and put this code at the top of the page:
                    Code:
                    <?php
                    ob_start();
                    
                    include("cloak.php");
                    
                    $ref = $HTTP_REFERER;
                    redirect("http://www.urltoredirect.com", $ref);
                    
                    ob_end_flush();
                    ?>

                    PAYSITES CATEGORIZED AND THUMBNAILED BY NICHE - 69767780

                    Comment

                    • More Booze
                      Confirmed User
                      • Mar 2004
                      • 5116

                      #11
                      Originally posted by Franck
                      No its java, google bot dont read java.
                      would you like to share that script?

                      Comment

                      • Dirty F
                        Too lazy to set a custom title
                        • Jul 2001
                        • 59204

                        #12
                        Originally posted by fuzebox
                        I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.

                        Yeah thats even better. I didnt do that, i just send it to a page with several sponsor links, banners etc. Several different niches.

                        Comment

                        • $5 submissions
                          I help you SUCCEED
                          • Nov 2003
                          • 32195

                          #13
                          Originally posted by fuzebox
                          I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
                          SWEET script

                          Comment

                          • Dirty F
                            Too lazy to set a custom title
                            • Jul 2001
                            • 59204

                            #14
                            Originally posted by fuzebox
                            I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.

                            Do you sell the script?

                            Comment

                            • jrap
                              Confirmed User
                              • Feb 2005
                              • 448

                              #15
                              Just don't go overboard with alt tags

                              Comment

                              • Grisey
                                Confirmed User
                                • Jan 2004
                                • 1805

                                #16
                                Nice tip Franck
                                Segpay Suck Ass Worse Billing Company
                                Allurecash Scammers and don't pay

                                Comment

                                • jrap
                                  Confirmed User
                                  • Feb 2005
                                  • 448

                                  #17
                                  http://seoblackhat.com/2005/11/13/fr...vascript-ever/

                                  There is a good article on frame busting

                                  Comment

                                  • More Booze
                                    Confirmed User
                                    • Mar 2004
                                    • 5116

                                    #18
                                    scriritiotvm

                                    Comment

                                    • fr0gman
                                      Confirmed User
                                      • Feb 2005
                                      • 2093

                                      #19
                                      Originally posted by Franck
                                      No its java, google bot dont read java.
                                      I use Flash for the same reason
                                      Earn up to $.03 per Visitor -> No Click Monetization!
                                      "Because the World Wide Web is all about two things: horrifyingly stupid psychodrama, and naked chicks."
                                      Wild College Videos | ICQ: 7746696

                                      Comment

                                      • BigBen
                                        Confirmed User
                                        • Nov 2004
                                        • 2299

                                        #20
                                        Originally posted by fuzebox
                                        I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
                                        Something along these lines?

                                        Code:
                                        <?
                                        function url($referer)
                                        {
                                           if $referer = "some query string";
                                           return "http://querystringpage.com";
                                        }
                                        ?>
                                        
                                        <script type="text/javascript">
                                        if( window != window.top ) { top.location.href = "<? url($_SERVER['HTTP_REFERER']); ?>"; }
                                        </script>

                                        Comment

                                        • nico-t
                                          emperor of my world
                                          • Aug 2004
                                          • 29903

                                          #21
                                          a while ago i looked into the known frame buster code, and i didnt put it on my blogs yet but id figure its perfect to force the surfer to the page of the blog where the images are at when u put it in the blog header. Since every page of the blog uses the header.

                                          But, i also have a domain with a shitload of galleries and free site pages on it that gets loads of google image hits. But since these gals and free sites dont share headers i cant frame bust the google image traffic directly to the page the images are at.. would be great if anyone has tips on this.

                                          Originally posted by fuzebox
                                          I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
                                          plus this looks like a perfect script.. but i guess you also have to put a code on every page too with this one? Or is it strictly a htaccess code (dont know if this possible in htaccess)?

                                          Comment

                                          • nico-t
                                            emperor of my world
                                            • Aug 2004
                                            • 29903

                                            #22
                                            those 100 useless threads of some "funny" fake nick kicked this thread down so heres a bump.

                                            Comment

                                            Working...