vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vBDigger (https://vborg.vbsupport.ru/showthread.php?t=119678)

Eric 06-25-2006 10:00 PM

vBDigger
 
vBdigger is now officially continued as 'vBsociable' :)

https://vborg.vbsupport.ru/showthread.php?t=149449



Hello everyone,

This will be my second 'mod' that I release for vBulletin. I was browsing the request forum and came across this thread, so I thought I'd make it. :)

It's fairly simple right now, if I can find the time.. I may do alot more with it.

Updated to 1.0.1 - See "Upgrading" below

What's it do?
It will add buttons to each post in a thread, allowing the user to submit the topic to digg or del.icio.us. It can be enabled/disabled through the admincp at anytime, along with showing digg or del.icio.us.

For those who may not know what digg or del.icio.us is, you may find out more about them with the following links:
www.digg.com/about
www.del.icio.us/about

Installation

1.) Import product-vbdigger.xml
2.) Upload digg.png & delicious.png to your images/buttons/ directory.
3.) Edit postbit(_legacy)

FIND:
Code:

                        <if condition="$show['quickreply'] AND !$show['threadedmode']">
                                <a href="$post[replylink]" rel="nofollow" id="qr_$post[postid]" onclick="return false"><img src="$stylevar[imgdir_button]/quickreply.gif" alt="$vbphrase[quick_reply_to_this_message]" border="0" /></a>
                        </if>

ADD AFTER:
Code:

            <if condition="$vboptions['vbdigger_enabled'] AND THIS_SCRIPT != 'private'">
                <if condition="$vboptions['vbdigger_digg']">
                  <a href="http://digg.com/submit?phase=2&url=$vboptions[bburl]/showthread.php?t=$post[threadid]&title=$thread[title]" target="_blank"><img src="$stylevar[imgdir_button]/digg.png" alt="$vbphrase[submit_thread_to_digg]" title="$vbphrase[submit_thread_to_digg]" border="0" /></a>
                </if>
                <if condition="$vboptions['vbdigger_delicious']">
                  <a href="http://del.icio.us/post?url=$vboptions[bburl]/showthread.php?t=$post[threadid]&title=$thread[title]" target="_blank"><img src="$stylevar[imgdir_button]/delicious.png" alt="$vbphrase[submit_thread_to_delicious]" title="$vbphrase[submit_thread_to_delicious]" border="0" /></a>
                </if>
            </if>

Upgrading

To 1.0.1:

1.) Re-import product-vbdigger.xml with "Allow Overwrite" set to yes.
(Not actually necc. just updated version number)

2.) Edit postbit(_legacy)

FIND:
-----
Code:

            <if condition="$vboptions['vbdigger_enabled']">
REPLACE WITH:
-------------
Code:

            <if condition="$vboptions['vbdigger_enabled'] AND THIS_SCRIPT != 'private'">
Changelog
* Removed Icons from showing in pm's


It can be accessed in admincp under:
Vbulletin Options > Thread Display Options (showthread)

And that's it, fairly simple.

Enjoy.

Zia 06-26-2006 08:06 AM

hmm interesting thing..alos gonna to use it...:)

ahm 1st post man.. :p

Mudvayne 06-26-2006 08:21 AM

w00t.. 1st install ;)

Blaine0002 06-26-2006 10:22 PM

great! thanks.

puertoblack2003 06-26-2006 11:16 PM

hello,

i curious can there be a live site that has this to have an idea what it is i'm kinda confused of what vb digger is thanks.

puertoblack2003

Eric 06-27-2006 08:58 PM

Quote:

Originally Posted by puertoblack2003
hello,

i curious can there be a live site that has this to have an idea what it is i'm kinda confused of what vb digger is thanks.

puertoblack2003

I'll see what I can do ;) If nothing else, I'll get a few more screenshots.

qxh 06-27-2006 09:00 PM

You rule!!!!!

o0Hubba0o 06-27-2006 09:59 PM

Quote:

Originally Posted by SecondV
I'll see what I can do ;) If nothing else, I'll get a few more screenshots.

Maybe in the "what's it do" paragraph clarify what "digg or del.icio.us." are for those that don't know, might help people understand what this mod is for.

Eric 06-28-2006 01:18 AM

Quote:

Originally Posted by o0Hubba0o
Maybe in the "what's it do" paragraph clarify what "digg or del.icio.us." are for those that don't know, might help people understand what this mod is for.

I've included links to both of their about pages, should give a pretty good idea ;) I've also added another screenshot.

VBUsers 06-28-2006 01:49 AM

will this work for 3.6 beta 3?

GetGamer.com 06-28-2006 01:55 AM

