View Full Version : Integration with vBulletin - vBTwitter
King Kovifor
02-08-2009, 10:00 PM
Description
This modification adds basic Twitter integration to vBulletin. Once a user defines their Twitter username & password within their vB Options (User CP -> Edit Options), the Tweet This X links will appear.
It automatically adds a tweet to their account with the default text of "Check this out! " (which can be edited editing the "twitter_checkout" phrase) and uses your forum URL with either tp or tt.php as the link. These redirect to the thread / post that was tweeted.
Installation
Upload files in the /upload/ folder of the .zip into the directories as is.
Install product file.
Register an OAuth Application here (http://twitter.com/oauth_clients), using:
Application Name: Your Site!
Description: Site Integration into Twitter.
(I request this one not be changed!) Application Website: https://vborg.vbsupport.ru/showthread.php?t=204694
Website: Your URL!
Application Type: Browser
(change url) Callback URL: http://www.yoururl.com/twitter_auth.php
Default Access type: Read & Write
Click Install on vB.org
Tell Your users.
Enjoy
Upgrading to v1.0.4
Upload all files, overwrite everything.
Install product file.
Register an OAuth Application here (http://twitter.com/oauth_clients), using:
Application Name: Your Site!
Description: Site Integration into Twitter.
(I request this one not be changed!) Application Website: https://vborg.vbsupport.ru/showthread.php?t=204694
Website: Your URL!
Application Type: Browser
(change url) Callback URL: http://www.yoururl.com/twitter_auth.php
Default Access type: Read & Write
Gain and copy the Consumer Key & Secret into vBulletin Options.
Upgrading to v1.0.3 or before.
Upload all files, overwrite everything.
install product file.
Remove template edits. For the record, they are here:
Open the postbit or postbit_legacy template (depending on what you use). Find:
<if condition="$show['postcount']">#<a href="showpost.php?$session[sessionurl]p=$post[postid]&postcount=$post[postcount]" target="new" rel="nofollow" id="postcount$post[postid]" name="$post[postcount]"><strong>$post[postcount]</strong></a></if>
Add before that:
<if condition="$post['twitter_username']"><a href="tweet.php?do=post&id=$post[postid]&c=$post[postid]">Tweet this post!</a></if>
Open the SHOWTHREAD template.
Find:
<if condition="$show['addpoll']">
<tr>
<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/addpoll.gif" alt="$vbphrase[add_a_poll]" /> <a href="poll.php?$session[sessionurl]do=newpoll&t=$threadinfo[threadid]">$vbphrase[add_a_poll_to_this_thread]</a></td>
</tr>
</if>
Add After:
<if condition="$vbulletin->userinfo['twitter_username']">
<tr>
<td class="vbmenu_option">
<a href="tweet.php?do=thread&id=$threadinfo[threadid]">Tweet This Thread!</a>
</td>
</tr>
</if>
Find:
<if condition="!$show['search_engine']">
<div><img class="inlineimg" src="$stylevar[imgdir_button]/printer.gif" alt="$vbphrase[show_printable_version]" vspace="1" /> <a href="printthread.php?$session[sessionurl]t=$threadid" rel="nofollow">$vbphrase[show_printable_version]</a></div>
<div><img class="inlineimg" src="$stylevar[imgdir_button]/sendtofriend.gif" alt="$vbphrase[email_this_page]" vspace="1" /> <a href="sendmessage.php?$session[sessionurl]do=sendtofriend&t=$threadid" rel="nofollow">$vbphrase[email_this_page]</a></div>
</if>
Add After:
<if condition="$vbulletin->userinfo['twitter_username']"><a href="tweet.php?do=thread&id=$threadinfo[threadid]">Tweet This Thread!</a></if>
Requirements
THIS MODIFICATION REQUIRES PHP 5 DUE TO THE CLASS THAT IS USED!
PHP'S CURL EXTENSION IS ALSO USED! THE API CALLS ARE COMPLETELY DEPENDENT ON THEM!
This modification should work on vBulletin v3.5+, but was only tested on a vB 3.8 install.
Using the "tp.php" switch added in v1.0.2
With the release of v1.0.2, a switch between showpost.php?p=ID&postcount=COUNT and showthread.php?p=ID#postID has been added. Using it is simple, but requires a code edit (Note: This is a SUPPORTED code edit!). Open up tp.php and find this line:
define('SHOWPOST', true);
Change that line to this:
define('SHOWPOST', false);
This will automatically trigger the change any time it is loaded. This works retroactively and any links will automatically use the new settings once changed!
King Kovifor
02-08-2009, 11:52 PM
Change Log
v1.0.0 - February 8, 2009
Initial Release
v1.0.1 - February 16, 2009
Bug Fixes
Ability to uninstall (I fixed the SQL query)
Added missing ; in the Tweet this Thread!
Fixed bug within the Twitter class that blocked authentication.
Completely phrased.
New vBTwitter source parameter, any tweets show as coming from this mod (instead of web).
Removed extra query on updating options.
mcrypt integration (encrypted password)
Automatic Template Edits!
Image in Tweet this Thread!
v1.0.2 - February 21, 2009
Bug Fixes
Multiple "Tweet this Post" links.
Mcrypt decryption errors.
Switch for tp.php to redirect to showthread.php or showpost.php.
v1.0.3 - March 4, 2009
Crucial Bug Fix: New Verification Method!
v1.0.4 - July 14, 2009
OAuth integration!
Shows links to all (including guests for now).
Requires setup.
Floris
02-08-2009, 11:58 PM
Thanks @KingKovifor (http://twitter.com/KingKovifor), via @Floris (http://twitter.com/Floris)
LOL
Dream
02-09-2009, 12:04 AM
Nice, just worried about storing twitter passwords... I take it they are not md5ed so to use them on twitter.
I think I'd rather use a popup asking username and password.
King Kovifor
02-09-2009, 12:16 AM
Thanks @KingKovifor (http://twitter.com/KingKovifor), via @Floris (http://twitter.com/Floris)
LOL
LOL. You got to hear about my development woes!
Nice, just worried about storing twitter passwords... I take it they are not md5ed so to use them on twitter.
I think I'd rather use a popup asking username and password.
I was worried about that too but I need to authenticate and don't know where or how to authenticate without storing it. Pop up would work, but I am thinking of ease of use. Any suggestions?
Dream
02-09-2009, 12:34 AM
I'd guess another version of this mod could be made, where anyone can twit anything clicking on "Twit This" that opens a popup window that asks username, password and text to append before URL. I could do it but *yawn* not sure how integration with twitter works. It would be just one php file and one template edit. Also not sure if you can twit posts, or just threads would make more sense. But your idea of twitting not the post text, but a link to the forum is nice.
dirtycrow
02-09-2009, 12:35 AM
awesome!
King Kovifor
02-09-2009, 12:43 AM
I'd guess another version of this mod could be made, where anyone can twit anything clicking on "Twit This" that opens a popup window that asks username, password and text to append before URL. I could do it but *yawn* not sure how integration with twitter works. It would be just one php file and one template edit. Also not sure if you can twit posts, or just threads would make more sense. But your idea of twitting not the post text, but a link to the forum is nice.
I can add that as a product tomorrow. Admin set option for on / off?
This allows you to tweet posts and threads. My next major feature release plans on adding things that would require edits like it.
KevinL
02-09-2009, 12:51 AM
You guys are too much I love it.
After that thread I knew this was coming! Great work!
King Kovifor
02-09-2009, 01:06 AM
You guys are too much I love it.
After that thread I knew this was coming! Great work!
What thread?
KevinL
02-09-2009, 01:27 AM
The twitter thread...
ArnyVee
02-09-2009, 01:47 AM
Okay....so, will this allow us to send a Twitter (or a Tweet or whatever it's called! :) ) message to our vB profile? I'm a little confused (although that's not a big surprise ;) ) about what the dilly yo'. :D
King Kovifor
02-09-2009, 02:06 AM
It creates a tweet that includes a URL to the specified Post / thread with the default words "check this out" to your Twitted profile. Each user sets up their own profile for this to work.
Wayne Luke
02-09-2009, 02:08 AM
I was worried about that too but I need to authenticate and don't know where or how to authenticate without storing it. Pop up would work, but I am thinking of ease of use. Any suggestions?
Use mcrypt and have the site owner enter a secret phrase in the config.php file (best place for it)... You can then take the secret phrase and generate a seed value that encrypts the login information. Not foolproof since it will be necessary to decrypt the information but should provide enough basic protection.
King Kovifor
02-09-2009, 02:16 AM
Use mcrypt and have the site owner enter a secret phrase in the config.php file (best place for it)... You can then take the secret phrase and generate a seed value that encrypts the login information. Not foolproof since it will be necessary to decrypt the information but should provide enough basic protection.
Thanks! I'll look into that! And i'm looking at HTTP Basic Auth as the example show it encrypted so if I can figure that out I'll store that.
Brandon Sheley
02-09-2009, 02:39 AM
Thank you so much for wanting to make this @KingKovifor :)
I'll be checking back on this as it's developed
* Brandon Sheley clicks install
Dream
02-09-2009, 02:43 AM
I can add that as a product tomorrow. Admin set option for on / off?
This allows you to tweet posts and threads. My next major feature release plans on adding things that would require edits like it.
Thanks but lets see if other people request it :) this one may be what people want. Personally I'm in doubt whether to add this, as Twitter is in english only right now.
King Kovifor
02-09-2009, 02:59 AM
I'm guessing your forum is non-English?
dvsDave
02-09-2009, 03:30 AM
this looks very promising! I'll be keeping an eye on it as well. I would suggest trying to automate the template modifications.
/me clicks install
King Kovifor
02-09-2009, 03:42 AM
this looks very promising! I'll be keeping an eye on it as well. I would suggest trying to automate the template modifications.
* dvsDave clicks install
Plan on it. :)
AyeCapn
02-09-2009, 12:55 PM
I'll install once the template mods are automatic :)
scottct1
02-09-2009, 01:37 PM
I'll install once the template mods are automatic :)
Same here. :)
Ricsca
02-09-2009, 02:41 PM
Demo?
Brandon Sheley
02-09-2009, 05:16 PM
Demo?
It just posted a "Tweet" with the phrase "Come check this out" which can be edited, mentioned in the first post, than a link back to the thread that you are checking out. :)
King Kovifor
02-09-2009, 06:50 PM
Demo?
As Loco.M said, it just posts a Tweet that says something you define and a URL...
Reycer
02-10-2009, 01:41 AM
INASTALLED and WORKS like a charm. Thanks for this one! Would love to see you turn something like this into a "Buy Me A Beer Mod" though!
King Kovifor
02-10-2009, 06:22 PM
INASTALLED and WORKS like a charm. Thanks for this one! Would love to see you turn something like this into a "Buy Me A Beer Mod" though!
Buy me a beer mod?
Wayne Luke
02-10-2009, 07:05 PM
Buy me a beer mod?
http://www.blogclout.com/blog/goodies/buy-me-a-beer-paypal-donation-plugin/
Great addition. I just installed it.
King Kovifor
02-11-2009, 12:31 AM
Ah. Thanks Wayne.
Joe Gronlund
02-11-2009, 01:08 AM
I really like this mod, but I get many errors when testing it to uninstall, if I ever need too..
Upon uninstalling errors:
Invalid SQL:
ALTER TABLE `user` DROP `twitter_password`, `twitter_username`;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`twitter_username`' at line 1
Error Number : 1064
Request Date : Tuesday, February 10th 2009 @ 10:00:54 PM
Error Date : Tuesday, February 10th 2009 @ 10:00:54 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productkillThanks,,
King Kovifor
02-11-2009, 01:12 AM
Your getting errors while testing it? But thanks for the uninstall errors.
Joe Gronlund
02-11-2009, 01:21 AM
Your getting errors while testing it? But thanks for the uninstall errors.
No, I was making sure it would uninstall, and it won't.. I was trying to remove it..
King Kovifor
02-11-2009, 01:47 AM
Quick fix. Split it up into 2 queries: both same front with a single table name at the end. I'll see about getting a fix out tomorrow.
Joe Gronlund
02-11-2009, 01:56 AM
Quick fix. Split it up into 2 queries: both same front with a single table name at the end. I'll see about getting a fix out tomorrow.
Okay,, thank you.....
King Kovifor
02-11-2009, 02:24 AM
Anytime.
DotSauce
02-11-2009, 03:34 AM
This is cool, I can't wait to try it out cause I have a Twitter vB community (http://TweetSocial.com)
I would love to see an additional feature where users can Tweet *anything* at all directly from the forum. Also Twitter API allows you to define where the tweet is coming from and would give a backlink to the forum for each tweet a user sends out.
Like instead of "from web" or "from twitterific" it would be "from TweetSocial" or "from YourForum"
Thanks for this!
Joe Gronlund
02-11-2009, 03:43 AM
This is cool, I can't wait to try it out cause I have a Twitter vB community (http://TweetSocial.com)
I would love to see an additional feature where users can Tweet *anything* at all directly from the forum. Also Twitter API allows you to define where the tweet is coming from and would give a backlink to the forum for each tweet a user sends out.
Like instead of "from web" or "from twitterific" it would be "from TweetSocial" or "from YourForum"
Thanks for this!
Great site you have there, being Twitter/Tweet based, and the look/style.. :)
ragtek
02-11-2009, 04:58 AM
Also Twitter API allows you to define where the tweet is coming from and would give a backlink to the forum for each tweet a user sends out.
realy?
i thought this is not possible for communities, because i also wanted that my add-on have it's own name!
thats from the faq:
How do I get ?from [MyApp]? appended to updates sent from my API application?
Just fill out this handy form! Note that you must have a Twitter account and must be signed in to submit the form. We only approve applications and sites that appear legitimate and in the best interest of Twitter, Inc. and our community. We do not approve requests to link to personal sites and weblogs, marketing materials, or anything that rubs us the wrong way.
King Kovifor
02-11-2009, 10:12 PM
I'll be posting updates using the @vBTwit account on Twitter. So follow me here:
http://twitter.com/vBTwit
Joe Gronlund
02-12-2009, 04:20 PM
I'll be posting updates using the @vBTwit account on Twitter. So follow me here:
http://twitter.com/vBTwit
Great MOD,, splitting into two MySQL queries to DROP did work to uninstall BTW..
Are you going to be making an option to tweet not just what is in the thread, but just a personal tweet we may want to add, or a standalone tweet all together???
Keep up the great work,,
Joe
King Kovifor
02-12-2009, 07:05 PM
Great MOD,, splitting into two MySQL queries to DROP did work to uninstall BTW..
Are you going to be making an option to tweet not just what is in the thread, but just a personal tweet we may want to add, or a standalone tweet all together???
Keep up the great work,,
Joe
Yeah. Most likely in v1.1 which is the next feature update. And I've placed the uninstall error into my log and will get it fixed for v1.0.1 which I'm working on finishing up.
To anyone interested, public bug and feature tracker located at http://www.smnlikdat.org/project.php?projectid=5.
ArnyVee
02-12-2009, 11:44 PM
This mod has some pretty good potential....thanks for this one KK! :D
*tagged*
ludomatic
02-13-2009, 03:20 AM
Hi! i can't find the name of this addons inside my vB. Which's the name of this addon?
and somebody could write the troubleshooting from this addon inside the vB. Thank so much and sorry for my poor English.-
https://vborg.vbsupport.ru/
King Kovifor
02-13-2009, 06:58 PM
Hi! i can't find the name of this addons inside my vB. Which's the name of this addon?
and somebody could write the troubleshooting from this addon inside the vB. Thank so much and sorry for my poor English.-
http://img.skitch.com/20090213-kx87ahj6uyq6xy2w6djkewhmf.png
This add-on does not add any options at this time. So, it will not appear there. What do you need help with this?
ludomatic
02-13-2009, 11:04 PM
This add-on does not add any options at this time. So, it will not appear there. What do you need help with this?
I don't know where input the "twitter account" :S This is my only problem. Thank you for you help
King Kovifor
02-14-2009, 03:04 AM
I don't know where input the "twitter account" :S This is my only problem. Thank you for you help
User CP -> Edit Options -> vBTwitter (at the far bottom)
King Kovifor
02-14-2009, 11:47 PM
v1.0.1 is nearing completion. Some of the highlights:
Bug Fixes
Ability to uninstall (I fixed the SQL query)
Added missing ; in the Tweet this Thread!
Completely phrased.
New vBTwitter source parameter, any tweets show as coming from this mod (instead of web).
Removed extra query on updating options.
mcrypt integration (encrypted password)
There is also a new minor but major new feature coming along with v1.0.1!
Joe Gronlund
02-15-2009, 12:25 AM
Very nice..
Installing....
Brandon Sheley
02-15-2009, 12:40 AM
v1.0.1 is nearing completion. Some of the highlights:
Bug Fixes
Ability to uninstall (I fixed the SQL query)
Added missing ; in the Tweet this Thread!
Completely phrased.
New vBTwitter source parameter, any tweets show as coming from this mod (instead of web).
Removed extra query on updating options.
mcrypt integration (encrypted password)
There is also a new minor but major new feature coming along with v1.0.1!
nice :up:
King Kovifor
02-15-2009, 12:50 AM
OK. After spending the last hour trying to figure out Mcrypt (which I did get to work, rather fast too) it's still not decrypting and encrypting values as expected... So it most likely won't be done tonight.
Joe Gronlund
02-15-2009, 12:55 AM
While installing
Importing Product, Please Wait...
[:]
Database Error Database error
The Windowsliveforums.com database has encountered a problem.
Database error in vBulletin 3.8.1:
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
MySQL Error : Duplicate column name 'twitter_username'
Error Number : 1060
Request Date : Saturday, February 14th 2009 @ 09:53:24 PM
Error Date : Saturday, February 14th 2009 @ 09:53:24 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productimport
Referrer : http://www.windows7liveforums.com/admincp/plugin.php?do=productadd
IP Address : 99.xxx.xxx.xxx
Username : Joe Gronlund
Classname : vB_Database
MySQL Version : 5.0.67-community
King Kovifor
02-15-2009, 01:00 AM
While installing
Importing Product, Please Wait...
[:]
Database Error Database error
The Windowsliveforums.com database has encountered a problem.
Database error in vBulletin 3.8.1:
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
MySQL Error : Duplicate column name 'twitter_username'
Error Number : 1060
Request Date : Saturday, February 14th 2009 @ 09:53:24 PM
Error Date : Saturday, February 14th 2009 @ 09:53:24 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productimport
Referrer : http://www.windows7liveforums.com/admincp/plugin.php?do=productadd
IP Address : 99.xxx.xxx.xxx
Username : Joe Gronlund
Classname : vB_Database
MySQL Version : 5.0.67-community
That's cause your trying to install v1.0.0 again. I haven't updated the product yet. I just said it was nearing completion. Installing now, you'll get no added features. ;) And that's where your problem is coming from -- you already have it installed (or uninstalled and the tables weren't dropped, if that's the case tell me), so the tables it's trying to add in 1.0.0 are already in the database.
King Kovifor
02-15-2009, 03:37 AM
It is now also gonna have an image beside "Tweet this Thread!" It's not the best, but I think it looks rather good!
Joe Gronlund
02-15-2009, 03:55 AM
That's cause your trying to install v1.0.0 again. I haven't updated the product yet. I just said it was nearing completion. Installing now, you'll get no added features. ;)
It was actually uninstalled when I tried to reinstall it when I received that error, but I will wait for the next release.. :)
DebtFree
02-15-2009, 10:15 AM
Great looking idea and I will keep following this hack.
One suggestion I have though is to use Custom Profile Fields for the twitter details and enter the field ID in an ACP option. The reason for this is that I already have a hack which places the users latest tweets in their profile. To do this they need to enter their twitter id in a custom profile fileds ... so it seems silly to ask them for the same thing again.
King Kovifor
02-15-2009, 02:33 PM
Great looking idea and I will keep following this hack.
One suggestion I have though is to use Custom Profile Fields for the twitter details and enter the field ID in an ACP option. The reason for this is that I already have a hack which places the users latest tweets in their profile. To do this they need to enter their twitter id in a custom profile fileds ... so it seems silly to ask them for the same thing again.
That's going to be in the next version.
It was actually uninstalled when I tried to reinstall it when I received that error, but I will wait for the next release.. :)
I will post up proper queries later (I don't have access here).
hmccaig
02-15-2009, 06:42 PM
Where can I change the default that it leaves on Twitter: "Check this out!" - to something else? Something like, "Read this topic in our forums!"
King Kovifor
02-15-2009, 08:08 PM
hmccaig, search for the phrase twitter_check I believe. If that isn't it, search for twitter_ in car names and one will say "Check this out!".
hmccaig
02-15-2009, 08:59 PM
In which file do I do this? Thanks!
ragtek
02-15-2009, 09:03 PM
You don't need to edit a file;) You can manage the phrases in your acp
http://www.vbulletin.com/docs/html/languages_and_phrases
King Kovifor
02-15-2009, 09:08 PM
ACP -> Language & Phrases -> Search in Phrases -> twitter_ -> Varname only -> search -> edit next to the "check this out". Add what you want in the English box.
hmccaig
02-15-2009, 09:16 PM
perfect! thanks!
mykkal
02-15-2009, 10:09 PM
Is there a demo anywhere?
King Kovifor
02-15-2009, 11:25 PM
Actually no, Ill be sure to get some screenshots out. :)
itsbobtista
02-16-2009, 01:18 AM
I do have one issue...
It seems as though I can't tweet other people's posts. Any way to enable the user to tweet other people's posts?
King Kovifor
02-16-2009, 01:24 AM
You sir, have found a major bug in v1.0.0! I to discovered that yesterday as I was writing a new feature. I was using the wrong set of data. Changing $post to $vbulletin->userinfo within the template edits (postbit & postbit_legacy) will fix it.
itsbobtista
02-16-2009, 01:31 AM
You sir, have found a major bug in v1.0.0! I to discovered that yesterday as I was writing a new feature. I was using the wrong set of data. Changing $post to $vbulletin->userinfo within the template edits (postbit & postbit_legacy) will fix it.
Will do :) Thanks for the fix. Great mod; I nominated it!
Have a good one.
King Kovifor
02-16-2009, 01:42 AM
Yep. ;)
itsbobtista
02-16-2009, 01:49 AM
One more question...
<if condition="$post to $vbulletin->userinfo['twitter_username']"><a href="tweet.php?do=post&id=$post[postid]&c=$post[postid]">Tweet this post!</a></if>
Are you saying it should look like that? Or should it look like this...
<if condition="$post to $vbulletin->userinfo['twitter_username']"><a href="tweet.php?do=post&id=$vbulletin->userinfo[postid]&c=$vbulletin->userinfo[postid]">Tweet this post!</a></if>
King Kovifor
02-16-2009, 01:55 AM
In your first one, you have $post to $vbulletin. Remove "$post to" and it should work.
itsbobtista
02-16-2009, 02:04 AM
In your first one, you have $post to $vbulletin. Remove "$post to" and it should work.
D'oh. That was a typo on my part. I copied+pasted what you told us to add and I accidentally copied the "to" :-P Let me try that...
So, now it's set as:
<if condition="$vbulletin->userinfo['twitter_username']"><a href="tweet.php?do=post&id=$post[postid]&c=$post[postid]">Tweet this post!</a></if>
But when I check my Twitter, the URL it goes to is:
http://www.atxscene.com/forums/showpost.php?p=414&postcount=414
Which looks funky. Shouldn't it go to forums/showthread.php?p=414&postcount=414 so that it shows the thread and just automatically scrolls to that post? It just makes my style look funky lol you can check it out.
itsbobtista
02-16-2009, 02:07 AM
It would look fine if the link I clicked from Twitter opened in a new window that sized itself, but it opens as a new tab and it kind of messes up the width on the tables cause it's not meant to be that wide. See what I mean?
King Kovifor
02-16-2009, 02:27 AM
Yes, that code is correct. Also, it was designed to use the single post view. Since (1) it gives you the content you wanted and (2) it includes a link to the original thread. Of course, you could set it up to redirect to the thread view instead.
itsbobtista
02-16-2009, 02:36 AM
Yes, that code is correct. Also, it was designed to use the single post view. Since (1) it gives you the content you wanted and (2) it includes a link to the original thread. Of course, you could set it up to redirect to the thread view instead.
Ah, you're right. I wish I knew more about coding :-P I am slowly learning though. Alright, I will stop bugging you now! Thanks again King Kovifor.
Hi,
when trying to submit a thread I get this message:
We're sorry, but this post or thread could not be tweeted because you have not specified an ID. Please try again.
hmccaig
02-16-2009, 12:45 PM
Okay, one more quick question on this. I changed it so now it says: This is a great read in our forums!http://www.pinkinkstudios.net/discussion/tp.php?i=369&c=369
But, as you can see, it doesn't put a space after the "!" and therefore, the link isn't clickable. I only added the text change - and nothing more...then, I tried putting a space after. Thanks for all your help!
dvsDave
02-16-2009, 01:21 PM
Could you add support for a hashtag that the admin can define so we can find the tweets in the twitterverse ?
Brandon Sheley
02-16-2009, 05:24 PM
Could you add support for a hashtag that the admin can define so we can find the tweets in the twitterverse ?
oo, good idea :)
King Kovifor
02-16-2009, 06:51 PM
Hi,
when trying to submit a thread I get this message:
There's a bug in which I forgot to add the ";" in the template. This is fixed in v1.0.1.
Okay, one more quick question on this. I changed it so now it says: This is a great read in our forums!http://www.pinkinkstudios.net/discussion/tp.php?i=369&c=369
But, as you can see, it doesn't put a space after the "!" and therefore, the link isn't clickable. I only added the text change - and nothing more...then, I tried putting a space after. Thanks for all your help!
You should place a space after the "!" in the phrase so it reads: "This is a great read in our forums! ". I purposely didn't place a space in the code, that's located inside of the phrase.
Could you add support for a hashtag that the admin can define so we can find the tweets in the twitterverse ?
I will see about that. ;) Added to the feature tracker.
EDIT: After second thought, though I don't have this as a specific feature, you can do this by adding a hash tag into the phrase.
itsbobtista
02-16-2009, 10:59 PM
I did the upgrade, but I am having some trouble. For some reason, "Tweet this post" shows up twice.
http://www.atxscene.com/forums/showthread.php?t=133&p=432#post432
dvsDave
02-16-2009, 11:01 PM
Fatal error: Call to undefined function mcrypt_decrypt() in /var/www/vhosts/controlbooth.com/httpdocs/forums/profile.php(1873) : eval()'d code on line 2
When I went to UserCP => Edit Options
itsbobtista
02-16-2009, 11:04 PM
Nevermind... helps if I read. Removing templates.
itsbobtista
02-16-2009, 11:08 PM
Now it says:
We're sorry, but the Username and Password provided within your User CP could not be authenticated. Please modify either your Username or Password to match your current Twitter Username / Password and try again.
whenever I try to Tweet This Post or Tweet This Thread.
Also, Tweet This Thread shows up twice even after template edit removal.
King Kovifor
02-16-2009, 11:16 PM
Fatal error: Call to undefined function mcrypt_decrypt() in /var/www/vhosts/controlbooth.com/httpdocs/forums/profile.php(1873) : eval()'d code on line 2
When I went to UserCP => Edit Options
Hm. Can you see if your PHP has the mcrypt extension? Did you have an error when installing this product?
Now it says:
whenever I try to Tweet This Post or Tweet This Thread.
Also, Tweet This Thread shows up twice even after template edit removal.
Hm. It can't authenticate you? Are there any PHP errors? Are you sure you uploaded ALL new files (especially the /includes/twitter.php)?
itsbobtista
02-16-2009, 11:19 PM
-.- Reuploaded files, reapplied the XML file, works fine. I love you, sir.
King Kovifor
02-16-2009, 11:20 PM
-.- Reuploaded files, reapplied the XML file, works fine. I love you, sir.
Might I say kinda creepy, but your welcome.
DotSauce
02-16-2009, 11:38 PM
Glad to see the update and fixes :D
Hope to use this soon, but I need to wait on general tweets and twitter username defined by custom field cause I already have a Twitter field that is required on registration.
King Kovifor
02-16-2009, 11:41 PM
Glad to see the update and fixes :D
Hope to use this soon, but I need to wait on general tweets and twitter username defined by custom field cause I already have a Twitter field that is required on registration.
I doubt I will ever truly release a version that supports custom profile fields, mostly because it would require 2 differing code bases. Check your DMs.
dvsDave
02-16-2009, 11:52 PM
Hm. Can you see if your PHP has the mcrypt extension? Did you have an error when installing this product?
I checked my phpinfo file, no I don't have the mcrypt extension, (fixing that now). I did not get an error on install.
David
King Kovifor
02-17-2009, 12:39 AM
I checked my phpinfo file, no I don't have the mcrypt extension, (fixing that now). I did not get an error on install.
David
Hm. I guess nobody was using Twitter integration as mcrypt is run while upgrading. :)
Brandon Sheley
02-17-2009, 12:59 AM
Good to see the template edits removed, and the option to add custom hash tags in the phrase!
King Kovifor
02-17-2009, 01:04 AM
The option was there before. Just not realized. :)
Brandon Sheley
02-17-2009, 01:07 AM
The option was there before. Just not realized. :)
Those are the best :up:
King Kovifor
02-17-2009, 01:15 AM
True that. Cause that means less work for me! LOL.
Mone'
02-17-2009, 01:44 AM
Testing this now as it looks great :)
I'm getting this error on the profile.php?do=editoptions page
Warning: mcrypt_decrypt() [function.mcrypt-decrypt (/forum/function.mcrypt-decrypt)]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 2Any suggestions on what it could be ?
Thank you
Miko
itsbobtista
02-17-2009, 01:47 AM
Another problem.. in multi-post threads (like http://www.atxscene.com/forums/showthread.php?t=21&p=306#post306 ), the first post has one Twee This, second post has two Tweet This, third has three Tweet This, etc..
King Kovifor
02-17-2009, 01:54 AM
Mone, I am guessing you don't have twitter set up for your account, meaning that it doesn't have an iv stored in the db. And I'll work on getting template errors worked out.
Mone'
02-17-2009, 01:58 AM
Mone, I am guessing you don't have twitter set up for your account, meaning that it doesn't have an iv stored in the db. And I'll work on getting template errors worked out.
Yes just tested it on several account.
If I go to that page for the first time or every time without actually setting up the twitter account i will receive that error.
Setting twitter details will fix the issue, however most users will not have a twitter account.
Thank you.
King Kovifor
02-17-2009, 02:10 AM
The reason behind this is that saving a password does the required updates. I'll have an updated plugin for you later. I'll probably add the check in several places.
Mone'
02-17-2009, 02:12 AM
The reason behind this is that saving a password does the required updates. I'll have an updated plugin for you later. I'll probably add the check in several places.
Thank you.
p.s. would it be possible to have the tweeter update with "check this out > title of the post" other than just check this out?
itsbobtista
02-17-2009, 02:24 AM
Ack, I am getting that mcrypt error too. Any tips on where to find the phpinfo file?
(nevermind, I am good)
Still having an issue with my issue that I mentioned before. Screenshot attached
King Kovifor
02-17-2009, 02:49 AM
Thank you.
p.s. would it be possible to have the tweeter update with "check this out > title of the post" other than just check this out?
I'll see about it in 1.1.
Ack, I am getting that mcrypt error too. Any tips on where to find the phpinfo file?
(nevermind, I am good)
Still having an issue with my issue that I mentioned before. Screenshot attached
I will work on it.
itsbobtista
02-17-2009, 02:51 AM
I'll see about it in 1.1.
I will work on it.
Cool. Thanks! Excellent support for this mod. Much appreciated :) Didn't know if it was me or not lol
Mone'
02-17-2009, 03:53 AM
Another problem.. in multi-post threads (like http://www.atxscene.com/forums/showthread.php?t=21&p=306#post306 ), the first post has one Twee This, second post has two Tweet This, third has three Tweet This, etc..
Also having this issue
tr03bor
02-17-2009, 10:04 AM
Testing this now as it looks great :)
I'm getting this error on the profile.php?do=editoptions page
Warning: mcrypt_decrypt() [function.mcrypt-decrypt (/forum/function.mcrypt-decrypt)]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 2Any suggestions on what it could be ?
Thank you
Miko
Also having this issue!
tr03bor
02-17-2009, 10:13 AM
Can you add this to the registration page to? So new members can fill it in?
dvsDave
02-17-2009, 02:51 PM
Also having this issue!
Go down to the Maintenance menu in the AdminCP and select View PHP Info
Then look to see if the mcrypt php module is loaded. If you don't see it (hit CTRL + f to run a quick search) then contact your hosting company and ask if they will add that PHP module.
http://us.php.net/mcrypt is a good resource if you have to do it yourself or provide a link to your hosting company to help clarify your request.
David
ludomatic
02-17-2009, 03:03 PM
Hi! i can do work the vBTwitter....but in the "Thread Tool" i see 2 times the same option :S
I looking inside the code I did not find any reason to appear 2 times, somebody help me!! Thank you so much again!
https://vborg.vbsupport.ru/ https://vborg.vbsupport.ru/
dvsDave
02-17-2009, 03:13 PM
Hi! i can do work the vBTwitter....but in the "Thread Tool" i see 2 times the same option :S
I looking inside the code I did not find any reason to appear 2 times, somebody help me!! Thank you so much again!
https://vborg.vbsupport.ru/ https://vborg.vbsupport.ru/
The developer is aware of this issue. It's being worked on. In the meantime... what theme are you using? It looks nice!
ludomatic
02-17-2009, 04:29 PM
The developer is aware of this issue. It's being worked on. In the meantime... what theme are you using? It looks nice!
Is a theme that created the ex-admin of the site, the complete name is "MacAdicto Grey". I guess him has used other theme base and created this last. Hugs from Argentina and sorry for my poor English!
King Kovifor
02-17-2009, 07:16 PM
Hi! i can do work the vBTwitter....but in the "Thread Tool" i see 2 times the same option :S
I looking inside the code I did not find any reason to appear 2 times, somebody help me!! Thank you so much again!
http://img.skitch.com/20090217-r8dgx786xhxqhr1duc7uq27ctq.png http://img.skitch.com/20090217-a7s7351ndm24p8dymbjk5y6am.png
You didn't remove the template edits. They are listed in the first post for you to remove.
Can you add this to the registration page to? So new members can fill it in?
I can see about it.
Also having this issue!
I'm working on it.
Joe Gronlund
02-17-2009, 07:40 PM
I still cannot reinstall, i uninstalled the last version with no errors at all?? KK ?? Do you need my admin user, pass???
Database error in vBulletin 3.8.1:
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
MySQL Error : Duplicate column name 'twitter_username'
Error Number : 1060
Request Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Error Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productimport
Referrer : http://www.windows7liveforums.com/admincp/plugin.php?do=productadd
IP Address : 99.247.xxx.xxx
Username : Joe Gronlund
Classname : vB_Database
MySQL Version : 5.0.67-community
ragtek
02-17-2009, 07:53 PM
I still cannot reinstall, i uninstalled the last version with no errors at all?? KK ?? Do you need my admin user, pass???
Database error in vBulletin 3.8.1:
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
MySQL Error : Duplicate column name 'twitter_username'
Error Number : 1060
Request Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Error Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productimport
Referrer : http://www.windows7liveforums.com/admincp/plugin.php?do=productadd
IP Address : 99.247.xxx.xxx
Username : Joe Gronlund
Classname : vB_Database
MySQL Version : 5.0.67-community
your true
there's something missing in the deinstallcode
King Kovifor
02-17-2009, 08:19 PM
I still cannot reinstall, i uninstalled the last version with no errors at all?? KK ?? Do you need my admin user, pass???
Database error in vBulletin 3.8.1:
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
MySQL Error : Duplicate column name 'twitter_username'
Error Number : 1060
Request Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Error Date : Tuesday, February 17th 2009 @ 03:39:52 PM
Script : http://www.windows7liveforums.com/admincp/plugin.php?do=productimport
Referrer : http://www.windows7liveforums.com/admincp/plugin.php?do=productadd
IP Address : 99.247.xxx.xxx
Username : Joe Gronlund
Classname : vB_Database
MySQL Version : 5.0.67-community
This is still remnant of your original install (as with the bug you originally posted). Run this query and do the install again. :)
Also, be sure to add your prefix before user.
ALTER TABLE `user` DROP COLUMN `twitter_password`, DROP COLUMN `twitter_username`
dvsDave
02-17-2009, 11:38 PM
Alright, I finally got mcrypt installed.
mcrypt
mcrypt support
enabled
Version
2.5.8
Supported ciphers
cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes
cbc cfb ctr ecb ncfb nofb ofb stream
But I get a warning message at the top of the edit options page:
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 2
Update: I should note that everything appears to work, but the error is still there even after logging in to twitter.
Update 2: After I posted one tweet, the message went away.
Update 3: I'm also getting the multiplying "Tweet This Post!" issue.
King Kovifor
02-18-2009, 12:12 AM
Alright, I finally got mcrypt installed.
mcrypt
mcrypt support
enabled
Version
2.5.8
Supported ciphers
cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes
cbc cfb ctr ecb ncfb nofb ofb stream
But I get a warning message at the top of the edit options page:
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 2
Known error, add a password and it'll be fixed.
dvsDave
02-18-2009, 01:51 AM
Known error, add a password and it'll be fixed.
okay. Is there anyway to suppress that message if the twitter_password field is NULL ?
King Kovifor
02-18-2009, 02:07 AM
Yes, I just haven't got it codes yet.
RedeemedWarrior
02-18-2009, 09:00 AM
I'm getting that multi tweet message too
King Kovifor
02-18-2009, 06:17 PM
I'm getting that multi tweet message too
I'll try to have a fix out by the end of the week. If you want to disable this to go back to the direct edit disable the "Add "Tweet this Post"" plugin.
RedeemedWarrior
02-19-2009, 05:47 AM
sounds good :)
King Kovifor
02-19-2009, 08:40 PM
But when I check my Twitter, the URL it goes to is:
http://www.atxscene.com/forums/showpost.php?p=414&postcount=414
Which looks funky. Shouldn't it go to forums/showthread.php?p=414&postcount=414 so that it shows the thread and just automatically scrolls to that post? It just makes my style look funky lol you can check it out.
I've added a code switch in v1.0.2 that'll allow you to change this.
Joe Gronlund
02-19-2009, 10:03 PM
KK , I still can not install this since I un-installedl it when it had very few features..
Is there some tables I can drop manually to get this installed???
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
See Screenshot
Thank you...
King Kovifor
02-19-2009, 10:13 PM
KK , I still can not install this since I un-installedl it when it had very few features..
Is there some tables I can drop manually to get this installed???
Invalid SQL:
ALTER TABLE `user` ADD (`twitter_username` VARCHAR( 255 ) NOT NULL ,`twitter_password` VARCHAR( 255 ) NOT NULL);
See Screenshot
Thank you...
This was on the last page. Guess you missed it, but I don't mind.
Be sure to add your prefix before user.
ALTER TABLE `user` DROP COLUMN `twitter_password`, DROP COLUMN `twitter_username`
Joe Gronlund
02-19-2009, 11:01 PM
This was on the last page. Guess you missed it, but I don't mind.
Be sure to add your prefix before user.
SQL Query: (how to run queries (http://www.vbulletin.com/docs/html/maintenance_query))
ALTER TABLE `user` DROP COLUMN `twitter_password`, DROP COLUMN `twitter_username`
Worked perfect!~!!
Thank you....
Mukashi
02-19-2009, 11:12 PM
Getting this error on users options pages, after users have entered in their passwords for twitter accounts.
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 5
PHPInfo confirms Mcrypt 2.5.8 installed on the server.
King Kovifor
02-20-2009, 01:10 AM
Joe, your welcome.
Mukashi, I know. It was an oversight on my part as during testing I had already had a password. It will be rectified in v1.0.2.
Capper5016
02-21-2009, 01:26 AM
When can we expect the updated release?
King Kovifor
02-21-2009, 02:11 AM
When can we expect the updated release?
I didn't have time to work on it today, so hopefully tomorrow.
Mukashi
02-22-2009, 03:50 AM
Afraid that I'm still getting that error in v1.0.2. Well, that is to say, it looks similar enough to the previous one, so I'm guessing the different line number is just due to whatever changes you've made to the code since 1.0.1.
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 7
bezibaerchen
02-22-2009, 09:39 AM
Installed and finally managed to get it to work.
Am on Ubuntu, there were deep issues with php5-mcrypt, managed to fix that too, but mod didn't work anyway, as curl wasn't installed either.
IMHO this should be on prequesities too.
King Kovifor
02-22-2009, 01:50 PM
Afraid that I'm still getting that error in v1.0.2. Well, that is to say, it looks similar enough to the previous one, so I'm guessing the different line number is just due to whatever changes you've made to the code since 1.0.1.
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]/profile.php(1873) : eval()'d code on line 7
Which shouldn't be happening anyways. Since upon installation of v1.0.1 all passwords were encrypted and given an IV. The only thing I can do is force a reset of passwords as the install (or upgrade) should have fixed that.
Installed and finally managed to get it to work.
Am on Ubuntu, there were deep issues with php5-mcrypt, managed to fix that too, but mod didn't work anyway, as curl wasn't installed either.
IMHO this should be on prequesities too.
That's a requirement for the class that I hadn't thought of (as I didn't write it). I shall add that to the requirements. Sorry. :)
mikeinjersey
02-22-2009, 02:44 PM
Why still no normal screenshots ? A lot of us have no clue what it looks like beforehand.
Screenshots should always be posted with the initial post in the thread.
I just went through all 9 pages and still dont see any.
King Kovifor
02-22-2009, 03:00 PM
There's really nothing to show. It just adds two links (one in the top of the thread tools and one next to the post counts) that say "Tweet this Thread!" and "Tweet this Post!" respectively. And it adds two options to the options profile...
ragtek
02-22-2009, 03:49 PM
Screenshots for version 1.0.2:
Tweet a post:
95339
Tweet a thread:
95338
bezibaerchen
02-22-2009, 04:14 PM
Hmm, "Tweet this post" doesn't show up at my forums. Any hints?
--> http://www.mobil-talk.de
ragtek
02-22-2009, 04:20 PM
Hmm, "Tweet this post" doesn't show up at my forums. Any hints?
--> http://www.mobil-talk.de
Have you a modified postbit template?
bezibaerchen
02-22-2009, 04:39 PM
Not really AFAIK.
johndiaz
02-25-2009, 02:46 AM
Great Mod! Works wonderfully!!
Question though.. how possible is it for it not to have tinurl as the url on Twitter?? I would love the direct link.. :)
Teresa
02-25-2009, 04:30 PM
Is it possible to fix this?
Uncached templates: modifyoptions_vbtwitter (1)
ragtek
02-25-2009, 05:13 PM
create a plugin with hook cache_plugins
if (THIS_SCRIPT == 'profile')
{
$globaltemplates[] = 'modifyoptions_vbtwitter';
}
Is fixed in the next release.
johndiaz
02-25-2009, 05:51 PM
anything on not having linked to tinyurl would love to have straight link to the site :)
King Kovifor
02-25-2009, 06:51 PM
Great Mod! Works wonderfully!!
Question though.. how possible is it for it not to have tinurl as the url on Twitter?? I would love the direct link.. :)
anything on not having linked to tinyurl would love to have straight link to the site :)
vBTwitter doesn't shorten the URLs. That's something that the Twitter API has been doing.
King Kovifor
02-25-2009, 07:09 PM
I added Screenshots to the first post.
ragtek
02-28-2009, 10:17 AM
Is this atm working for you?
I don't want to install now a clear forum just for tesing it*g*
ATM i'm just getting <html><body>You are being <a href="http://twitter.com/login">redirected</a>.</body></html> back from the twitter api :(
mykkal
02-28-2009, 06:04 PM
Is there a way to give folks an option to tweet all their posts automatically? Or is it possible to make a social bookmark like icon that people can click on?
Like these:https://vborg.vbsupport.ru/external/2009/03/48.gifhttps://vborg.vbsupport.ru/external/2009/03/49.gifhttps://vborg.vbsupport.ru/external/2009/03/50.gifhttps://vborg.vbsupport.ru/external/2009/03/51.gif
Will this work in 3.7?
Also, can the 'tweet this' link and/or image appear at the end of a post, rather than at the top?
:)
mykkal
02-28-2009, 06:55 PM
Will this work in 3.7?
Also, can the 'tweet this' link and/or image appear at the end of a post, rather than at the top?
:)
Don't see a version for 3.7. Just upgraded your board. 3.8 is only a security fix. Won't change any templates. 3.7 is the same without the bug fixes so it should work.
But i'd recommend you go to 3.8
mykkal
02-28-2009, 07:00 PM
When I installed the plugin (via uploading and importing) I got this error.
Fatal error: Call to undefined function mcrypt_get_iv_size() in /home/mmtalk/public_html/jobs/profile.php(2154) : eval()'d code on line 32
mykkal
02-28-2009, 08:10 PM
We're sorry, but the Username and Password provided within your User CP could not be authenticated. Please modify either your Username or Password to match your current Twitter Username / Password and try again
I get this error when I try to "tweet" a post.. Problem is I have the correct credentials in the options. Also, I checked the database and both twitter_password and twitter_username had data in them. I can't tell if the password is right for MYSQL. It appears to be encrypted. twitter_size apprears to have some encrypted data in it as well.
I even tried using different twitter username information and that had no effect. But I can log directly into twitter using the same information I put in my vBulletin options for my user.
Is anyone else having this problem? I'm willing to pay to have this fixed.
King Kovifor
02-28-2009, 09:46 PM
Will this work in 3.7?
Also, can the 'tweet this' link and/or image appear at the end of a post, rather than at the top?
:)
There will be an option in 1.1 for this.
When I installed the plugin (via uploading and importing) I got this error.
Fatal error: Call to undefined function mcrypt_get_iv_size() in /home/mmtalk/public_html/jobs/profile.php(2154) : eval()'d code on line 32
We're sorry, but the Username and Password provided within your User CP could not be authenticated. Please modify either your Username or Password to match your current Twitter Username / Password and try again
I get this error when I try to "tweet" a post.. Problem is I have the correct credentials in the options. Also, I checked the database and both twitter_password and twitter_username had data in them. I can't tell if the password is right for MYSQL. It appears to be encrypted. twitter_size apprears to have some encrypted data in it as well.
I even tried using different twitter username information and that had no effect. But I can log directly into twitter using the same information I put in my vBulletin options for my user.
Is anyone else having this problem? I'm willing to pay to have this fixed.
According to your first quote, you don't have mcrypt installed, so it won't be able to decrypt a password, so, they won't be able to authenticate.
Don't see a version for 3.7. Just upgraded your board. 3.8 is only a security fix. Won't change any templates. 3.7 is the same without the bug fixes so it should work.
But i'd recommend you go to 3.8
problem is, it breaks a lot of plug-ins/addons which have not yet been updated...
mykkal
03-01-2009, 12:16 AM
According to your first quote, you don't have mcrypt installed, so it won't be able to decrypt a password, so, they won't be able to authenticate.
Mencrypt was installed after I saw the error. I still have a problem with authentication tho. Can you help me troubleshoot this?
King Kovifor
03-01-2009, 12:47 AM
problem is, it breaks a lot of plug-ins/addons which have not yet been updated...
This product should work just fine.
Mencrypt was installed after I saw the error. I still have a problem with authentication tho. Can you help me troubleshoot this?
If Mcrypt was installed, it should be working just fine. Attempt uninstalling it then reinstalling it.
mykkal
03-01-2009, 07:17 AM
This product should work just fine.
If Mcrypt was installed, it should be working just fine. Attempt uninstalling it then reinstalling it.
thats not really the troubleshooting help i was looking for. i'm an admin..not a user. i need something more concrete then reupload some files and overwrite a xml.
it does not work,
ricoche
03-01-2009, 08:52 AM
We're sorry, but the Username and Password provided within your User CP could not be authenticated. Please modify either your Username or Password to match your current Twitter Username / Password and try again
I am having this same problem as well. I have Mcrypt installed on my server and am using it for other applications on other domains so I know it works fine. In addition, I was able to "tweet" a post once and it worked perfectly. However, since then I get the error above. All credentials are accurate.
Just FYI. Thanks.
Switch02
03-01-2009, 09:01 AM
nice job man ;)
King Kovifor
03-01-2009, 02:38 PM
thats not really the troubleshooting help i was looking for. i'm an admin..not a user. i need something more concrete then reupload some files and overwrite a xml.
it does not work,
That was my suggestion. Can you tell if the passwords are encrypted in the database?
I am having this same problem as well. I have Mcrypt installed on my server and am using it for other applications on other domains so I know it works fine. In addition, I was able to "tweet" a post once and it worked perfectly. However, since then I get the error above. All credentials are accurate.
Just FYI. Thanks.
Was the one post before or after upgrading to v1.0.1?
mykkal
03-01-2009, 03:46 PM
That was my suggestion. Can you tell if the passwords are encrypted in the database?
Was the one post before or after upgrading to v1.0.1?
Yes they are encrypted. I see all kinds of weird characters in tables twitter_password and twitter_character
King Kovifor
03-01-2009, 04:26 PM
Yes they are encrypted. I see all kinds of weird characters in tables twitter_password and twitter_character
twitter_character?
mykkal
03-01-2009, 04:55 PM
twitter_character?
Sorry, i was mistaken.
There are three tables:
twiiter_username
twitter_character (encrypted)
twitter_size (encrypted)
Any ideas?
King Kovifor
03-01-2009, 07:38 PM
You have a twitter_character table?
mykkal
03-01-2009, 07:57 PM
no there is no character table. Not even sure why I wrote that. Sorry. It's just the three I mentioned above. I was thinking... There are funny characters there in that table and actually typed it. lol.
I can give you access to admin panel and database if you need to see yourself.
There are three tables:
twiiter_username
twitter_password (encrypted)
twitter_size (encrypted)Somehow it seems that the vBulletin mod is either sending the wrong authentication information to twitter, is encoding that information wrong, or is not sending it at all.
Again, this is the error I get when I try to tweet the thread.
We're sorry, but the Username and Password provided within your User CP could not be authenticated. Please modify either your Username or Password to match your current Twitter Username / Password and try again.Another question...Do forum permissions matter?
Another FYI. I just upgraded to php 5.2.8 a few days ago. Does it work on this version? All of my web applications are functioning fine.
King Kovifor
03-01-2009, 08:42 PM
mykkal, vBTwitter is working fine. I believe I have narrowed this down to a show stopping bug in the twitter API that has stopped working. I will try to find a fix today or tomorrow, and either rewrite the authentication methods of the twitter class, my authentication verification, or work with Twitter to fix this problem. I've already @twitterapi'd the account to see if it's a bug. This now makes sense in my mind as it stopped working on my dev site, and several other sites have reported it since then. If you are having trouble, I hate to say it, but please be patient as I attempt to work with Twitter and myself and ragtek to solve this!
mykkal
03-01-2009, 08:57 PM
mykkal, vBTwitter is working fine. I believe I have narrowed this down to a show stopping bug in the twitter API that has stopped working. I will try to find a fix today or tomorrow... This now makes sense in my mind as it stopped working on my dev site, and several other sites have reported it since then.
This is good actually. Then that means I have no unique problems on my side. That's less headache for you and me.
Thanks a bunch. Let me know.
King Kovifor
03-01-2009, 09:04 PM
You and me both. I was getting tired of trying to figure out why multiple people were having this exact same problem, at the exact same time after it had worked fine! Disabling the product will prevent any users from utilizing this.
mykkal
03-01-2009, 09:11 PM
Do you think this will take weeks or days?
King Kovifor
03-01-2009, 09:39 PM
Days. I think I'll be rewriting this to use XML... So, that'll be my top development priority. I'll leave 1.1 to ragtek for now.
mykkal
03-01-2009, 09:49 PM
Days. I think I'll be rewriting this to use XML... So, that'll be my top development priority. I'll leave 1.1 to ragtek for now.
thats awesome man..
King Kovifor
03-01-2009, 11:05 PM
Just an FYI, I have a preliminary rewrite working on my development server. I now need to get it working into v1.0.2. Should be done soon.
Brandon Sheley
03-01-2009, 11:16 PM
Just an FYI, I have a preliminary rewrite working on my development server. I now need to get it working into v1.0.2. Should be done soon.
Sweet man!
keep up the good work :up:
King Kovifor
03-02-2009, 02:25 AM
Loco.m check your DMs.
mykkal
03-02-2009, 02:38 AM
Just an FYI, I have a preliminary rewrite working on my development server. I now need to get it working into v1.0.2. Should be done soon.
I'd be happy to help you test.
King Kovifor
03-02-2009, 03:35 AM
I don't want a big test, I have 1 Or 2 for quick testing, then release. Won't hold back the release.
mykkal
03-02-2009, 12:46 PM
I don't want a big test, I have 1 Or 2 for quick testing, then release. Won't hold back the release.
No problem. Just offering help. The mod has become important over here.
wmlvb
03-02-2009, 01:45 PM
Will this mod work if have Facebook integration mod template edits or will they conflict?
mykkal
03-02-2009, 01:52 PM
Will this mod work if have Facebook integration mod template edits or will they conflict?
The template edits are a major problem. If you disable the facebook mod it will break your forum. I have tried asking questions to the mod designer but he doesn't answer questions.
Honestly I think this mod isn't really supported and ought to be removed until the designer comes back.
ragtek
03-02-2009, 01:53 PM
Could you post the link to the facebook mod?
mykkal
03-02-2009, 02:17 PM
Could you post the link to the facebook mod?
https://vborg.vbsupport.ru/showthread.php?p=1758511
King Kovifor
03-02-2009, 02:23 PM
I don't have the facebook mod installed, so I don't know.
ragtek
03-02-2009, 02:29 PM
Will this mod work if have Facebook integration mod template edits or will they conflict?
I looked at the templateedits from facebook connect and i'm sure theres nothing what could crash.
mykkal
03-02-2009, 02:32 PM
Also I have the facebook mod installed. Facebook works but twitter does not.
ragtek
03-02-2009, 02:35 PM
Yes, but thats because the twitter api class we're using is making troubles.
King Kovifor wrote that he will try to release the update soon
King Kovifor
03-02-2009, 05:01 PM
Also I have the facebook mod installed. Facebook works but twitter does not.
I have the new verification written in a test script. I need to port that script into our version, which will then be quickly tested by two people (other than me) and released.
King Kovifor
03-02-2009, 05:38 PM
I've sent it to two people to test it out. :)
mykkal
03-02-2009, 08:31 PM
I've sent it to two people to test it out. :)
https://vborg.vbsupport.ru/external/2009/03/52.gif
itsbobtista
03-03-2009, 01:32 AM
For some reason, I keep getting an error when trying to "Tweet This" that says my user name and password can't be authenticated. The credentials ARE correct. I reinstalled the add-in. Same issue. Please help :)
itsbobtista
03-03-2009, 01:39 AM
nevermind, i see it's being worked on. Woot
KevinL
03-03-2009, 02:29 AM
Is there a way to give folks an option to tweet all their posts automatically? Or is it possible to make a social bookmark like icon that people can click on?
Like these:https://vborg.vbsupport.ru/external/2009/03/48.gifhttps://vborg.vbsupport.ru/external/2009/03/49.gifhttps://vborg.vbsupport.ru/external/2009/03/50.gifhttps://vborg.vbsupport.ru/external/2009/03/51.gif
There will be an option in 1.1 for this.
That right there is great to hear!! That was actually what I was searching for :)
RedeemedWarrior
03-03-2009, 06:05 AM
same issue with not authorized etc
ragtek
03-03-2009, 06:29 AM
People pls stop posting that, we know that each Version < 1.0.3 is not working atm.
King Kovifor fixed that and sent it to 2 people to test it. I'll also try to test it, so if everything is ok 1.0.3 will be released today;)
smnet
03-03-2009, 10:10 AM
I would like to see this be able to make a post to twitter with the text as defined by the user when they use it.
This would be in addition to a tweet this.
Effectively, allowing people to use the forum as a twitter proxy. Hundreds of our members use twitter and allowing them to update twitter though the site would stop them having to go off to twitter and then back, etc.... I'm sure the API will allow this, but I guess it depends on whether you want to code this in, or not.
ragtek
03-03-2009, 10:18 AM
Effectively, allowing people to use the forum as a twitter proxy. Hundreds of our members use twitter and allowing them to update twitter though the site would stop them having to go off to twitter and then back, etc.... I'm sure the API will allow this, but I guess it depends on whether you want to code this in, or not.
Is already included in 1.1 but pls don't start now with posts ala "when will it be released;)")
Don't know if i'm allowed to post the screenshots because i'm just a co-author^^
And what exactly do you mean with:
I would like to see this be able to make a post to twitter with the text as defined by the user when they use it.
All the users can put a text in the usercp and instead of "check this out" it would be the usertext?
King Kovifor
03-03-2009, 12:23 PM
Ragtek, you can post screen shots. Just not in the first post. :)
ragtek
03-03-2009, 12:42 PM
Allright:)
In version 1.1 we added a tweetpopup menu to the navbar
95799
For all users without js there will be a own page.
The second new thing(all followers of our tweet profil (http://twitter.com/vBTwit) will know*g*) is, that now "everything" will work with ajax.
King Kovifor
03-04-2009, 12:53 AM
v1.0.3 will be released at some point tomorrow! Beta was very successful!
mykkal
03-04-2009, 01:37 AM
v1.0.3 will be released at some point tomorrow! Beta was very successful!
https://vborg.vbsupport.ru/external/2009/03/44.gif
Brandon Sheley
03-04-2009, 01:45 AM
https://vborg.vbsupport.ru/external/2009/03/44.gif
good to hear about the updates :)
ArnyVee
03-04-2009, 01:54 AM
Gotta love Ari Goldstein! :up:
RedeemedWarrior
03-04-2009, 08:50 AM
yay :D
indie2industry
03-04-2009, 03:44 PM
is there a way to tweet ALL forum Posts??
Or all posts from a certain fourm ID?
mykkal
03-04-2009, 03:53 PM
is there a way to tweet ALL forum Posts??
Or all posts from a certain fourm ID?
I'd like or not like this depending on the application. If you want to tweet new stuff coming in that's cool (done as a thread is posted) but to tweet an entire forum would be madness. And spam. Who would sift through that?
keith455
03-05-2009, 12:00 AM
anyway to have a "forum" twitter ID and have a page set up to show it's twitter stream. Kind of like on twitter.com. Then the "forum" id would follow all the forum members and display them. So the members could see the stream of the forum twitter ID.
King Kovifor
03-05-2009, 12:30 AM
Not coded, but not a bad idea. I'll think about it!
Teresa
03-05-2009, 12:40 AM
Hey King,
Could you update the main mod description with a summary of the changes in version 1.0.3? That would be great.
Thanks!
mykkal
03-05-2009, 12:43 AM
How do I change the way that the post is made? Twitter says "check this out"! Also it is redirecting back to vbTwitter on vbulletin.org. why? how do I change that to point to the forum I posted from.
thanks for the fix! Works awesome!
https://vborg.vbsupport.ru/external/2009/03/43.gif
King Kovifor
03-05-2009, 12:58 AM
Mykhall: Every tweet includes a source parameter, so it adds a link that says "vBTwitter" that links here. There should be another link...
Teresa, first post on the first page in the changelog.
mykkal
03-05-2009, 01:03 AM
Mykhall: Every tweet includes a source parameter, so it adds a link that says "vBTwitter" that links here. There should be another link...
Teresa, first post on the first page in the changelog.
I don't want it to redirect here. That's a problem actually. It will confuse my visitors. I want it to redirect to my site and I want to change the "Check this out" to the title of the actual post.My visitors are everyday users...not administrators.
I plan on tweeting a lot per day from my forum. I don't want people reading messages saying "Check this out". It won't interest them. But if it includes the forum title. that makes sense.
King Kovifor
03-05-2009, 01:22 AM
The message is phrased, you could definitely work the title in there through custom code... The vBTwitter link won't disappear. My application appears just like any other twitter app's would. TweetDeck, Tweetie, you name it. Users of Twitter should be familiar with this.
Infopro
03-05-2009, 01:27 AM
How many of the files are actually needed in this zip?
King Kovifor
03-05-2009, 01:36 AM
All of them are needed and used.
Infopro
03-05-2009, 01:41 AM
__MACOSX
.DS_Store
.svn
Are needed?
Infopro
03-05-2009, 01:51 AM
Clicking Tweet This Post simply refreshes the page. and it's a slow refresh like something wants to work but doesn't. No error, no message. FireFox and IE7 act the same.
King Kovifor
03-05-2009, 01:52 AM
No. Might I just say, I really hate invisible files. Don't show up on my computer (except under transmit) and I always forget they are there. Ignore them!
King Kovifor
03-05-2009, 01:53 AM
Clicking Tweet This Post simply refreshes the page. and it's a slow refresh like something wants to work but doesn't. No error, no message. FireFox and IE7 act the same.
Can you view source and tell me what the tweet this post links to? I have seen it done using 1.0.3...
Infopro
03-05-2009, 02:12 AM
<td class="tcat" >
<div class="normal" style="float:right"><a href="tweet.php?do=post&id=114146&c=114146">Tweet this Post!</a>
#<a href="showpost.php?p=114146&postcount=1" target="new" rel="nofollow" id="postcount114146" name="1"><strong>1</strong></a>
Here you go. Left some extra in there so you know where it's at.
mykkal
03-05-2009, 02:22 AM
The message is phrased, you could definitely work the title in there through custom code... The vBTwitter link won't disappear. My application appears just like any other twitter app's would. TweetDeck, Tweetie, you name it. Users of Twitter should be familiar with this.
I try to keep custom development to a minimum. It makes upgrades a pain.
You don't see an advantage to making an option for the thread title to be put in the "tweet"?
ragtek
03-05-2009, 02:24 AM
Changing Phrases is not realy custom development and will not make problems with updating;)
King Kovifor
03-05-2009, 02:54 AM
Infopro, you have THAT and it is reloading? Mind sending me a PM so I can look into it?
Mykkal, v1.0.x is not feature updates. Who knows, maybe it'll show in v1.1.0.
mykkal
03-05-2009, 02:54 AM
Changing Phrases is not realy custom development and will not make problems with updating;)
touche...I'm just making the case for a feature that most vBtwitter users would use.
The custom development is therein:
Making an option in the vBulletin control panel to change the "check this out" phrase into something custom will require updating the script to do so.
Of course I could just change it in the source code but that's dangerous and inefficient.
It's dangerous because why would any admin want to edit source code to customize a phrase regularly?
Plus...it's that kind of feature that makes something popular into something very phenomenal.
King... Thanks for everything so far. I understand if you're frustrated with me. Users are never satisfied and always want new features. heh :)
King Kovifor
03-05-2009, 03:05 AM
Actually, the source code changes would add 4-5 lines, plus a single phrase, and a new link variable. I know the code in my mind. :) It's a relatively simple modification.
mykkal
03-05-2009, 03:32 AM
Actually, the source code changes would add 4-5 lines, plus a single phrase, and a new link variable. I know the code in my mind. :) It's a relatively simple modification.
https://vborg.vbsupport.ru/external/2009/03/42.gif
abrecher
03-05-2009, 03:55 AM
Hmm, "Tweet this post" doesn't show up at my forums. Any hints?
--> http://www.mobil-talk.de
I have the same problem, how do I correct this please ?
drsli
03-05-2009, 05:09 AM
The username-and-password-authentication-failure still happens with the new version. I severely checked my twitter-login-data, they are working within twitter itself.
RedeemedWarrior
03-05-2009, 05:32 AM
can i delete .svn folders? or are they needed?
mykkal
03-05-2009, 05:56 AM
The username-and-password-authentication-failure still happens with the new version. I severely checked my twitter-login-data, they are working within twitter itself.
Works for me though...
Cybertims
03-05-2009, 07:11 AM
Mine now works but I get this error message across the top of the redirection screen right after it.
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]\tweet.php on line 9
Any idea why that might be?
Cheers
Infopro
03-05-2009, 10:07 AM
Infopro, you have THAT and it is reloading? Mind sending me a PM so I can look into it?
Mykkal, v1.0.x is not feature updates. Who knows, maybe it'll show in v1.1.0.
I'm sorry but my forums are not open to the public at this point.
I read earlier in this thread that this was being tested so I waited for your release. Apparently the testers need some testing too.
can i delete .svn folders? or are they needed?
King Kovifor, how about if you remove all the garbage from your zip file so people can get confused over this thing not working without the added confusion of garbage files no one needs?
I like trying stuff from vb.org but I'm not here to work on other coders bugs. Those should be worked on and hopefully solved before a new post is made offering it to the masses.
This clearly was not tested enough by those who have.
On the other hand, I have stolen some hilarious gif images posted to this thread for use in other threads. So I'm ahead at this point. ;)
Infopro
03-05-2009, 10:10 AM
Ragtek, you can post screen shots. Just not in the first post. :)
Allright:)
In version 1.1 we added a tweetpopup menu to the navbar
95799
For all users without js there will be a own page.
The second new thing(all followers of our tweet profil (http://twitter.com/vBTwit) will know*g*) is, that now "everything" will work with ajax.
v1.0.3 will be released at some point tomorrow! Beta was very successful!
How exciting this all seemed only days ago...
abroad
03-05-2009, 01:51 PM
get this error:
Call to undefined function mcrypt_get_iv_size() in /var/www/htm/profile.php(2155) : eval()'d code on line 16
Lima Bean
03-05-2009, 02:50 PM
With all due respect to the coder, please take my comments as intended and not as a personal attack against you or the vbTwitter mod - but really, what's the point?
I can see no point in a forum's users littering their twitter pages with a stream of Check This Out text with no description in the links of what the potential visitor might be looking at? I can't speak for other web users out there, but I don't have a tendancy to click on links just because they tell me to click here or to check this out. If you could find a way to form a better link, perhaps by pulling in the post/thread title, then this mod could be mildly useful.
Until then, I am uninstalling this mod. I wish you success as you try to get this worked out, and I would revisit this mod if you can communicate better to users what exactly the link is going to be about.
Regards,
Lima Bean
King Kovifor
03-05-2009, 08:39 PM
The username-and-password-authentication-failure still happens with the new version. I severely checked my twitter-login-data, they are working within twitter itself.
Hm. Are you sure you uploaded the new tweet.php?
can i delete .svn folders? or are they needed?
Yes. They are invisible on my computer and snuck their way in.
Mine now works but I get this error message across the top of the redirection screen right after it.
Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in [path]\tweet.php on line 9
Any idea why that might be?
Cheers
Update your password, it should have an IV parameter stored with it.
I'm sorry but my forums are not open to the public at this point.
I read earlier in this thread that this was being tested so I waited for your release. Apparently the testers need some testing too.
Personally, I have it installed on 3 beta testing sites, and they all worked perfectly. With the code you gave me, it should not be doing what it is, hence the reason I asked to see the forum.
King Kovifor, how about if you remove all the garbage from your zip file so people can get confused over this thing not working without the added confusion of garbage files no one needs?
I haven't had the time to sit down and remove them. They slipped in as they are invisible on my computer.
I like trying stuff from vb.org but I'm not here to work on other coders bugs. Those should be worked on and hopefully solved before a new post is made offering it to the masses.
This clearly was not tested enough by those who have.
Your problem is unique, and the only one I've seen like it. If your problem is the only one that happens, it is impossible for a coder to predict and fix it.
get this error:
Call to undefined function mcrypt_get_iv_size() in /var/www/htm/profile.php(2155) : eval()'d code on line 16
You don't have mcrypt installed.
SABRSox
03-06-2009, 12:15 AM
I get the following error:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in twitter.php on line 29
smnet
03-06-2009, 12:42 AM
* smnet is waiting for 1.1 :)
Cybertims
03-06-2009, 06:11 AM
Update your password, it should have an IV parameter stored with it.Can you be a bit clearer? Do you mean change it? Not sure what you mean by "update your password"
Cheers.
drsli
03-06-2009, 11:59 AM
Hm. Are you sure you uploaded the new tweet.php?
Yep, I?m sure. Here is the procedure I tried recently. I wiped out the username and password, saved the changes. I added the username and password, saved the changes to no success. I overwrote all files on the servers and re-imported the 1.03-version. To no success.
Then - I?m on the Mac-side - I tried out the program "Twitterific" and this prog gave me an alert about my password, warning me about an incompatibility with the twitter-api, cause my password contained non-alphanumeric characters. I changed the password to contain only alphanumeric characters and now all is working like a charm! :)
But I had to add a template-edit manually to get the "Tweet this post"-link working. I?m using the Template Modification System within the postbit too, maybe this prevented the link to show up.
Sorry for causing the confusion! But to my exoneration the twitter-browser-site accepts and works with non-alphanumeric-characters within the password, so I didn?t suspect any issues so far.
Thank you for this neat addon! :) Clicked Installed.
King Kovifor
03-06-2009, 09:41 PM
I get the following error:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in twitter.php on line 29
Hm. I will see about looking into that tomorrow.
Can you be a bit clearer? Do you mean change it? Not sure what you mean by "update your password"
Cheers.
All you need to do is edit your options, and just retype your password. If it was stored without an IV, it won't be able to decrypt. Upon changing your password, it'll update and store the required variables with your password. :)
Yep, I?m sure. Here is the procedure I tried recently. I wiped out the username and password, saved the changes. I added the username and password, saved the changes to no success. I overwrote all files on the servers and re-imported the 1.03-version. To no success.
Then - I?m on the Mac-side - I tried out the program "Twitterific" and this prog gave me an alert about my password, warning me about an incompatibility with the twitter-api, cause my password contained non-alphanumeric characters. I changed the password to contain only alphanumeric characters and now all is working like a charm! :)
But I had to add a template-edit manually to get the "Tweet this post"-link working. I?m using the Template Modification System within the postbit too, maybe this prevented the link to show up.
Sorry for causing the confusion! But to my exoneration the twitter-browser-site accepts and works with non-alphanumeric-characters within the password, so I didn?t suspect any issues so far.
Thank you for this neat addon! :) Clicked Installed.
Glad you figured it out. :)
wmlvb
03-07-2009, 10:32 PM
Allright:)
In version 1.1 we added a tweetpopup menu to the navbar
95799
For all users without js there will be a own page.
The second new thing(all followers of our tweet profil (http://twitter.com/vBTwit) will know*g*) is, that now "everything" will work with ajax.
Hey can you tell me the code for making the "tweettpopup" and what file and where you put it int the file? Thanks for the help!
BTW what do you mean everything will work w/ ajax?? Thanks
King Kovifor
03-07-2009, 10:47 PM
Hey can you tell me the code for making the "tweettpopup" and what file and where you put it int the file? Thanks for the help!
BTW what do you mean everything will work w/ ajax?? Thanks
Sorry, but the tweet pop up will not appear until v1.1 is released. It requires significant code changes and additions to what is in v1.0.x. For this reason, it will not be "pre-released" as an individual feature to v1.0.x. And here's an AJAX screencast:
http://screencast.com/t/CkcUQkUErUm
Notice the time stamp doesn't change. ;) (Cause there is NO reload!)
KevinL
03-07-2009, 11:10 PM
Sorry, but the tweet pop up will not appear until v1.1 is released. It requires significant code changes and additions to what is in v1.0.x. For this reason, it will not be "pre-released" as an individual feature to v1.0.x. And here's an AJAX screencast:
http://screencast.com/t/CkcUQkUErUm
Notice the time stamp doesn't change. ;) (Cause there is NO reload!)
That looks awesome!!
1.1 is also going to be when we can have the icon in the postbit right? Or did I mis-read this before?
King Kovifor
03-07-2009, 11:42 PM
That looks awesome!!
1.1 is also going to be when we can have the icon in the postbit right? Or did I mis-read this before?
Yes. 1.1 is going to support multiple postbit locations.
KevinL
03-08-2009, 01:00 AM
Yes. 1.1 is going to support multiple postbit locations.
Hawt dog
mykkal
03-08-2009, 01:30 AM
My God thats sexy...
http://screencast.com/t/CkcUQkUErUm
How's about a more sexy text box to actually embed in the posbits (forum, thread display, and the posts)? <--- easy access for everyone ;)
https://vborg.vbsupport.ru/external/2009/03/38.gif
smnet
03-08-2009, 01:32 AM
/me is waiting about as patiently for 1.1 as a kid waits patiently for macdonalds
King Kovifor
03-08-2009, 02:06 AM
Mykhal, right now, there are no plans for that. Every thing is being built using that text box. @reply'ing opens that menu, and adds the text in it... I highly doubt that will change!
mykkal
03-08-2009, 02:32 AM
Mykhal, right now, there are no plans for that. Every thing is being built using that text box. @reply'ing opens that menu, and adds the text in it... I highly doubt that will change!
Hey...I'm happy with whatever you give us. I'm just pushing a bit, heh :)
This product can go far. i'm not saying get rid of that box. I like it. It's just that some forums are very large and a text box in the post bit would be a great option for some. It's what we sales people like to call visual promotion.
People will use it because it is in front of them.
abrecher
03-08-2009, 06:54 AM
It would make sense to add the features from the Twitter Profile 1.0 Plugin to this mod.
Thoughts ?
King Kovifor
03-08-2009, 02:33 PM
Already planned.
PokerAffiliate
03-08-2009, 02:50 PM
This is going to be sick...... nice work man.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.