Sharingzone.net Vbulletin plugin

Status
Not open for further replies.

SoulEater

Active Member
404
2009
1
0
Create a php page named add.php and insert your sharingzone php code in it and upload the file to the forum root.

Login to admincp
in to products and plugins and add a new plugin

product: Vbulletin

hook:global_start

execution time:5

code:

Code:
ob_start();
   include('add.php');
   $wsadd = ob_get_contents();
ob_end_clean();

activate plugin: yes

put
$wsadd
in the template where you want to show adds.. The best place is in navbar template at the end so that it is visible in every page for maximum revenue.

Thats it..
 
19 comments
Thanks dude, will give it a shot

Update: I am getting errors. Can't open add.php and other messed up when i placed the code in header.
 
Try to open your php page directly, ie. www.domain.com/add.php
if its loading fine, then let me know otherwise its problem in your hosting or in the code. I am still testing the php code on different hosting, coz it was loading very slow in my current hosting.
 
Hey guys, and anyone with a forum, try using one of the new "Search Box" codes, or the new Livebanner code from Sharingzone members area.

Will be adding larger live banners for vbulletin headers shortly.
 
Try to open your php page directly, ie. www.domain.com/add.php
if its loading fine, then let me know otherwise its problem in your hosting or in the code. I am still testing the php code on different hosting, coz it was loading very slow in my current hosting.


Ya SouldEater i am getting the following error, when i open it as http://megadlz.com/add.php :

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/megadlzc/public_html/add.php on line 1

Warning: include(http://www.sharingzone.net/random.php?id=megafree) [function.include]: failed to open stream: no suitable wrapper could be found in /home/megadlzc/public_html/add.php on line 1

Warning: include() [function.include]: Failed opening 'http://www.sharingzone.net/random.php?id=megafree' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/megadlzc/public_html/add.php on line 1

Any Help?
 
the ads banner is horrid and ugly sorry to say

why not use one like wjunction its much nicer

clarksta, what ad banner are you referring to? The 120 x 90 random buttons?

I believe the concept behind them is to display software, games boxpics, and also movie boxpic/posters to give a visual effect for each download, plus, it displays them at random, and the banner by Souleater is just many instances of the random images (display many of them in a row).

"Horrid and ugly" is a moot point. They are supposed to sell. :P
 
In Forums we can also use IFRAME code
if you want to create a banner then just add 7 or 8 IFRAMES in a Table : like this one
728x banner
PHP:
<table border="0" width="728" cellspacing="1" cellpadding="0">
                <tr>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
                    <td><!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME></td>
               </tr>
            </table>

and single
PHP:
<!-- BEGIN SHARINGZONE TAG - 90 x 120 - DO NOT MODIFY -->
<IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=90 HEIGHT=120 SRC="http://www.sharingzone.net/button.php?id=xxxxxxx"></IFRAME>
xxxxxxx is your Sharingzone ID
 
Status
Not open for further replies.
Back
Top