I don't see why you have it digging individual replies. It seems to make much more sense to only digg/bookmark the initial topic.

ImportPassion 06-28-2006 03:18 AM

Quote:

Originally Posted by GetGamer.com
I don't see why you have it digging individual replies. It seems to make much more sense to only digg/bookmark the initial topic.

i was just about to post the exact same thing. :banana:

Eric 06-28-2006 04:33 AM

Quote:

Originally Posted by GetGamer.com
I don't see why you have it digging individual replies. It seems to make much more sense to only digg/bookmark the initial topic.

It does only digg/bookmark the initial topic, unless you're talking about it adding the buttons on every post... which, again, I made this based on a request (and they wanted it on every post). When I get the time, I plan on doing more with it ;)

Quote:

Originally Posted by AR Forums
will this work for 3.6 beta 3?

Am not sure, will get back to you when I get the chance to test it...

Snake 06-29-2006 05:56 PM

Awesome! I've been waiting for something like this. Thanks! :D

Blaine0002 06-30-2006 03:05 AM

Quote:

Originally Posted by SecondV
It does only digg/bookmark the initial topic, unless you're talking about it adding the buttons on every post... which, again, I made this based on a request (and they wanted it on every post). When I get the time, I plan on doing more with it ;)


Am not sure, will get back to you when I get the chance to test it...

yes it works, am running live on gentendo.com

Eric 06-30-2006 01:11 PM

Quote:

Originally Posted by Blaine0002
yes it works, am running live on gentendo.com

Oh nice! Thank you :)

Phrost 07-21-2006 09:42 PM

Up and running live on my 'big board' (Bullshido.net).

Eric 07-23-2006 07:41 AM

Quote:

Originally Posted by Phrost
Up and running live on my 'big board' (Bullshido.net).

Cool :) Nice forum, btw ;)


I hope to have a new version soon, when I get some free time. :D

guvner 07-24-2006 01:22 AM

Working great - thanks for that!

Just a small problem I need to solve which is really a template issue - a few of my members are concerned that their PM reply page seems to be picking up the code from the postbit_legacy template and adding a diggit option next to the "forward" and "reply" buttons. Now I know that it won't "digg" the PM and I have told them that - but they are worried about it :tired:

I had a look at at the pm_viewpm template and couldn't figure out how it was being picked up (I'm not a coder )- any ideas how to remove it from the PM reply area completely or does only affect my templates?

Thanks,
Mike :)

Eric 07-24-2006 04:54 AM

Quote:

Originally Posted by guvner
Working great - thanks for that!

Just a small problem I need to solve which is really a template issue - a few of my members are concerned that their PM reply page seems to be picking up the code from the postbit_legacy template and adding a diggit option next to the "forward" and "reply" buttons. Now I know that it won't "digg" the PM and I have told them that - but they are worried about it :tired:

I had a look at at the pm_viewpm template and couldn't figure out how it was being picked up (I'm not a coder )- any ideas how to remove it from the PM reply area completely or does only affect my templates?

Thanks,
Mike :)

Ahh, completely forgot PM's, well - simple really :) I'll have a new version out shortly.

guvner 07-24-2006 05:45 AM

Excellent - the update fixed it - working like a charm!

Thank you :)

Eric 07-25-2006 04:27 AM

Quote:

Originally Posted by guvner
Excellent - the update fixed it - working like a charm!

Thank you :)

No problem :)

arob42 08-02-2006 04:02 AM

How exactly does this work? For example, with digg, will the first person to click digg cause the thread link to be submitted to www.digg.com and then subsequent clicks on digg cause the digg count to increase? Doesn't the first person need a login account with digg before the link is submitted? Also, won't the initial person need to provide a summary of the topic? Does the first click on digg cause a digg login page to appear where the user can register/login and provide all this information?

michaelsilvia 08-02-2006 05:25 AM

Quote:

How exactly does this work? For example, with digg, will the first person to click digg cause the thread link to be submitted to www.digg.com and then subsequent clicks on digg cause the digg count to increase? Doesn't the first person need a login account with digg before the link is submitted? Also, won't the initial person need to provide a summary of the topic? Does the first click on digg cause a digg login page to appear where the user can register/login and provide all this information?
I had the same questions!

What exactly happens when someone clicks on the dig button? Is the article linked back to the owner's forum?

michaelsilvia 08-02-2006 06:02 AM

I installed it and tested it out on digg.com. It is very cool and works great.

When submitting an article you will have to have a membership at digg.com and have to type up a short description. When your article is submitted it links right back to your forum. If you have some good content I recommend using this as it can only help your traffic.

Thanks for the great hack! I will try the del.icio.us. part next.

teknoledge 08-13-2006 04:25 PM

I know this will sound funny after everyone installed this, but it doesnt work for me LOL. I did everything as said in instructions but the icons just doesnt show up.

www.smartphonestalk.com

Torque 08-14-2006 07:12 PM

Quote:

Originally Posted by michaelsilvia
I installed it and tested it out on digg.com. It is very cool and works great.

When submitting an article you will have to have a membership at digg.com and have to type up a short description. When your article is submitted it links right back to your forum. If you have some good content I recommend using this as it can only help your traffic.

Thanks for the great hack! I will try the del.icio.us. part next.

What happens with the second click? I'm guessing login then it casts a vote?

yessir 08-16-2006 11:11 PM

3.6 compatible? TIA.

Eric 08-17-2006 12:58 AM

Quote:

Originally Posted by teknoledge
I know this will sound funny after everyone installed this, but it doesnt work for me LOL. I did everything as said in instructions but the icons just doesnt show up.

www.smartphonestalk.com

hmm.. all I can tell you is to go over everything again to be sure you didn't skip anything.

Quote:

Originally Posted by yessir
3.6 compatible? TIA.

Yes.

coconutx 08-21-2006 04:17 PM

Hey i have vb seo 3.0.0 rc3 installed. Im using vb 3.6.0.

Its all working fine but when i click on the del.icio.us link the url it gives in the header is a

showthread.php?id= one when ive got vb seo set so that they are all html files like thread-title.html.

Anyway i can make it go to the html one instead ?

Eric 08-31-2006 03:48 AM

Quote:

Originally Posted by coconutx
Hey i have vb seo 3.0.0 rc3 installed. Im using vb 3.6.0.

Its all working fine but when i click on the del.icio.us link the url it gives in the header is a

showthread.php?id= one when ive got vb seo set so that they are all html files like thread-title.html.

Anyway i can make it go to the html one instead ?

I do not have, or have ever used vBseo.. so do not know what to tell you.

criscokid 09-05-2006 04:07 PM

Quote:

Originally Posted by o0Hubba0o
Maybe in the "what's it do" paragraph clarify what "digg or del.icio.us." are for those that don't know, might help people understand what this mod is for.

What about some information for end users of the forums that this mod gets applied to? At the moment it appears that the mod writer and forum owners who install this assume that everyone knows what digg and del.icio.us are.

I've seen a vB site that uses a similar mod but they have a Furl and Technoratibutton as well.

99SIVTEC 09-06-2006 11:55 PM

<a href="https://vborg.vbsupport.ru/showthread.php?p=1069705#post1069705" target="_blank">https://vborg.vbsupport.ru/showt...05#post1069705</a>

Above I added an option for owners of automotive web sites to submit threads to AutomotiveArena.com (similar to digg for car related content)

Eric 09-07-2006 02:20 AM

Quote:

Originally Posted by criscokid
What about some information for end users of the forums that this mod gets applied to? At the moment it appears that the mod writer and forum owners who install this assume that everyone knows what digg and del.icio.us are.

I've seen a vB site that uses a similar mod but they have a Furl and Technoratibutton as well.

I'll work on that.

criscokid 11-12-2006 09:27 PM

Quote:

Originally Posted by SecondV (Post 1069771)
I'll work on that.

Hi SecondV,

Any idea when you'll have a version of this mod that includes Technorati and Furl? Another new social bookmarking site is Ma.gnolia

criscokid 12-05-2006 11:21 AM

To help move things along here's some more social bookmarking sites along with the relevant URLs to use:

Spurl
http://www.spurl.net/spurl.php?url=URLgoeshere

Blink
http://www.blinklist.com/index.php?A...rl=URLgoeshere

Furl
http://www.furl.net/storeIt.jsp?u=URLgoeshere

Simpy
http://simpy.com/simpy/LinkAdd.do?href=URLgoeshere

Yahoo! MyWeb
http://myweb.yahoo.com/myresults/joi...252URLgoeshere

Google
http://www.google.com/ig/add?feedurl=URLgoeshere

ijob 01-21-2007 11:46 AM

I would like to add technorati and furl, plaese help.

Eric 01-21-2007 12:53 PM

My time has been limited for a while now. I can not give a specific date, but there will be a new version. I'm working on it in my spare time.

alyster4k 01-24-2007 09:07 PM

I've seen a vB forum somewhere that someone already added furl and technorati. I'll have to mess with that myself because I want to add these too when I add this mod.

Blindchild02 01-25-2007 06:29 PM

is there a way to make this forum specific? I only want it in my news forum.


All times are GMT. The time now is 06:18 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.01373 seconds
  • Memory Usage 1,839KB
  • 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
  • (4)bbcode_code_printable
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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