Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 Good banner mod ..
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

laser
Advanced Member

Australia
3859 Posts

Posted - 25 January 2005 :  17:19:12  Show Profile
Does anyone know of a good (i.e. database-driven) banner rotator mod ?

I've seen ones where you have to edit the ASP or a TXT file when your ad content changes, and dead links to a few good ones, but no real live link or a Snitz mod.

Can someone point me in the right direction ?

Thanks

HuwR
Forum Admin

United Kingdom
20579 Posts

Posted - 25 January 2005 :  19:10:07  Show Profile  Visit HuwR's Homepage
have you checked on www.snitzbitz.com
Go to Top of Page

Podge
Support Moderator

Ireland
3775 Posts

Posted - 25 January 2005 :  19:51:12  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
Not a mod but you could try the excellent (and free) AdMentor
http://www2.aspcode.net/default.aspx?p=p&i=3

Asp & Asp.Net version available.

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 25 January 2005 :  21:17:19  Show Profile
Yes Huw, there's only one on the Bitz site and it's an editted ASP file - no good for my client

Podge - thanks, that looks good on first impressions, I'll see how I go with it.
Go to Top of Page

Cliff
Average Member

United States
501 Posts

Posted - 25 January 2005 :  23:14:46  Show Profile  Visit Cliff's Homepage
http://phpadsnew.com/two/
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 26 January 2005 :  01:23:47  Show Profile
Bit limitting Cliff - would it run in the middle of an ASP page if written in PHP ? (possibly, but only if it's an include I would guess), and being PHP really geared towards a *nix machine, and MUST have MySQL.

Have you used it before integrating into Snitz ?
How did you go ?
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 26 January 2005 :  01:32:36  Show Profile
quote:
Originally posted by Podge

Not a mod but you could try the excellent (and free) AdMentor
http://www2.aspcode.net/default.aspx?p=p&i=3

Asp & Asp.Net version available.


OK, I'm trying to download the ASP version and the site doesn't seem to create a session for me at all - I'm never logged in therefor I can't download. If anyone has downloaded v.2.22 I would really appreciate it if you emailed it to me : webmaster@ the domain in my sig.
Go to Top of Page

Helterskelter
Junior Member

United Kingdom
331 Posts

Posted - 26 January 2005 :  02:48:14  Show Profile  Visit Helterskelter's Homepage  Send Helterskelter an ICQ Message
This is what i use.

All you have to do is add an i-frame in inc_header.asp (or where ever you want it).

It uses it's own access database and is quite secure login.
Also show'she number of displays and clicks.
You can have several banner in it and it refreshes at a set period that u can set.

http://www.btinternet.com/~sharkeys_2k/ShArKeY.media/scripts/scripts/banner.htm

Helter


Edited by - Helterskelter on 26 January 2005 02:49:12
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 31 January 2005 :  15:08:25  Show Profile
So no one has a copy of AdMentor sitting on their machine ?
Go to Top of Page

Podge
Support Moderator

Ireland
3775 Posts

Posted - 31 January 2005 :  15:34:43  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
http://www.brothersoft.com/soft/admentor21.rar

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

DavidRhodes
Senior Member

United Kingdom
1222 Posts

Posted - 01 February 2005 :  06:14:46  Show Profile
http://www.snitzbitz.com/mods/details.asp?Version=All&mid=164

The UK MkIVs Forum
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 02 February 2005 :  05:08:55  Show Profile
AH!, hadn't seen that one David, I'll check it out

Go to Top of Page

Cliff
Average Member

United States
501 Posts

Posted - 02 February 2005 :  10:34:26  Show Profile  Visit Cliff's Homepage
Hi laser,
No idea, I am far from a programmer. I use it on a vBulletin site which as you know is php. I am using MySQL for this database and a Windows server for the site.

I just started using it and really like it. It offers pretty good stats, go can expire ads, you can show many ads from one user and less from another, along with a lot of other settings.

You have several ways to invoke the code, here is a js way that I am using. Would this work on an asp page?

<script language='JavaScript' type='text/javascript' src='http://www.mysite.com/board/ads/adx.js'></script>
<script language='JavaScript' type='text/javascript'>
<!--
if (!document.phpAds_used) document.phpAds_used = ',';
phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);

document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
document.write ("http://www.mysite.com/board/ads/adjs.php?n=" + phpAds_random);
document.write ("&exclude=" + document.phpAds_used);
if (document.referrer)
document.write ("&referer=" + escape(document.referrer));
document.write ("'><" + "/script>");
//-->
</script><noscript><a href='http://www.mysite.com/board/ads/adclick.php?n=a7e2eb27' target='_blank'><img src='http://www.mysite.com/board/ads/adview.php?n=a7e2eb27' border='0' alt=''></a></noscript>


quote:
Originally posted by laser

Bit limitting Cliff - would it run in the middle of an ASP page if written in PHP ? (possibly, but only if it's an include I would guess), and being PHP really geared towards a *nix machine, and MUST have MySQL.

Have you used it before integrating into Snitz ?
How did you go ?


Edited by - Cliff on 02 February 2005 10:49:41
Go to Top of Page

Dom23
Starting Member

37 Posts

Posted - 24 June 2005 :  01:26:21  Show Profile  Send Dom23 an AOL message
Hi all, laser kindly added this banner mod for me, I have another sponsor and I'm wondering how I go about adding their banner to my site.

All the best

Dom
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 24 June 2005 :  06:37:49  Show Profile
Hey Dom, email me if you need a hand.

Do you want the 2 banners on a random selection, or one under the other ?
Go to Top of Page

Dom23
Starting Member

37 Posts

Posted - 25 June 2005 :  01:25:34  Show Profile  Send Dom23 an AOL message
Mail sent buddy
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.38 seconds. Powered By: Snitz Forums 2000 Version 3.4.07