![]() |
Quote:
|
i was getting the You must be authenticated to access shorten on line 193 error but then realised i had a space after my api code, this was the problem so please check your bitly api codes.
working great thanks installed 5* |
Installed, properly inserted my bit.ly username and API key and twitter details, post does not happen. No errors, nothing. Just doesn't happen. Something wrong?
Using vB 4.0.1 w/ vbSEO. |
no Spaces in the API Key and username, all ceck more as 10x Times..... only the Errorcode :-(
|
This is great
|
Works great! Installed and tested. Neat!!! Anxious to see what it draws!
Thanks for sharing! |
Nothing is working here.. please note is it okay or not
// The array below are the ids of non-public forums, update these to be your admin forum ids or anything non-public by default if (!in_array($foruminfo[forumid], array(198,58,91,128,52,183,189,199,70,7,31,59,57,6 ,54,52))) { // http://classes.verkoyen.eu/bitly require_once 'bitly.php'; // http://classes.verkoyen.eu/twitter/ require_once 'twitter.php'; $bitly = new Bitly('<guru>', '<R_57532588ecb8603c0f14b5b75cbf>'); $shortUrl = $bitly->shorten('http://www.guru.info/vbforum/showthread.php?t='.$newpost[threadid]); $tweet = ''; if (isset($newpost['prefixid']) && $newpost['prefixid'] != '') { $tweet = $vbphrase['prefix_'.$newpost['prefixid'].'_title_plain'].' '; } $tweet .= $newpost['title'].' '.$shortUrl; $twitter = new Twitter('<guru>','<zyxjimmy>'); $twitter->updateStatus($tweet); |
Bit.ly username and Api Key - u mean wahera69@hotmail.com and R_5e3b37532588ecb8603c0f14b5b75cba
or guru and R_5e3b37532588ecb8603c0f14b5b75cb which is correct |
cagbaazee - I did the same thing you did, I left the " < " and the " > " in there. Remove those and it should work as long as you have your un, pw, and the key correct
the bitly should look like this (example) $bitly = new Bitly('testUser', 'R_hj3456hgf3hig56hi2gf6'); not $bitly = new Bitly('<testUser>', '<R_hj3456hgf3hig56hi2gf6>'); same with the twitter line |
Quote:
|
When I post a new thread I get the following error:
Quote:
|
Quote:
Quote:
Bit.ly redirects traffic to the shortened URL to your site. And bit.ly keeps stats of this, so you get stats on who is clicking through as a result of twitter. Quote:
Note tazattitude's post: Quote:
|
Quote:
It's basically that PHP provides a built-in function called json_decode. That is failing even though the JSON from bit.ly is valid. I don't know why it's failing for you guys and not anyone else. Feel free to comment out the bit.ly part of the plugin if the length of your thread URL's is below 43 chars (which is likely). The only part you'd lose as a result is stats from bit.ly about how many people clicked each link. Quote:
Can't for the life of me see why json_decode is failing as it's a built-in function. I'm on PHP 5.10 but it's not like I believe that json_decode wasn't working properly in any of the v5 branch. |
i I hv make change again but nothing is working..
here is my code please check whether it is working or not. // 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)) { // http://classes.verkoyen.eu/bitly require_once 'bitly.php'; // http://classes.verkoyen.eu/twitter/ require_once 'twitter.php'; $bitly = new Bitly('guru', 'R_5e3b37532588ecb8603c0f14b5b75cbz'); $shortUrl = $bitly->shorten('http://www.guru.info/forum/showthread.php?t='.$newpost[threadid]); $tweet = ''; if (isset($newpost['prefixid']) && $newpost['prefixid'] != '') { $tweet = $vbphrase['prefix_'.$newpost['prefixid'].'_title_plain'].' '; } $tweet .= $newpost['title'].' '.$shortUrl; $twitter = new Twitter('guru','jimmy'); $twitter->updateStatus($tweet); } ================================================= // 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)) { // http://classes.verkoyen.eu/bitly require_once 'bitly.php'; // http://classes.verkoyen.eu/twitter/ require_once 'twitter.php'; $bitly = new Bitly('wadhera69@hotmail.com', 'R_5e3b37532588ecb8603c0f14b5b75cbz'); $shortUrl = $bitly->shorten('http://www.guru.info/forum/showthread.php?t='.$newpost[threadid]); $tweet = ''; if (isset($newpost['prefixid']) && $newpost['prefixid'] != '') { $tweet = $vbphrase['prefix_'.$newpost['prefixid'].'_title_plain'].' '; } $tweet .= $newpost['title'].' '.$shortUrl; $twitter = new Twitter('guru','jimmy'); $twitter->updateStatus($tweet); } ================== please confirm what is correct code for that. what is array stand for .. it mean that i donot hv to show my forum id or thread to public.. Right Do reply |
The first one looks correct, the second on is wrong.
bit.ly expects your username (not email) and your api key. I wouldn't be posting either your API key or passwords on here btw... that's kinda silly. |
Quote:
Hence it being called $excludedForums. So if you have admin forums, or other non-public forums, you can prevent these from being tweeted. Simples. Explanation is in the instructions. |
Quote:
i know that it is fake api and fake username / password. But u didnot answer my question - "please confirm what is correct code for that. what is array stand for .. it mean that i donot hv to show my forum id or thread to public.. Right Do reply" |
Quote:
Quote:
Does this not make sense? |
@Nordinho and @Flep
I've updated the instructions so that disabling bitly and using the long version of the URL is trivial. Just set $useBitly = false; where it is currently true. |
Quote:
|
Quote:
There is no way that you have a forum in the database with the id of zero... so nothing is excluded by default. But if you do want to exclude, just build that array with the id's of the forums you want to exclude. |
Quote:
|
Quote:
/statuses/update.xml Could not authenticate you. Unauthorized on line 229 in /var/www/vhosts/.../httpdocs/forum/twitter.php #0 /var/www/vhosts/.../httpdocs/forum/twitter.php(648): Twitter->doCall('statuses/update...', Array, true) #1 /var/www/vhosts/.../httpdocs/forum/newthread.php(262) : eval()'d code(26): Twitter->updateStatus('testing twitter thread...') #2 /var/www/vhosts/.../httpdocs/forum/newthread.php(262): eval() #3 /var/www/vhosts/.../httpdocs/forum/vbseo.php(1621): require('/var/www/vhosts...') #4 {main} Can it be vbSEO ? |
Quote:
https://vborg.vbsupport.ru/showpost....3&postcount=52 Not that you have to use bit.ly, but it helps. And Google follows the bit.ly 301's so you do earn the links in my understanding. Quote:
Have you got a phpinfo link? (PM me). I won't be able to look at it right now as I'm heading out shortly but I can take a look tomorrow. |
@Flep... I've got it:
http://www.php.net/ChangeLog-4.php "Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are enabled." as of PHP 4.4.4/5.1.5." You're on a shared host aren't you? And either safe_mode is on or open_basedir is enabled. There is a hack around it: http://php.net/manual/ro/function.curl-setopt.php#71313 But it's beyond the scope of what I've done to be able to include this (I don't suffer the problem so cannot reproduce it to test any fixes). If you're comfortable hacking and do figure the solution out using that as a starting point then if you let me know what you've done I'll update the hack to take it into account. |
Quote:
'./configure' '--build=i386-redhat-linux-gnu' '--host=i386-redhat-linux-gnu' '--target=i386-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid' '--enable-yp' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack' '--with-unixODBC=shared,/usr' '--enable-memory-limit' '--enable-shmop' '--enable-calendar' '--enable-dbx' '--enable-dio' '--without-mime-magic' '--without-sqlite' '--with-libxml-dir=/usr' '--with-xml' '--with-apxs2=/usr/sbin/apxs' '--without-mysql' '--without-gd' '--without-odbc' '--disable-dom' '--disable-dba' '--without-unixODBC' '--disable-pdo' '--disable-xmlreader' '--disable-xmlwriter' '--disable-json' Do you think that is the problem ? |
Quote:
safe_mode is off. open_basedir is "no value". I'll try to find a solution, thank you for your help ! |
Quote:
Indeed, on my server json support is enabled. |
I am seeing this error:
Fatal error: Call to undefined function curl_init() in bitly.php on line 138 ANy Ideas of where to start looking? |
oh... verry hard.... i have no delete the < > in Username etc....
Now.... it WORK ! |
Quote:
Quote:
Quote:
Quote:
|
I'm using vBSEO, 4.0.1 and here is what I have set up, receiving a 500 Internal Error, but thread is being posted. I have the two files in my forum root (which is www.uscoininfo.com). edit: using IIS6. Ideas?
Hook Location: newthread_post_complete // 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 you are having trouble getting bitly URL shortening to work... disable it! $useBitly = true; if (!in_array($foruminfo[forumid], $excludedForums)) { $shortUrl = 'http://www.uscoininfo.com/showthread.php?t='.$newpost[threadid]; if ($useBitly) { // http://classes.verkoyen.eu/bitly require_once 'bitly.php'; $bitly = new Bitly('uscoininfo', 'mykey'); $shortUrl = $bitly->shorten($shortUrl); } $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('uscoininfo','mypassword'); $twitter->updateStatus($tweet); } |
One big REQUEST...
Is it possible to implement into this addon so that once we install it, we can have the option to tweet all old threads/posts etc.. onto twitter.com that were made before this installation? AND.. having the option to delay each tweet so that the site doesn't slow down or anything. Also it seems it is not working for me and I put in all the stuff in the php code... I made a test thread http://www.brotherhoodofgamers.com/g...d.html#post696 and it doesnt show up on my twitter at: http://twitter.com/bogbouncer1 What I edited: bit.ly username and inserted API ( I did not include the < > anywhere, I removed those as well as the instructions say to) I put in my twitter username and pass, changed yourforumsdomain.com to www.brotherhoodofgamers.com Did I miss anything? I also uploaded files to root from the author's post, NOT from the 2 links it says to, since I believe it says I can just download it from here. correct me if I'm wrong or missed anything, thanks |
Quote:
Quote:
[quote=Nordinho;1969151It seems to be enabled on mine. Maybe I have an outdated version?[/quote] If it's working, wrap it in a try {} catch {} and silence the beast. ;) Perhaps not the most scientific approach but the library and twitter itself aren't my speciality. Quote:
Can you check that JSON is enabled in PHP and that you have the CURL extension installed. Quote:
As for the add-on. There's little value in going back over old threads, for starters twitter rate limits the posting. And even if that didn't the point is to drive search engines and people to fresh content, the rest they discover as time goes on. It would be nice to wrap it up as a vbulletin product so that all of this config that seems to be causing people trouble could be put into a HTML form where people seem fine with such things... and perhaps to perform tests for CURL and JSON during install to validate that their server meet the pre-reqs for the libraries. Issue is, I have no experience in building vb products... I just hack my forums and when I have a small gem that helps I share it with the world. If anyone else wants to wrap it up in a lovely product, then I'm happy to make you a co-author thingy and to publish it. |
Quote:
Great Mod - Installed and Voted! |
This is sad... it won't work... I'm pretty sure I did everything it says..
Anyone? |
Quote:
Do you not get any errors at all visible? |
I dont have cURL installed, doh. Will install tomorrow and let you know if that solves the 500 internal errors.
|
My problem (500 Internal Error)
Solved Issue: cURL not installed, Windows Server 2003 / IIS6 Thanks for the info buro! |
Quote:
|
All times are GMT. The time now is 01:02 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|