vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Miscellaneous Hacks - vBulletin to Twitter, live tweets of new threads (https://vborg.vbsupport.ru/showthread.php?t=234288)

Vanjezi 02-25-2010 05:09 PM

Respect! 5 stars, works just great :)

Mosh 02-25-2010 06:44 PM

Quote:

Originally Posted by Videx (Post 1991331)
Well, I finally got around to hacking the heck out of it and here's my version that uses is.gd instead of bit.ly (which I could never get to work). A shame there isn't some way to test this besides LIVE.
PHP Code:

// The array below are the ids of non-public forums, update these to be your admin forum ids or anything non-public by default
$excludedForums = array(0);

if (!
in_array($foruminfo[forumid], $excludedForums)) {
    
$myUrl 'http://www.myforum.com/forum/showthread.php?t='.$newpost[threadid];
    
    
$cURL_resource curl_init();
    
curl_setopt($cURL_resourceCURLOPT_URL'http://is.gd/api.php?longurl=' .  $myUrl);
    
curl_setopt($cURL_resourceCURLOPT_RETURNTRANSFER1);
    
$shortUrl curl_exec($cURL_resource); 
    
curl_close($cURL_resource);
        
    
$tweet '';
    if (isset(
$newpost['prefixid']) && $newpost['prefixid'] != '') {
        
$tweet $vbphrase['prefix_'.$newpost['prefixid'].'_title_plain'].' ';
    }
    
$tweet .= $newpost['title'].' '.$shortUrl;

    
// http://classes.verkoyen.eu/twitter/
    
require_once 'twitter.php';
    
$twitter = new Twitter('MyTwitterName','MyTwitterPassword');
    
$twitter->updateStatus($tweet);



It is great you could get it to work with is.gd using code you lifted directly out of my vBulletin2Twitter hack, so please do not claim credit for something you did not code.

Videx 02-25-2010 07:45 PM

I'm not a coder, but after hacking away with these two mods I finally got one that works for me. I made no claim to credit for anything, nor am I suggesting anyone should use mine.

Fact is, if you can fix yours I prefer the add-on approach to doing this tedious manual code mangling, so I'll probably try it again. Especially if you add some bells and whistles like forum names and summaries.

rrudeboy 03-03-2010 08:01 PM

no error.... and no tweet, anywhere (log) i can trouble shoot this ?

take that back, i replied on the forum and got this error:

Quote:

Parse error: syntax error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /hsphere/local/home/roeiboot/totalsmartphone.net/forum/bitly.php on line 34
<strike>thought the plugin would only work on NEW posts, not replies..</strike>

i had setup the incorrect Hook Location, fixed that but still get the same error..

rrudeboy 03-04-2010 11:00 AM

this thread is no longer active ? :confused:

ikastara 03-05-2010 02:40 AM

works fine !
thanks you very much!
loving this :)

Crow 03-05-2010 07:10 PM

5 stars...

GafferSports 03-07-2010 03:05 PM

Superb!

Working for me after I double checked my edits in the PHP - top work

necie_r 03-07-2010 06:16 PM

Very easy instructions. I downloaded, installed and configured it in minutes! And then I tested it. Works like a breeze! :D

GafferSports 03-07-2010 07:24 PM

One think I would like to see is this being compatible with RSS Feed threads, which it does not seem to be able to do at the moment


All times are GMT. The time now is 11:40 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.01626 seconds
  • Memory Usage 1,749KB
  • 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_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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