Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 11-12-2004, 03:11 AM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Best Ad Management Script for Vbulletin?

We havent used vbulletin in a couple years and we recently purchased a 3.0 license for a new project. In the past we always used phpadsnew but since we have been out of it for so long we wanted to see what the best solution is at this time. Here is a breakdown of our needs and current situation:

We will be installing the vbadvanced hack so that we can have a homepage.

We need to be able to implement all different size banners, in many different locations

We need good statistics & tracking

We need the ability to place an ad in only a certain forum

We need the ability to have a "sponsor" for a forum where that sponsors ad will appear on the forum homepage with that forum, as well as the forum display page.

We need to be able to use both regular ads and html ads (code form external affiliate programs)

That is about the extent of it. If the answer is still phpadsnew, please let us know what is needed to integrate it with vb 3. I honestly dont even remember what we had to do to make it work with 2.x

Thanks in advance!
Reply With Quote
  #2  
Old 11-12-2004, 03:13 AM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh and we also need the ability to disable all ads if a user is in a certain paid usergroup. Would this be easily possible with any ad serving solution?
Reply With Quote
  #3  
Old 11-12-2004, 04:09 AM
Michael Morris's Avatar
Michael Morris Michael Morris is offline
 
Join Date: Nov 2003
Location: Knoxville TN
Posts: 774
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

phpadsnew2 - lot's of improvements over 1.0.0 and with the proper combination of zones and template conditionals on vbulletin's end you can accomplish everything you listed.
Reply With Quote
  #4  
Old 11-12-2004, 07:34 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'd also say phpAdsNew 2.
I use this on my board and am totally satisfied.
Reply With Quote
  #5  
Old 11-12-2004, 10:42 PM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sounds like a winner to me guys. Thank you for aiming me in the right direction.

I'll probably be back with more questions once I get it up and running and spend some time playing with it.
Reply With Quote
  #6  
Old 11-12-2004, 11:00 PM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok guys..... I just looked over things and I already have phpadsnew 2 installed and a few ads added to the software. I set the site up in May and im just now getting back around to finishing it up.

So here is the big question.... with vbulletin 3.0.3, what is the best way to add an ad to the header, and one in the footer, and then how would I add one in a specific forum?
Reply With Quote
  #7  
Old 11-13-2004, 01:38 AM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i believe the arrow ads is out for vb3, might wanna chek on that
Reply With Quote
  #8  
Old 11-16-2004, 07:42 PM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bump... can someone explain to me how to get an ad to show up in various places (ie homepage, forumhome, foum display, etc)

Thanks in advance
Reply With Quote
  #9  
Old 11-16-2004, 08:05 PM
Michael Morris's Avatar
Michael Morris Michael Morris is offline
 
Join Date: Nov 2003
Location: Knoxville TN
Posts: 774
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHPAdsnew2 allows you to create zones which in turn have specific ad ranges. Those zones also have specific invocation codes. You can use vbulletin conditionals to determine which invocation code is included into the page.

For example

HTML Code:
<if condition="$foruminfo[forumid]=='2'">Ad code for forum #2
<else /><if condition="$foruminfo[forumid]=='4'">Ad code for forum #4
<else /><if condition="THIS_SCRIPT=='index'">Ad code for the forum home page (forumhome)
<else /><if condition="THIS_SCRIPT=='vbadvanced'">Ad code for Vbadvanced pages
<else />Ad code for all other pages</if></if></if></if>
I'm not too sure about that last one - been awhile since I've used vbadvanced homepage (We use vbadvanced CMPS). You can figure out the conditional by opening up the file in a text editor and looking for the code that reads

PHP Code:
define('THIS_SCRIPT''index'); 
But instead of index it will say something else. You can also use this to determine the code you want to use on things that don't have forums associated with them like the usercp, who's online screen and private messaging.
Reply With Quote
  #10  
Old 11-16-2004, 08:24 PM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry to be ignorant, but which file do I need to define this in? Also we plan to use Vbadvanced CMPS as well. If I want it to appear in forumhome do I need to actually open the php script or can it be defined in a template someplace? Also, I vaguely remember having to put something in the php parse section in the control panel with 2.x with php_start() or something like that. Does this still apply?

Could you post the exact code you use to get those ads on your vbadvanced homepage and other pages at the top? Also let me know exactly where you place the code.

Thanks in advance! It has been a while since I have messed with this stuff.

Thanks
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:04 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04426 seconds
  • Memory Usage 2,259KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_html
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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_postinfo_query
  • fetch_postinfo
  • 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