The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBsociable Details »» | |||||||||||||||||||||||||
What is this!?
This modification is a continuation of my vBdigger hack. This hack displays buttons in a new thread tools menu "Submit Tools" that will allow your users to submit a thread to many of the popular social sites such as digg, del.icio.us, reddit, etc. Current Version 1.0.2 Current Features: Can submit to the following sites:
It allows to disable this menu for certain forums, turn it on/off, open the links in a new window or not. Features flagged for future version(s):
Will this work on x.x.x ?? Unless otherwise stated, this will work on all 3.6 versions. Sounds cool. How do I install?
UPGRADING 1.0.1 to 1.0.2 - Upload images/buttons/facebook.png to your images/buttons directory - OR - download the attached facebook image and upload it; then.. - Re-import the product file (which is attached), product-vBsociable.xml - with "Allow overwrite" set to "yes" 1.0.0 to 1.0.1 - Just re-import the product file (which is attached), product-vBsociable.xml - with "Allow overwrite" set to "yes" That's it! Enjoy! Changelog 1.0.2 - June 20, 2007 - Added Facebook. 1.0.1 - June 11, 2007 - Fixed the URL for Stumbleupon. 1.0.0 - June 11, 2007 - Initial release. If you use this modification, please mark as >> INSTALLED <<, TY! Show Your Support
|
Comments |
#52
|
|||
|
|||
I am having difficulty installing this product in our 3.58 test forum. When I import the product it generates this error in the vBulletin product manager:
Database error in vBulletin 3.5.8: Invalid SQL: ### INSERT QUERY GENERATED BY fetch_query_sql() ### INSERT INTO plugin (`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`) VALUES ('1', '5', 'vBSociable', 'showthread_complete', '// ################################################## ###############################\r\n// vBsociable\r\n$vBsociable = array(\r\n \'del.icio.us\' => array(\r\n \'img\' => \'delicious.png\',\r\n \'url\' => \'http://del.icio.us/post?url=LINK&title=TITLE\'\r\n ),\r\n \'Digg\' => array(\r\n \'img\' => \'digg.png\',\r\n \'url\' => \'http://digg.com/submit?phase=2&url=LINK&title=TITLE\'\r\n ),\r\n \'Facebook\' => array(\r\n \'img\' => \'facebook.png\',\r\n \'url\' => \'http://www.facebook.com/share.php?u=LINK\'\r\n ),\r\n \'feedmelinks\' => array(\r\n \'img\' => \'feedmelinks.png\',\r\n \'url\' => \'http://feedmelinks.com/categorize?from=toolbar&op=submit&url=LINK &name=TITLE\'\r\n ),\r\n \'Furl\' => array(\r\n \'img\' => \'furl.png\',\r\n \'url\' => \'http://www.furl.net/storeIt.jsp?u=LINK&t=TITLE\'\r\n ),\r\n \'Ma.gnolia\' => array(\r\n \'img\' => \'magnolia.png\',\r\n \'url\' => \'http://ma.gnolia.com/bookmarklet/add?url=LINK&title=TITLE\'\r\n ),\r\n \'NewsVine\' => array(\r\n \'img\' => \'newsvine.png\',\r\n \'url\' => \'http://www.newsvine.com/_tools/seed&save?u=LINK&h=TITLE\'\r\n ),\r\n \'Netscape\' => array(\r\n \'img\' => \'netscape.gif\',\r\n \'url\' => \'http://www.netscape.com/submit/?U=LINK&T=TITLE\'\r\n ),\r\n \'Reddit\' => array(\r\n \'img\' => \'reddit.png\',\r\n \'url\' => \'http://reddit.com/submit?url=LINK&title=TITLE\'\r\n ),\r\n \'Slashdot\' => array(\r\n \'img\' => \'slashdot.png\',\r\n \'url\' => \'http://slashdot.org/bookmark.pl?title=TITLE&url=LINK\'\r\n ),\r\n \'SphereIt\' => array(\r\n \'img\' => \'sphere.png\',\r\n \'url\' => \'http://www.sphere.com/search?q=sphereit:LINK&title=TITLE\'\r\n ),\r\n \'Spurl\' => array(\r\n \'img\' => \'spurl.png\',\r\n \'url\' => \'http://www.spurl.net/spurl.php?url=LINK&title=TITLE\'\r\n ),\r\n \'StumbleUpon\' => array(\r\n \'img\' => \'stumbleupon.png\',\r\n \'url\' => \'http://www.stumbleupon.com/submit?url=LINK&title=TITLE\'\r\n ),\r\n \'Technorati\' => array(\r\n \'img\' => \'technorati.png\',\r\n \'url\' => \'http://technorati.com/faves?add=LINK\'\r\n ),\r\n \'YahooMyWeb\' => array(\r\n \'img\' => \'yahoomyweb.png\',\r\n \'url\' => \'http://myweb2.search.yahoo.com/myresults/bookmarklet?u=LINK&=TITLE\'\r\n )\r\n);\r\n\r\nif ($vbulletin->options[\'vBsociable_enabled\'])\r\n{\r\n // Are we wanting to exclude certain forums?\r\n if (!empty($vbulletin->options[\'vBsociable_excluded\']))\r\n {\r\n if (strpos($vbulletin->options[\'vBsociable_excluded\'], \',\') === false)\r\n {\r\n $excluded_forums = array($vbulletin->options[\'vBsociable_excluded\']);\r\n }\r\n else\r\n {\r\n $excluded_forums = explode(\',\', $vbulletin->options[\'vBsociable_excluded\']);\r\n }\r\n }\r\n else\r\n {\r\n $excluded_forums = array();\r\n }\r\n\r\n $excluded = false;\r\n\r\n foreach ($excluded_forums AS $excluded_forum)\r\n {\r\n if ($thread[\'forumid\'] == $excluded_forum)\r\n {\r\n $excluded = true;\r\n break;\r\n }\r\n }\r\n unset($excluded_forums);\r\n\r\n // Let\'s go..\r\n if ($excluded)\r\n {\r\n $show[\'vBsociable\'] = false;\r\n }\r\n else\r\n {\r\n $show[\'vBsociable\'] = true;\r\n $threadurl = urlencode($vbulletin->options[\'bburl\'] . \"/showthread.php?t=$thread[threadid]\");\r\n $threadtitle = urlencode($thread[\'title\']);\r\n\r\n foreach ($vBsociable AS $name => $values)\r\n {\r\n $vBsociable_img = $values[\'img\'];\r\n $vBsociable_phrase = $vbphrase[\'vBsociable_\' . strtolower(str_replace(\'.\', \'\', $name))];\r\n $vBsociable_url = str_replace(array(\r\n \'LINK\',\r\n \'TITLE\'\r\n ), \r\n array(\r\n $threadurl,\r\n $threadtitle\r\n ), $values[\'url\']);\r\n eval(\'$vBsociablebits .= \"\' . fetch_template(\'vBsociable_bits\') . \'\";\');\r\n }\r\n }\r\n}\r\nelse\r\n{\r\n $show[\'vBsociable\'] = false;\r\n}\r\nunset($vBsociable);\r\n// ################################################## ###############################', 'vBsociable'); MySQL Error : Unknown column 'executionorder' in 'field list' Error Number : 1054 Date : Monday, August 27th 2007 @ 03:54:18 PM Script : http://www.velocity.to/forums/admincp/plugin.php ....... Then the product seems to partially install (it doesn't work but shows up in the installed products). what can I do to solve it? Thanks for your help. |
#53
|
|||
|
|||
worked on 3.8 at booze britain
I also added a couple of others to the list. Is there any way of greating a keywords tag, on top of the LINK, and TITLE ? |
#54
|
||||
|
||||
I've been very busy the last couple months. I'll see what I can do about getting another version out.
Quote:
Quote:
|
#55
|
|||
|
|||
Quote:
When you submit the content of the post to digg etc, does it inclue the link back to your forum to increase traffic ? Is that the purpose? I've never "dugg" anything so not entirely sure how the process works. |
#56
|
|||
|
|||
Quote:
In the meantime - can sites be removed via the xml file? |
#57
|
||||
|
||||
Is it possible to be able to post into another forum ? Like having a custom site...
i.e : post in my own forum and would post it here (vb.org) (provided they are both members) and if selected in the submit tools. Thanks |
#58
|
|||
|
|||
.
Outstanding. Thanks SecondV. InStalled. . |
#59
|
||||
|
||||
Since I will be starting a new job soon, I will not have any time to work on my modifications.
Therefore, anyone who wants to take my modification(s) and build/improve them further, are free to do so. All I ask is you give proper credit. |
#60
|
|||
|
|||
Very good thanks
|
#61
|
|||
|
|||
If you're still working on this at all, it would be nice to be able to apply this to the vBulletin Blog posts as well.
Cheers! |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|