Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vB Ad Management 4 Details »»
vB Ad Management 4
Version: 5.00, by RedTyger RedTyger is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.8 Rating:
Released: 11-08-2006 Last Update: 12-12-2007 Installs: 1791
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files  
No support by the author.


What does it do?

Features include global settings, advertisements allowing template conditionals, ad sharing and ad revenue sharing, timed advertisements, preset popular ad locations and functions such as sponsors, additional custom ad locations, random and static advertisements and its all very easy to use. You can use it for ordinary ads like adsense, banner rotations, or any content at all as well as using it to manage ads outside your forum too.

You can read in more detail about these and other features in the manual, which also contains some helpful notes and instructions, as well as the installation and upgrade instructions



If you are using autoinsertion and were using vB Ad Management before version 4.00, you will need to remove your old template edits or advertisements will appear multiple times. Just reverse the old instructions below.

Quote:
* Find <!-- post $post[postid] popup menu --> and paste $postbit_advertisement above it in your postbit & postbit_legacy templates.
* Paste $forumbit_advertisement at the bottom of your forumhome_forumbit_level1_post and forumhome_forumbit_level2_post templates.
* Paste $threadbit_advertisement at the bottom of your threadbit template.
* Paste $footer_advertisement at the top of your footer template.
* Find $spacer_close in your footer template and below it paste $rightcolumn_advertisement.
* Find &nbsp; in your header template and replace it with $header_advertisement.
* Find $spacer_open in your header template and below it paste $leftcolumn_advertisement.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #1972  
Old 12-10-2007, 09:01 AM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How to add Code like this ?

Code:
<script language="JavaScript" type="text/javascript">
  //<!--<[CDATA[
    am_referrer = '980620';
    am_template = '1';

    am_color_text = '000000';
    am_color_title = '000000';
    am_color_border = '000000';
    am_color_background = 'FFFFFF';
    am_color_price = 'FF0000';
    am_color_link = '3333FF';

    am_stmo = '1';
    am_tsr = '07';
  // ]]> -->
</script>
<script language="JavaScript" type="text/javascript" src="http://banners.affilimatch.de/show_ads.js"></script>
Preview and Templates does not show anything.
Reply With Quote
  #1973  
Old 12-10-2007, 09:19 AM
Vinyljunky's Avatar
Vinyljunky Vinyljunky is offline
 
Join Date: Feb 2007
Posts: 383
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pnd View Post
Problem #2
Ad's dont seem to be refreshing at times - I get blank banners at times.
NOT AN AD MANAGEMENT PROBLEM. AD SENSE PERMITS ONLY 3 ADS PER PAGE. IF YOU GO OVER THE LIMIT, THEY BLANK ADS I leave this comment here for others who may run into the same problem so they know the solution instead of finding NO ANSWERS like most of these posts contain- problems w/ no answers.

P.S. Some of you need to try a little harder on working on your problems instead of begging the poor author to look at your code/site when most of your problems can be solved with a little searching on this forum.
I have 4.x running and two Google Ads on one page, both of which are black (Some do say Ads by Adsense on a black background)

One is header Ad the other is postbit

I will post in the Google Adsense forums and let you know what I find out.

Adsense is working fine on my html site.

VinylJunky
Reply With Quote
  #1974  
Old 12-10-2007, 09:21 AM
class101 class101 is offline
 
Join Date: Sep 2007
Location: France
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by redlabour View Post
How to add Code like this ?

Code:
<script language="JavaScript" type="text/javascript">
  //<!--<[CDATA[
    am_referrer = '980620';
    am_template = '1';

    am_color_text = '000000';
    am_color_title = '000000';
    am_color_border = '000000';
    am_color_background = 'FFFFFF';
    am_color_price = 'FF0000';
    am_color_link = '3333FF';

    am_stmo = '1';
    am_tsr = '07';
  // ]]> -->
</script>
<script language="JavaScript" type="text/javascript" src="http://banners.affilimatch.de/show_ads.js"></script>
Preview and Templates does not show anything.
my guess is try removing useless codes first and also blank lines,

language="JavaScript"
//<!--<[CDATA[
// ]]> -->

if it's still failing try changing quotes in all your code like

am_referrer = '980620';
to
am_referrer = "980620";

something like this is cleaner:

Code:
<script type="text/javascript">
    am_referrer = "980620";
    am_template = "1";
    am_color_text = "000000";
    am_color_title = "000000";
    am_color_border = "000000";
    am_color_background = "FFFFFF";
    am_color_price = "FF0000";
    am_color_link = "3333FF";
    am_stmo = "1";
    am_tsr = "07";
</script>
<script type="text/javascript" src="http://banners.affilimatch.de/show_ads.js"></script>
Reply With Quote
  #1975  
Old 12-10-2007, 09:50 AM
trigon trigon is offline
 
Join Date: Dec 2005
Posts: 91
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RedTyger View Post
I dont have a Brandig Free License, but got the white Page. What else can it be??
Reply With Quote
  #1976  
Old 12-10-2007, 10:03 AM
class101 class101 is offline
 
Join Date: Sep 2007
Location: France
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For peoples in big troubles with 4.0 yet cos I have seen some request to post the last 3.14 stable instructions so here it is, package attached for vb members only to this post, below text is from RedTyger Readme.txt, just remember to not request support for this version because it is no more supported but stably working here:

= vB Ad Management 3.1 =

What does it do?

A common template modification request is about how to insert advertisements into your forum. This does that and allows you to control when it will appear and how it will look via the AdminCP. Settings are extensive and you can insert any content you like. You can also choose to enable Adsharing (see 2nd post of the thread for details).



Features

Global on/off
Turn the plugin on and off. (Exciting stuff!)

Displays ads with posts, single posts, announcements or private messages
Display advertisements with any form of user message.

Displays ads in your header, footer and in a left or right column, with forum categories and with threads
As well as adverts only being previously displayed with threads, you can now include advertisements in all these locations via the AdminCP.

Unlimited customisation at every advertisement location
Every ad location is templated and editable and also offers extensive customisation via the AdminCP. You can choose between static ad code (i.e. Adsense) or a random banner rotation at every location and can use individual code for each type at each location. Display settings below apply either globally and where appropriate to each individual location. Each location can be separately enabled or disabled and postbit advertisements (announcements, private messages, posts) can now also be separately enabled or disabled.

Include or exclude display of advertisements:
  • Per Forum
  • Per Usergroup
  • Per Thread
  • Per User
  • Per Announcement or turn announcement ads on/off
  • Private message ads on/off

Exclude only:
  • THIS_SCRIPT - Allows you to exclude pages from displaying ads based on content type, necessary for some TOS. See the setting explanation in the product AdminCP for more details.

Display using any combination of:
  • Display with first post on a page
  • Display with last post on a page
  • Display every X posts
  • Display with Xth post in a thread
  • Minimum thread postcount before ads will be displayed
  • User postcount - after X posts advertisements will not be displayed.

Remove Ads link
Adds a link with ads to information about upgrading an account to remove advertisements. Custom link & link text, can be turned on/off. You can now also specify the "Sponsored Links" text yourself.

Display ads as user
Choose between displaying advertisments as a post (with optional custom avatar) and standard advertisement display.

Automatic postbit switch
The one-phrase template edit is the same no matter what your settings, you can change between any combination of postbit/postbit_legacy and display as user/standard display at any time and the style will automatically adjust itself.

Displays any code
Anything which can be copied and pasted into the text box will be displayed, HTML included of course. This applies to both the static and random banners. There is no limit to how many banners you can rotate, or filetype, nor for that matter does it even have to be a banner. It will randomly rotate any code you input. Note: It really is random, so you may see the same banner twice in a row.

Google Analytics integration
You can enter your Google Analytics code into vB Ad Management settings and it will be automatically inserted into every page. Aside from saving you a template edit, the analytics can this way be independently turned off.

XHTML valid.
Peace of mind...

Does not cause global warming.
Excellent.

Copyright notice
Ok not a feature, but I felt there is now enough substance as a product to add a link in the footer. If you would like to remove this please make a donation, details below. And be sure to let me know by PM!

This product is my work and mine alone. You are not permitted to distribute it outside of vbulletin.org, take credit for it, etc. Use your common sense and don't steal, basically. I have extremely effective legal recourse against thieves and fraud.



Location names

For ease of use, the locations are referred to by their template names. Once you know what they mean it's a lot clearer, here's a rundown for those who don't know.

Postbit - The postbit template is used to display posts, announcements and private messages.
Threadbit - The threadbit is the template for a single row when viewing a list of threads.
Forumbit - The forumbit is the template for a single row when viewing a list of forums/subforums.
Header - The template containing the logo at the top of your forum pages ONLY. The area immediately below that is the navbar template.
Footer - The template that contains everything at the bottom of your forum pages from the time downward.


Instructions
  • Upload the product using the Product Manager.
  • Go to Style Manager > Edit Templates and...
  • Find <!-- post $post[postid] popup menu --> and paste $postbit_advertisement above it in your postbit & postbit_legacy templates.
  • Paste $forumbit_advertisement at the bottom of your forumhome_forumbit_level1_post and forumhome_forumbit_level2_post templates.
  • Paste $threadbit_advertisement at the bottom of your threadbit template.
  • Paste $footer_advertisement at the top of your footer template.
  • Find $spacer_close in your footer template and below it paste $rightcolumn_advertisement.
  • Find &nbsp; in your header template and replace it with $header_advertisement.
  • Find $spacer_open in your header template and below it paste $leftcolumn_advertisement.


