Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Private Text Message Hack v1.0 Details »»
Private Text Message Hack v1.0
Version: 1.00, by g-force2k2 g-force2k2 is offline
Developer Last Online: May 2008 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 08-17-2002 Last Update: Never Installs: 19
 
No support by the author.

As requested [ Here ]

Please download the fixed attachment located [ Here ]

If you've downloaded this hack before the redownload it or make the changes below... else the hack won't work... that should be it

Unfortunately FireFly didn't have the time to make the hack so i took it up on my own Hope that you enjoy it... here's the breakdown... screenshots will be included below

Private Text Hack v1.0
Hack created g-force2k2 Sunday August 18th, 2002
vbulletin 2.2.6
Please don't edit this hack if you need any assistance refer to the thread.
If you have any problems please refer to the thread.
// ++++++++++++++

To Do
// ++++++++++++++
Queries to Run (6)
File Modifications (28)
newreply.php (8)
showthread.php (6)
editpost.php (8)
admin/functions.php (2)
admin/usergroup.php (4)
Templates to Add (8)
Templats to Edit (3)

What does this hack do?
// ++++++++++++++
It allows your users to private text each other within a post.
It still maintains a regular post. but allows an option to private text other users.
You can choose which usergroupcs can add private text messages and which groups can see them.
But unless a usergroup is allowed to view no other user will be able to view it except the user recieving and the user posting.
Enjoy this hack It's really a good addition to keep things smart.
The usergroups options can be edited in the admin cp usergroup.php
And the private text length can also edited in the vbulletin options in admin cp under thread options.
The private text messages work with bbcode... smilies... and disables html etc... same as a regular message would work.
Also maintains the same image count... so if you have your image set at 5 per post and the user tries 3 in a post and 3 in the private text message they will get the images error
The private text messages can be edited the same way as a post, but when quoting they're bypassed.
Hopefully you'll enjoy this hack as much as i did making it If you like it please click on the install thanks [ g-force2k2 ]

For editpost.php change view this post

https://vborg.vbsupport.ru/showthrea...518#post287518

For another editpost.php change view this post

https://vborg.vbsupport.ru/showthrea...633#post287633

For enabling users to edit their own private text messages view this post

https://vborg.vbsupport.ru/showthrea...651#post287651

g-force2k2

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #132  
Old 08-20-2002, 08:26 PM
ExAvIoUr ExAvIoUr is offline
 
Join Date: Jan 2002
Posts: 169
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Find in Showthread (Line 69):

Code:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
post.dopriv AS dopriv, post.privmsg AS privmsg, post.privuser AS privuser,
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
replace with

Code:
	SELECT
	post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,".iif($forum[allowicons],'icon.title as icontitle,icon.iconpath,','')."
	// +++++++ Private Text Hack [ g-force2k2 ] +++++++
        post.dopriv AS dopriv, post.privmsg AS privmsg, post.privuser AS privuser,
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
	attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter
	".iif($avatarenabled,",avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline","")."
	FROM post
	".iif($forum[allowicons],'LEFT JOIN icon ON icon.iconid=post.iconid','')."
	LEFT JOIN user ON user.userid=post.userid
	LEFT JOIN userfield ON userfield.userid=user.userid
	".iif ($avatarenabled,"LEFT JOIN avatar ON avatar.avatarid=user.avatarid
	                       LEFT JOIN customavatar ON customavatar.userid=user.userid","")."
	LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
If that doesn't work, I don't know Just trying to suggest solutions.
Reply With Quote
  #133  
Old 08-20-2002, 11:11 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Actually, I think that has to do with Xenon's "Extra Edit Options for Admins" hack, if that helps at all.

Quote:
Originally posted by g-force2k2
yeah its the same as you probably had... just means that i have to make Xenon's double post hack compatible with this hack... just give me soemtime and i'll go about doing something of the sort

g-force2k2
Reply With Quote
  #134  
Old 08-21-2002, 02:18 AM
g-force2k2 g-force2k2 is offline
 
Join Date: Mar 2002
Location: Everywhere you wanna be..
Posts: 1,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

empreur76

to solve the sql error simply just remove my coding slashes... for some reason on the second edit of the showthread for that query it will error out...

so just make this coding:

PHP Code:
// +++++++ Private Text Hack [ g-force2k2 ] +++++++
post.dopriv AS doprivpost.privmsg AS privmsgpost.privuser AS privuser,
// +++++++ Private Text Hack [ g-force2k2 ] +++++++ 
and change it to this:

PHP Code:
post.dopriv AS doprivpost.privmsg AS privmsgpost.privuser AS privuser
hoep that fixes your problem

g-force2k2
Reply With Quote
  #135  
Old 08-21-2002, 01:29 PM
Odil Odil is offline
 
Join Date: Apr 2002
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's a great hack, I just want to know if it's possible to private message more than one person per message?

Odil
Reply With Quote
  #136  
Old 08-21-2002, 01:50 PM
empreur76 empreur76 is offline
 
Join Date: Nov 2001
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok very thanks !!
it's ok for me !!! but i have a question!!

only admin can make private message ! ?
i make change in usergroup for member but this don't work, the member can't make message !!
!?
Reply With Quote
  #137  
Old 08-21-2002, 02:44 PM
g-force2k2 g-force2k2 is offline
 
Join Date: Mar 2002
Location: Everywhere you wanna be..
Posts: 1,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Odil
It's a great hack, I just want to know if it's possible to private message more than one person per message?

Odil
No at the moment its only possible to private text message one person... but maybe in the near future i will make an addon to make this possible

empreur76 :: are you sure that everythign is correct? im trying to think of what could be wrong... just make sure that the usergroups are configured correctly... if not then i will do what i can to help

g-force2k2
Reply With Quote
  #138  
Old 08-21-2002, 06:32 PM
Odil Odil is offline
 
Join Date: Apr 2002
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi again

I have noticed that in a few of my forums the private text box doesn't appear. There is no option to turn this on or off on each forum. Any ideas what can be wrong?

Odil
Reply With Quote
  #139  
Old 08-22-2002, 01:16 AM
g-force2k2 g-force2k2 is offline
 
Join Date: Mar 2002
Location: Everywhere you wanna be..
Posts: 1,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No there isn't an option... but are you sure that you have the correct permissions? And is this for the adding or editing of the private text messages? Regards...

g-force2k2
Reply With Quote
  #140  
Old 08-22-2002, 06:58 PM
Tim Wheatley's Avatar
Tim Wheatley Tim Wheatley is offline
 
Join Date: Nov 2001
Location: England
Posts: 489
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok it works, Sorry for the delay but the fixes in post 46 worked for me. Thank you.
Reply With Quote
  #141  
Old 08-22-2002, 07:10 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

g-force: i have had a look at your code, everything seems ok, but may i suggest a optimization? (could perhaps also help with next version alowing more users to view...)

i see your privacy infos depent on the username, that's no problem as long as you don't change someones username because he want....

you should convert the username into the userid and just save the userid of the user a private message is shown, so he can always read the message, no matter if he changes his name somewhere in future.

as said this could help later also with adding more users to view this...

just a suggestion
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:25 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06456 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (2)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete