MyBB Community Forums

Full Version: Private Message Logs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Any plugin that I can implement onto my forum that logs all private messages?

EDIT: http://mods.mybb.com/view/private-messag...ned-for-14 - I use this, although a majority of the features don't work correctly.
I used that for a short while and loved it. But you have to put a disclaimer in your TOS (or whatever it is) that show before the user registers, otherwise they might take legal action against you.
phpMyAdmin
(2011-05-27, 03:25 AM)Scoutie44 Wrote: [ -> ]phpMyAdmin

This Toungue
What doesn't work on that plugin?
(2011-05-27, 06:14 PM)Solidus Wrote: [ -> ]What doesn't work on that plugin?

Searching a username and then attempting to go to page 2.
I was able to filter through pages without error, but not search by username. To fix this, find and replace the following.

Around line 355, find:
$additional_sql_criteria .= "AND pm.fromuid='{$user['uid']}'";
$additional_criteria[] = "fromuid={$user['uid']}";

Replace with:
$additional_sql_criteria .= "AND pm.fromid='{$user['uid']}'";
$additional_criteria[] = "fromid={$user['uid']}";
(2011-05-28, 01:31 AM)Spencer Wrote: [ -> ]I was able to filter through pages without error, but not search by username. To fix this, find and replace the following.

Around line 355, find:
$additional_sql_criteria .= "AND pm.fromuid='{$user['uid']}'";
$additional_criteria[] = "fromuid={$user['uid']}";

Replace with:
$additional_sql_criteria .= "AND pm.fromid='{$user['uid']}'";
$additional_criteria[] = "fromid={$user['uid']}";

Didn't seem to work. Undecided
Its working. You just need to select "Sent Items" from "Folder" drop down menu and then Input usernames in To and From fields.
(2011-05-30, 11:46 AM)The Elite Wrote: [ -> ]
(2011-05-28, 01:31 AM)Spencer Wrote: [ -> ]I was able to filter through pages without error, but not search by username. To fix this, find and replace the following.

Around line 355, find:
$additional_sql_criteria .= "AND pm.fromuid='{$user['uid']}'";
$additional_criteria[] = "fromuid={$user['uid']}";

Replace with:
$additional_sql_criteria .= "AND pm.fromid='{$user['uid']}'";
$additional_criteria[] = "fromid={$user['uid']}";

Didn't seem to work. Undecided

I'm not sure then, as those changes did work for me.
Pages: 1 2 3