Changing the settings
  • The AdminCP options where you can change your settings are located in vBulletin Options after all the rest of the setting categories.
  • If you want to edit the templates for the advertisements yourself, they are located immediately after their postbit counterparts in the Template Manager list with the suffix "_advertisement". Do not alter any value in the template (that's a string of words or letters beginning with a $ sign) or your ads may stop working! I'll only support the unedited product.

    Important! You cannot see your own shared advertisements! This is to avoid accidentally breaking advertiser's TOS by clicking your own ads. Remember this when testing and be sure to test using someone else's adcode!


Donations

If you have a pressing wish to donate money to me (and of course, you do) to say thank you and to possibly encourage more future work then you can do via the link below. Also, you will go to heaven.

http://redtyger.co.uk/donations.php

Don't panic!
The donations link is only hosted on my website so it can be encrypted and not open my email address to spammers.



Screenshot
1. Postbit with display as user, custom avatar and Remove Ads text link enabled.
2. Postbit with ads displayed as standard, display as user disabled.
3. Postbit_legacy with display as user enabled, custom avatar disabled.
4.Random ads (pictures of Bart Simpon in this case) in left & right columns, in the header and after the 1st thread on a page of threads (sticky threads aren't counted in the positions).
5. Positions of adverts in the archives.



Changelog
v2.0 Released.
v2.01 Fixed bug where static header ads will not show up, plus minor instructions typo fix.
v2.02 (Unreleased) Fixed me forgetting to update Usergroup & UserID permissions from v1.0.

v2.1 Added advertisements in archives using header, footer, left & right columns.
v2.1 Fixed Usergroup & UserID permissions.
v2.1 Fixed Google Analytics causing footer problems.
v2.1 Minor XHTML validation fix.
v2.1 Minor optimisations.

v3.0 BETA Added significant Adsharing features.

v3.01 BETA Added custom delimiters for both Adcode sharing and all Adcode and settings. This means that you can choose to separate your settings and Adcode with , or | or ;; or any string of characters you wish without editing the code. You can also do the same allowing you to alter what text is shared, previously you had to use #shared#.
v3.01 BETA Added blocking a user from seeing their own shared advertisements.
v3.01 BETA Fixed bug where Usergroup blocking would not work.
v3.01 BETA Minor optimisations.

v3.02 No longer BETA, full release.
v3.02 Fixed shared postbit ads not showing.

v3.03 Removed the BETA tag from the version.
v3.03 Fixed error when using threadbit ads.
v3.03 Removed threadbit ads in archives option, since apparently it doesn't exist.

v3.04 Removed executionorder field from the plugin. It should now also work with vB 3.5.x versions. May be slightly faster too, not sure.
v3.04 Fixed template error where an advertisement's forum statusicon would break if quotes were used in the Sponsored Links text. Revert your template after upgrading if this needs fixing for you.
v3.04 Updated copyright link insertion to improve speed and be compatible with other modifications by myself that also insert copyright links. The idea is that if you are using several plugins it will detect the others and ensure that only one link is chosen to be added. Currently there is only one other (https://vborg.vbsupport.ru/showthread.php?t=142153) so if you are using that modification you must also upgrade vB Ad Management or two links will be displayed.

v3.1 Added major optimisations, improved forumbit and threadbit code particularly and massively trimmed the number of necessary database queries for shared ads.
v3.1 Added some basic username markup so admins can see whose adcode is being used.
v3.1 Fixed forumbit and thread ads, bit more reliable now.
v3.1 Fixed usergroup and userid banning for shared adcode, again now they actually work.
v3.1 Added automatic ban from shared ads when user is placed in Tachy goes to Coventry.
v3.1 Added option to force use of the thread-starter or last poster's adcode in specified forums.
v3.1 "Remove Advertisements" link extended to be included in almost all advertisement templates.
v3.1 Switch to primarily file-based modification instead of entirely plugin-based.
v3.1 Templates require revert to include the new link.

v3.11 Add % calculation back in. Oops.
v3.11 Added % calculation for shared ads with more accurate, more random formula.

v3.12 Fixed vBSEO compatibility.
v3.12 Fixed and optimised Google Analytics code addition.

v3.13 Fixed postbit_legacy displaying incorrectly when using "Display as user".
v3.13 Fixed removeads link not displaying in postbit_legacy.

v3.14 Fixed repeating copyright link compatibility problem with backup modification and changed the formatting and wording.


Known Issues
v2.x Left/Right column alignment
The padding and alignment of the right and left columns (right column or both together especially) can vary a bit and look uneven. I used the code from vBulletin's Quick Tips section and could not improve upon it myself either so I'm afraid this is probably as good as it gets.
v3.x Shared Adcode not triggering.
If your shared delimiter is the text at the very end of your adcode, then it will not appear when the advert is displayed on your forum and nothing will replace it, or sharing will not be triggered. Your shared delimiter cannot be the last characters in your Adcode.




How to add your own custom adcode blocks in 3 minutes

Download the zip file and open the named php files using a plain text editor (something like MSWord which uses formatting will break the code). Follow the simple instructions below then save, upload and overwrite your existing files. Your new custom adcode block will be at the bottom of the header/footer section of your vB Ad Management settings.

You can add as many custom blocks as you like as long as you give each one a different name. They'll work on any page, obey all permissions and work with all features including Ad-Sharing.

To name a custom adcode block, just find/replace every instance of the word "custom" in the code below with the new name of your choice.


IN FILE vb_ad_management_310.xml, FIND:
PHP Code:
<template name="footer_advertisement" templatetype="template"><![CDATA[
        <
div align="center">
            
$footer_adcode
        
</div>
]]></
template

ADD BELOW:

PHP Code:
<template name="custom_advertisement" templatetype="template"><![CDATA[
        <
div>
            
$custom_adcode
        
</div>
]]></
template



IN FILE includes/vb_ad_management/cache_templates.php, FIND:
PHP Code:
if ($vbulletin->options['adintegrate_footer_onoff'])
{
    
$adtemplates[] = 'footer_advertisement';

ADD ABOVE:
PHP Code:

if ($vbulletin->options['adintegrate_custom_onoff'])
{
    
$adtemplates[] = 'custom_advertisement';




IN FILE includes/vb_ad_management/global_start.php,FIND:
PHP Code:
if ($vbulletin->options['adintegrate_footer_onoff']) 
ADD ABOVE:
PHP Code:
if ($vbulletin->options['adintegrate_custom_onoff'])
{    
    if (
$vbulletin->options['adintegrate_custom_adcode'])
    {
        
$custom_split explode("$adshared"$vbulletin->options['adintegrate_custom_adcode']);
        
$custom_adcode $custom_split[0];
        if (
$custom_split[1])
        {
            
$custom_adcode $custom_split[0] . $GLOBALS['adcode_shared'] . $custom_split[1];
        }
        eval(
'$custom_advertisement = "' fetch_template('' custom_advertisement '') . '";');
    }
    else if (
$vbulletin->options['adintegrate_custom_adcode_rand'])
    {
        
$custom_adcode explode("$addelimiter"$vbulletin->options['adintegrate_custom_adcode_rand']);
        
$custom_rand array_rand($custom_adcode);
        
$custom_adcode $custom_adcode["$custom_rand"];
        
$custom_split explode("$adshared"$custom_adcode);
        
$custom_adcode $custom_split[0];
        if (
$custom_split[1])
        {
            
$custom_adcode $custom_split[0] . $GLOBALS['adcode_shared'] . $custom_split[1];
        }
        eval(
'$custom_advertisement = "' fetch_template('' custom_advertisement '') . '";');
    }    




IN FILE vb_ad_management_310.xml, FIND:
PHP Code:
<setting varname="adintegrate_footer_adcode_rand" displayorder="45">
    <
datatype>free</datatype>
    <
optioncode>textarea</optioncode>
</
setting

ADD BELOW:

PHP Code:
<setting varname="adintegrate_custom_onoff" displayorder="991">
    <
datatype>boolean</datatype>
    <
optioncode>yesno</optioncode>
    <
defaultvalue>0</defaultvalue>
</
setting>
<
setting varname="adintegrate_custom_adcode" displayorder="992">
    <
datatype>free</datatype>
    <
optioncode>textarea</optioncode>
</
setting>
<
setting varname="adintegrate_custom_adcode_rand" displayorder="993">
    <
datatype>free</datatype>
    <
optioncode>textarea</optioncode>
</
setting
Reply With Quote
  #1977  
Old 12-10-2007, 12:13 PM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bug:

One more Bug - the Options Display advertisement after X post on a page? and Display advertisement every X posts? are useless because they only working for the first Page of a Thread. At the second Page there are no more Ads in Postbit.

Page 1 with Ads in Postbit after every 4 Post and again every 4 Post


Page 2 without Ads in Postbit after every 4 Post and again every 4 Post
Reply With Quote
  #1978  
Old 12-10-2007, 03:46 PM
WarDoGG WarDoGG is offline
 
Join Date: Jun 2007
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Exactly the same error as this .-> https://vborg.vbsupport.ru/showpost....postcount=1948

MySQL Error : Duplicate entry 'adintegrate_sharing_chanceoflastposter' for key 1
Error Number : 1062
Reply With Quote
  #1979  
Old 12-10-2007, 03:53 PM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The above two problems will be fixed in the next release, coming shortly. I really do apologise for the issues so far, I'm working to get them sorted ASAP.
Reply With Quote
  #1980  
Old 12-10-2007, 06:52 PM
kiFF kiFF is offline
 
Join Date: Apr 2007
Location: US
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There's no space between "Ad Management by RedTyger" and my copyright text in the footer. It looks like this: "Copyright ©2007 PolitiCity.netAd Management by RedTyger".

Can I change that?
Reply With Quote
  #1981  
Old 12-10-2007, 06:56 PM
RedTyger's Avatar
RedTyger RedTyger is offline
 
Join Date: Nov 2006
Location: UK
Posts: 1,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well the easiest way is to add a space to the end of your copyright text in vBulletin Options > Site Name/etc or the vBulletin copyright phrase if you edited it.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:03 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05971 seconds
  • Memory Usage 2,392KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (8)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete