Banner rotator script?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Marcus
    Confirmed User
    • Jul 2001
    • 3472

    #1

    Banner rotator script?

    Anyone know of a good free banner rotator script?

    I have a lot of small images that need to change with each refresh, not just 1 large banner, so I'm guessing javascript would be the best way instead of a php script...right?
  • swedguy
    Confirmed User
    • Jan 2002
    • 7981

    #2
    Try HERE

    Comment

    • kenny
      Confirmed User
      • Mar 2002
      • 7245

      #3
      I probably did this the long way, but here is how I got my banners to rotate by the second.

      1.ssi commands in the html document

      [!--#config timefmt="%S"--]
      [!--#include virtual="/free/seconds/$DATE_LOCAL.txt"--]

      2. I made a folder with 00.txt- 59.txt with random html for the banners.

      Like I said I probably done this the hard way
      7

      Comment

      • h0st
        Confirmed User
        • Jul 2001
        • 1216

        #4
        Google
        Did you say Pimp My Sexlife?

        Comment

        • Sellyourhits
          So Fucking Banned
          • Jun 2002
          • 5

          #5
          I'v been using centralad.com for years, you get a very user friendly software , can track a lot6 of things.

          Highly recommend it

          Steve

          Comment

          • chodadog
            Confirmed User
            • Apr 2002
            • 9736

            #6
            If you have php, this is what i use:

            PHP Code:
            <?php
            
            $banners_dat = "banners/banners.txt";
            
            function PrintBanner() {
                global $banners_dat;
            
                $arry = @file($banners_dat);
                if( !isset($arry) || !$arry || !is_array($arry) )
                    return false;
            
                list($img, $url, $alt, $status) = explode("|", $arry[rand(0,sizeof($arry)-1)]);
                $focus=$mouseover="\"window.status='Click Here'; return true;\"";
                $mouseout="\"window.status='Done'; return true;\"";
            
                return "<a 
                    href=\"$url\" 
                    OnMouseOver=$mouseover 
                    OnFocus=$focus 
                    OnMouseOut=$mouseout><img 
                                src=\"$img\" 
                                border=\"1\" 
                                alt=\"[$alt]\"></a>\n";
            }
            
            print PrintBanner();
            ?>
            And the text file with the data..

            image1.gif|http://www.url1.com|description 1
            image2.gif|http://www.url2.com|description 2
            image3.gif|http://www.url3.com|description 3

            and so on. don't leave any blank lines, and that should work fine
            26 + 6 = 1

            Comment

            • Wilbo
              Confirmed User
              • Feb 2001
              • 2082

              #7
              Originally posted by Sellyourhits
              I'v been using centralad.com for years, you get a very user friendly software , can track a lot6 of things.

              Highly recommend it

              Steve
              Centralad is very processor intensive and has NO customer support. I have it on 2 servers and could get away with one if it wasn't for this script.

              Comment

              • GFED
                Confirmed User
                • May 2002
                • 8121

                #8
                Here you go bro... http://awsd.com/scripts/webadverts/
                Very nice program, and it lets you run a banner exchange too.
                https://www.flow.page/savethechildren

                Comment

                • chodadog
                  Confirmed User
                  • Apr 2002
                  • 9736

                  #9
                  Originally posted by Wilbo


                  Centralad is very processor intensive and has NO customer support. I have it on 2 servers and could get away with one if it wasn't for this script.
                  Why don't you just buy a better script? Chances are, you could save the cost of the script in just a month of hosting costs.
                  26 + 6 = 1

                  Comment

                  • ebess
                    Registered User
                    • Jun 2002
                    • 4

                    #10
                    Any suggestions on the best script to buy?

                    I've been using phpAdsNew, and I've found it to be very kind of cpu intensive and slow...doesn't really seem made to handle the large number of banners, etc that go along with having an adult site.

                    Would love to find another script that has a good interface as well as good performance. Free or paid.

                    Thanks!
                    -ebess-
                    Top adult domains for sale or lease, including fuckthis.com, fuckmyass.com, blackfuck.com, pussyfucking.com, etc. Lots of type-in traffic.

                    See complete list at www.ebess.com

                    Comment

                    • heymatty
                      Confirmed User
                      • Oct 2001
                      • 2188

                      #11
                      I installed adcycle ( http://adcycle.com )

                      I am told its the best at its job, but unfortunately I never find time to implement it.

                      Cashlantis ~ Black Book Cash

                      Comment

                      • Scootermuze
                        Confirmed User
                        • Dec 2001
                        • 4513

                        #12
                        Here are a few

                        Comment

                        • Wilbo
                          Confirmed User
                          • Feb 2001
                          • 2082

                          #13
                          Originally posted by chodadog


                          Why don't you just buy a better script? Chances are, you could save the cost of the script in just a month of hosting costs.
                          Cuz I'm too lazy to change over 1000 sites around

                          Comment

                          Working...