vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Miscellaneous Hacks - Rotating Banner System (https://vborg.vbsupport.ru/showthread.php?t=188328)

y2ksw 11-25-2009 09:00 PM

Quote:

Originally Posted by Robert Waanders (Post 1920834)
Hello Giovanni,

Thank you for your very, very usefull posting. For some reason, i don't get the banners to show... very strange... I will puzzle on..

Robert

Have you tried to show a predefined banner in different templates?

denideni 11-26-2009 07:04 AM

Hi! I have the same problem as Robert Waanders.
I placed <!--@vbbanners:%d@--> in header, and it's not showing anything. When I changed it to @vbbanners:%d@, where the banner should appear, it appeard exactly this "@vbbanners:%d@".
I am using vb 3.8.4.
What am I missing?

oferelijah 11-26-2009 10:04 AM

Quote:

Originally Posted by y2ksw (Post 1920636)
I'm not sure if this is a good idea. ;)

can you tell me what's the code change s i need to do to get this?

y2ksw 11-26-2009 10:07 AM

Quote:

Originally Posted by denideni (Post 1921072)
Hi! I have the same problem as Robert Waanders.
I placed <!--@vbbanners:%d@--> in header, and it's not showing anything. When I changed it to @vbbanners:%d@, where the banner should appear, it appeard exactly this "@vbbanners:%d@".
I am using vb 3.8.4.
What am I missing?

https://vborg.vbsupport.ru/showpost....&postcount=439

Basically you should use @vbbanners:0@ to @vbbanners:9@ in your templates and not @vbbanners:%d@

y2ksw 11-26-2009 10:10 AM

Quote:

Originally Posted by oferelijah (Post 1921108)
can you tell me what's the code change s i need to do to get this?

It would need a replication of all the admincp code in order to show up in moderation, and some permission tweaks in each php file in order to allow moderator access.

Robert Waanders 11-26-2009 11:38 AM

Hi Giovanni,

Again, thank you for your help.. still having troubles, butt.... When I use @vbbanners@ in options and template it works... That is nice of course, but... (nr. 2) In certain forums I don't want the banner and then @vbbanners@ is showing up on top at the place where the banner is positioned...

So, i'm getting close now.. but not yet completely..

Robert

y2ksw 11-26-2009 01:12 PM

Quote:

Originally Posted by Robert Waanders (Post 1921135)
Hi Giovanni,

Again, thank you for your help.. still having troubles, butt.... When I use @vbbanners@ in options and template it works... That is nice of course, but... (nr. 2) In certain forums I don't want the banner and then @vbbanners@ is showing up on top at the place where the banner is positioned...

So, i'm getting close now.. but not yet completely..

Robert

Are we sure you actually use the version 2.2.1?

Robert Waanders 11-27-2009 06:47 AM

Yes, 100%

y2ksw 11-27-2009 08:03 AM

So then ... please concentrate on: https://vborg.vbsupport.ru/showpost....&postcount=439 :)

denideni 11-28-2009 03:54 PM

can you please tell me what can I do to shoe the banner a little bit to the right? Beacause after the banner is a "to", and it's not looking OK.
Besides that, it seems that it's working fine

y2ksw 11-29-2009 06:30 AM

Quote:

Originally Posted by denideni (Post 1922102)
can you please tell me what can I do to shoe the banner a little bit to the right? Beacause after the banner is a "to", and it's not looking OK.
Besides that, it seems that it's working fine

This is normally a style issue and I'm not good in HTML. It also depends very on the place. Maybe a align="right" attribute of a div, p or td tag may solve this problem.

denideni 11-29-2009 07:06 AM

Quote:

Originally Posted by y2ksw (Post 1922370)
This is normally a style issue and I'm not good in HTML. It also depends very on the place. Maybe a align="right" attribute of a div, p or td tag may solve this problem.

well, where is the code? where is established the position for Position 0 (horizontal)?

y2ksw 11-30-2009 03:40 AM

Quote:

Originally Posted by denideni (Post 1922380)
well, where is the code? where is established the position for Position 0 (horizontal)?

Tehere is no such place. Differently from other banner software, this product does not show a banner at a fixed position, but only where you decide.

Thus, you will have to insert a banner placeholder at any template in your forums, in order to show a banner. The most common places are the header and footer, but you may choose other positions in your pages.

denideni 11-30-2009 06:57 AM

But it is normal that immediately after the banner appears a "to"? I think it shouldn't be there..

y2ksw 11-30-2009 08:20 AM

Quote:

Originally Posted by denideni (Post 1922916)
But it is normal that immediately after the banner appears a "to"? I think it shouldn't be there..

"to" comes certainly from your code. Please check your template modifications and your banner code.

viper357 12-03-2009 12:43 PM

Quote:

Originally Posted by y2ksw (Post 1839744)
If you insert the flash in the image field, it works half and half. The Flash needs to have the right link inside, else it won't work.

If you prefer to use the code, you also will need to cover the flash with a transparent gif, as shown here. Then you may use a different link, but still you will have to code each Flash banner manually.
HTML Code:

<div>
    <div style="z-index: -1; position: absolute; height: 468px; width: 60px;">
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="468" height="60">
            <param name="movie" value="images/banners/yourflash.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="transparent" />
            <embed src="images/banners/yourflash.swf" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60" ></embed>
        </object>
    </div>
    <div style="z-index: 10; position: absolute; width: 468px; height: 60px;">
        <a href="http://www.domain.tld/yourlink" target="_blank"><img alt="" border="0" height="60" src="img/transparent.gif" width="468" /></a>
    </div>
</div>


Hi there, sorry if I'm a bit confused, but I need a bit of help, I have your RBS 2.0.6 running on vb 3.6.12 and have just been given a .swf banner to upload, but it's not displaying, I don't need click tracking, I just need to show the banner. Do I need to use the above code somewhere? Thanks.:)

y2ksw 12-03-2009 05:12 PM

No, you just use the HTML you normally would use (about similar this one). If your flash contains the destination link, you may use it as if it was a normal image and forget about the HTML.

viper357 12-03-2009 05:32 PM

Got it working, thanks. :up::up::up:

Selena Huynh 12-13-2009 01:12 PM

I got error

Quote:

XML Error: Invalid document end at Line 353

y2ksw 12-14-2009 12:01 PM

Quote:

Originally Posted by Selena Huynh (Post 1929866)
I got error

When? Where? How? :)

Selena Huynh 12-15-2009 06:53 AM

when I import product, it shows that error, dont know how

y2ksw 12-15-2009 01:38 PM

Quote:

Originally Posted by Selena Huynh (Post 1930985)
when I import product, it shows that error, dont know how

Maybe you need to upload the xml file to the server first, and run the installation from the server.

jonbaker 12-28-2009 02:58 AM

I am sorry if this has been asked or answered. 31 pages is a bit much to read thru..

1) is there a version of this that is tested on 3.8.4?
2) how can i get the click tracking to work for SWF or any code entered in the HTML box?
3) How can i get a URL redirect when i link to a SWF file on another server? (seems i have one SWF file that works because i uploaded it to my site. However one i am linking from another server does not link to the URL in the URL box.)

thank you.

Joe Siegler 12-28-2009 03:01 AM

It works on 3.84.

The more important question is does it work on 4.0?

jonbaker 12-28-2009 03:12 AM

that too, i am upgrading later this week!

y2ksw 12-29-2009 08:42 AM

Quote:

Originally Posted by jonbaker (Post 1939963)
I am sorry if this has been asked or answered. 31 pages is a bit much to read thru..

1) is there a version of this that is tested on 3.8.4?
2) how can i get the click tracking to work for SWF or any code entered in the HTML box?
3) How can i get a URL redirect when i link to a SWF file on another server? (seems i have one SWF file that works because i uploaded it to my site. However one i am linking from another server does not link to the URL in the URL box.)

thank you.

Quote:

Originally Posted by Joe Siegler (Post 1939967)
It works on 3.84.

The more important question is does it work on 4.0?

  1. It works on 3.8.x
  2. No way. You may create a SWF wrapper which may redirect to the click tracker though.
  3. You need a SWF wrapper in order to overwrite the URL inside a SWF.
  4. It also works on 4.0 (see here: http://www.vbulletin.it/forums/forum.php)

dangerin 12-29-2009 10:29 AM

hi y2ksw,
also in this forum i found you ih ih ih .
thanks for link at this great product.
but the fix that's added how i can upload to my server?
i've seen that has a different name.php and i've not found a repository for upgrade or fix bugs.
thank you

p.s. it works correctly with 4.0 ?

y2ksw 12-29-2009 11:06 AM

Quote:

Originally Posted by dangerin (Post 1941398)
hi y2ksw,
also in this forum i found you ih ih ih .
thanks for link at this great product.
but the fix that's added how i can upload to my server?
i've seen that has a different name.php and i've not found a repository for upgrade or fix bugs.
thank you

p.s. it works correctly with 4.0 ?

The hotfix replaces a file with the same name in your admincp folder :)

dangerin 12-29-2009 11:13 AM

thx.
i did'nt find it in the root and i've not searched around.
now i hope to use as well this product.
bye

y2ksw 12-29-2009 12:10 PM

Quote:

Originally Posted by dangerin (Post 1941429)
thx.
i did'nt find it in the root and i've not searched around.
now i hope to use as well this product.
bye

Well, the very first step is to learn to locate the various forum folders. the admincp folder is typically called admincp and is relative to your forum home, but since you are allowed to change it, nobody else than you really will ever know ;)

dangerin 12-29-2009 12:24 PM

is that i'm searching to do but ,at now , i've not reached to begin to test this product..
i must try and retry. there's somewhere a guide to this product?
probably is a stupid questione beacuse it must be very simple but at the moment i have some problem to understand..
perhaps this product is ONLY for forum ? because i was searching a product to manage banners in cms and also in all other pages of site ( if possible and if exist ).
thank newly

y2ksw 12-29-2009 01:10 PM

Quote:

Originally Posted by dangerin (Post 1941477)
is that i'm searching to do but ,at now , i've not reached to begin to test this product..
i must try and retry. there's somewhere a guide to this product?
probably is a stupid questione beacuse it must be very simple but at the moment i have some problem to understand..
perhaps this product is ONLY for forum ? because i was searching a product to manage banners in cms and also in all other pages of site ( if possible and if exist ).
thank newly

This works only for a forum of course ;)

The complete help is available both in English and Italian, inside the package.

yamahapaul 01-07-2010 03:49 PM

Can I use this to just display random pictures, jpegs etc, in my chosen location?

y2ksw 01-07-2010 06:05 PM

Quote:

Originally Posted by yamahapaul (Post 1949690)
Can I use this to just display random pictures, jpegs etc, in my chosen location?

Yes of course :)

meissenation 01-08-2010 02:45 AM

Freaking awesome that this works in vb4. I had disabled it assuming it didn't work and decided to enable it just to see. Much to my surprise it works perfectly in vb4 without any modifications necessary. I actually came here to link this thread to someone else and saw you confirmed the same already about vb4.

This is definitely one of the top 5 mods for Vbulletin.

Ocean-Wonders 01-08-2010 05:31 PM

Quote:

Originally Posted by meissenation (Post 1950084)
Freaking awesome that this works in vb4. I had disabled it assuming it didn't work and decided to enable it just to see. Much to my surprise it works perfectly in vb4 without any modifications necessary. I actually came here to link this thread to someone else and saw you confirmed the same already about vb4.

This is definitely one of the top 5 mods for Vbulletin.

Thats great it works with VB4, ive been looking all day for something that works !

Will install it in a miniute

Thanks !!

avitor 01-12-2010 10:01 PM

hi
i have folder name "files"
do i need upload the all folder?
or need change the folder name?
where to upload the files?
to the forum root ?
or specific folder ?

thanks for this hack

y2ksw 01-13-2010 10:41 AM

Quote:

Originally Posted by avitor (Post 1953958)
hi
i have folder name "files"
do i need upload the all folder?
or need change the folder name?
where to upload the files?
to the forum root ?
or specific folder ?

thanks for this hack

As stated in the help, you only will have to upload the files in the "upload" folder. Please read the help under the voice: Installation

SVTCobraLTD 01-17-2010 11:59 AM

1 Attachment(s)
For some reason this is showing up in a different language in the admincp for 3.8. Rotating Banner System is in english but the rest is in another language. See screen shot.

djbaxter 01-17-2010 04:32 PM

Quote:

Originally Posted by meissenation (Post 1950084)
Freaking awesome that this works in vb4. I had disabled it assuming it didn't work and decided to enable it just to see. Much to my surprise it works perfectly in vb4 without any modifications necessary. I actually came here to link this thread to someone else and saw you confirmed the same already about vb4.

This is definitely one of the top 5 mods for Vbulletin.

Quote:

Originally Posted by Ocean-Wonders (Post 1950538)
Thats great it works with VB4, ive been looking all day for something that works !

Will install it in a miniute

Thanks !!

It's not working for me in vB4.01. Anyone else?


All times are GMT. The time now is 04:14 AM.

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.03428 seconds
  • Memory Usage 1,845KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_html_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete