<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: private messages</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: private messages</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 22:40:55 +0000</pubDate>

<item>
<title>citizenkeith on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-18898</link>
<pubDate>Wed, 03 Sep 2008 13:33:24 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">18898@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Where can I download the latest version?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17448</link>
<pubDate>Sun, 20 Jul 2008 17:06:26 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17448@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know how to do it on the same, but you could easily make a &#60;code&#62;$bbdb-&#38;gt;query&#60;/code&#62; call with your own query.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17304</link>
<pubDate>Tue, 15 Jul 2008 16:49:58 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17304@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok (just asking this cause i am working on a plugin myself), but how about the next step. I have this to create a table if it doens't excist:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;bb_register_activation_hook(__FILE__, &#38;#39;bbmenu_install_check&#38;#39;);

function bbmenu_install_check() {
	global $bbdb;

	$bbdb-&#38;gt;hide_errors();
	$installed = $bbdb-&#38;gt;get_results(&#38;quot;show tables like &#38;quot;.$bbdb-&#38;gt;prefix.&#38;quot;bbmenu&#38;quot;);

	if ( !$installed ) :
		$bbdb-&#38;gt;query(&#38;quot; CREATE TABLE IF NOT EXISTS &#38;lt;code&#38;gt;&#38;amp;quot;.$bbdb-&#38;gt;prefix.&#38;amp;quot;bbmenu&#38;lt;/code&#38;gt; (
			&#38;lt;code&#38;gt;item_id&#38;lt;/code&#38;gt; INT(3) NOT NULL AUTO_INCREMENT,
			&#38;lt;code&#38;gt;item&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;set&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;page&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;location&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;order&#38;lt;/code&#38;gt; int(9) NOT NULL default &#38;#39;0&#38;#39;,
			PRIMARY KEY  (&#38;lt;code&#38;gt;item_id&#38;lt;/code&#38;gt;)
			)&#38;quot;);
	endif;
	$bbdb-&#38;gt;show_errors();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But I also want to put some data in it:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;quot;INSERT INTO&#60;/code&#62;$bbdb-&#38;gt;menu` VALUES&#60;br /&#62;
	(DEFAULT, 'Forums', 'active', 'index.php', 'front-page', 0),&#60;br /&#62;
	(DEFAULT, 'Search', 'active', 'search.php', 'search-page', 1),&#60;br /&#62;
	(DEFAULT, 'Statistics', 'inactive', 'statistics.php', 'stats-page', 0);&#34;;`&#60;/p&#62;
&#60;p&#62;How to do this in the same query?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17300</link>
<pubDate>Tue, 15 Jul 2008 14:25:45 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17300@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Because that tries to get the instance variable 'privatemessages' from $bbdb. As that variable doesn't exists, it returns null.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17294</link>
<pubDate>Tue, 15 Jul 2008 10:51:00 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17294@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So why not use:&#60;br /&#62;
&#60;code&#62;$bbdb-&#38;gt;privatemessages&#60;/code&#62; or doesn't this work anymore?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17281</link>
<pubDate>Mon, 14 Jul 2008 20:56:35 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17281@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;$bbdb-&#38;gt;prefix&#60;/code&#62; is a string containing your installation db prefix.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17274</link>
<pubDate>Mon, 14 Jul 2008 12:50:40 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17274@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;The installation file contains:&#60;br /&#62;
&#60;code&#62;$bbdb-&#38;gt;prefix.&#38;quot;privatemessages&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;What does this prefix. do? Or where does it stand for? Is prefix the bb_ in the database? I believe not since $bbdb doest this already, so what is it?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17007</link>
<pubDate>Sun, 29 Jun 2008 16:39:17 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17007@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hola,&#60;/p&#62;
&#60;p&#62;Debes configurar el idioma de bbPress como &#34;es_ES&#34; y automáticamente el plugin debiese utilizar el lenguaje que incluyo. Si no es así no sabría decirte el por qué de la falla.
&#60;/p&#62;</description>
</item>
<item>
<title>tatel on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16905</link>
<pubDate>Wed, 25 Jun 2008 10:19:25 +0000</pubDate>
<dc:creator>tatel</dc:creator>
<guid isPermaLink="false">16905@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello Detective:&#60;br /&#62;
Quiero usar este plugin en español. tengo la traducción que viene con el, pero no se donde definir el idioma ni donde debe ir este archivo. gracias
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16490</link>
<pubDate>Tue, 27 May 2008 19:11:23 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16490@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I uploaded a new version, fixing the previous bug and a critical error in the sql query por inserting a new message (it was swapping message content and message title). It's &#60;strong&#62;&#60;a href=&#34;http://alumnos.dcc.uchile.cl/~egraells/wp-content/uploads/2008/05/private-messages-extended.tgz&#34;&#62;here&#60;/a&#62;&#60;/strong&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16477</link>
<pubDate>Mon, 26 May 2008 18:53:11 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16477@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Please add these two fields to your table &#60;code&#62;bb_privatemessages&#60;/code&#62;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;#39;del_receiver&#38;#39; tinyint(4) NOT NULL default &#38;#39;0&#38;#39;
&#38;#39;del_sender&#38;#39; tinyint(4) NOT NULL default &#38;#39;0&#38;#39;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I forgot to put those two on the install function. Now it should work :)
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16464</link>
<pubDate>Sun, 25 May 2008 22:18:09 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">16464@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Detective. Obviously I'm not skilled in PHP. &#60;/p&#62;
&#60;p&#62;The original PM plugin is in desperate need of an update, IMHO, and I was hoping this would be it. However, I didn't consider that it would even change the database. I guess I'll stick with the old version for now, but would love for somebody (since I am not a programmer) to come up with some sort of PM import. :-)&#60;/p&#62;
&#60;p&#62;Also, I was using the latest version of Joshua's PM plugin (v0.80)
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16461</link>
<pubDate>Sun, 25 May 2008 15:46:09 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16461@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Uhm, maybe you where using a older version of Private Messaging? Because i didn't mess with the database. &#60;/p&#62;
&#60;p&#62;Anyway, as i said, i think it's best to do a clean installation. If you are already using the previous plugin and don't want to lose the current messages, perhaps it's best to keep it.
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16458</link>
<pubDate>Sun, 25 May 2008 12:57:06 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">16458@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I get this error at the top of the pm.php page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;bbPress database error: [Unknown column &#38;#39;del_receiver&#38;#39; in &#38;#39;where clause&#38;#39;]
SELECT * FROM bb_privatemessages WHERE id_receiver = &#38;#39;1&#38;#39; AND del_receiver= &#38;#39;0&#38;#39; ORDER BY created_on DESC

bbPress database error: [Unknown column &#38;#39;del_sender&#38;#39; in &#38;#39;where clause&#38;#39;]
SELECT * FROM bb_privatemessages WHERE id_sender = &#38;#39;1&#38;#39; AND del_sender = &#38;#39;0&#38;#39; ORDER BY created_on DESC&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, all previous Private Messages are missing.
&#60;/p&#62;</description>
</item>
<item>
<title>Malfhok on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16445</link>
<pubDate>Sat, 24 May 2008 12:25:43 +0000</pubDate>
<dc:creator>Malfhok</dc:creator>
<guid isPermaLink="false">16445@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Great! It works properly now. Thanks for upgrading a very useful plugin. :-)
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16439</link>
<pubDate>Sat, 24 May 2008 01:29:00 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16439@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the feedback. &#60;a href='http://alumnos.dcc.uchile.cl/~egraells/wp-content/uploads/2008/05/private-messages-extended.tgz'&#62;Here&#60;/a&#62; is the new version.&#60;/p&#62;
&#60;p&#62;I still have a lot of improvements left, but i think it is usable now. Please remember to update the files in your root/template folder.
&#60;/p&#62;</description>
</item>
<item>
<title>Malfhok on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16431</link>
<pubDate>Fri, 23 May 2008 22:04:10 +0000</pubDate>
<dc:creator>Malfhok</dc:creator>
<guid isPermaLink="false">16431@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@Detective:&#60;/p&#62;
&#60;p&#62;I've been testing it quite a bit today, and I have found one small bug...&#60;/p&#62;
&#60;p&#62;I'll try to explain this as clearly as possible. Basically, when Member A sends a PM to Member B, then Member B replies, the plugin tries to send the message to Member B, not Member A like it should.&#60;/p&#62;
&#60;p&#62;@citizenkeit:&#60;/p&#62;
&#60;p&#62;I just overwrote all of the old files. Works fine on my latest-version bbPress install.
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16429</link>
<pubDate>Fri, 23 May 2008 19:36:28 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16429@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@citizenkeit:&#60;/p&#62;
&#60;p&#62;Honestly, i don't know. Maybe it's best to do a clean install.&#60;/p&#62;
&#60;p&#62;@Malfhok:&#60;/p&#62;
&#60;p&#62;I hope it works ok. I made some basic tests, but i don't know how it works in a real environment.
&#60;/p&#62;</description>
</item>
<item>
<title>Malfhok on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16421</link>
<pubDate>Fri, 23 May 2008 17:08:44 +0000</pubDate>
<dc:creator>Malfhok</dc:creator>
<guid isPermaLink="false">16421@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the upgrade! When I'd previously tried the PM plugin, it continually gave me errors. But this seems to have fixed them all! My forum members will be so happy.
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16413</link>
<pubDate>Fri, 23 May 2008 02:44:22 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">16413@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for this! Any recommendations for upgrading from the original Private Message plugin?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-16378</link>
<pubDate>Wed, 21 May 2008 17:57:34 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">16378@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;For my own purposes i modified the plugin Private Messagging. The changes i made are:&#60;/p&#62;
&#60;p&#62;- The message's content is filtered through the same filters as a regular post content.&#60;br /&#62;
- The plugin is localized.&#60;br /&#62;
- Added security fixes.&#60;br /&#62;
- Added limits (the plugin now checks message lengths and inbox size).&#60;br /&#62;
- Added improved error handling (i still have to use Wp_Error).&#60;br /&#62;
- Improved usability :)&#60;/p&#62;
&#60;p&#62;Maybe it could be useful, so if anyone wants to check it out (or even use it) it can be downloaded &#60;a href=&#34;http://alumnos.dcc.uchile.cl/~egraells/wp-content/uploads/2008/05/private-messages-extendedtar.gz&#34;&#62;here &#60;/a&#62; (remember to change the extension to .tar.gz).
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Duplicate Messages Tab in Private Message Plugin"</title>
<link>http://bbpress.org/forums/topic/duplicate-messages-tab-in-private-message-plugin#post-15476</link>
<pubDate>Thu, 17 Apr 2008 09:31:00 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15476@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I had the same problem with my plugins with the avatar tab too. It makes tabs duplicate.&#60;/p&#62;
&#60;p&#62;I'll have to lookup the workaround I did...&#60;/p&#62;
&#60;p&#62;Okay the bug fix I had to use was to wrap the function that adds a tab and check if $self was set.&#60;/p&#62;
&#60;p&#62;ie.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function add_tab(blah) {
global $self;
   if (!self) {
     // code that adds tab goes here
   }
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So what you probably need to do is change this line like so:&#60;br /&#62;
&#60;code&#62;if (!$self &#38;#38;&#38;#38; bb_get_current_user_info( &#38;#39;id&#38;#39; ) == $user_id) {&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>djquinn on "Duplicate Messages Tab in Private Message Plugin"</title>
<link>http://bbpress.org/forums/topic/duplicate-messages-tab-in-private-message-plugin#post-15405</link>
<pubDate>Tue, 15 Apr 2008 17:55:59 +0000</pubDate>
<dc:creator>djquinn</dc:creator>
<guid isPermaLink="false">15405@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have the Private Messages plugin and the Avatar plugin both installed, and whenever I click on the Avatar tab in user profiles, I get two Messages tabs. I added the function suggested in the PM plugin forum:&#60;/p&#62;
&#60;p&#62;function add_pm_tab()&#60;br /&#62;
{&#60;br /&#62;
        global $user_id;&#60;br /&#62;
		global $self;&#60;/p&#62;
&#60;p&#62;        if (bb_get_current_user_info( 'id' ) == $user_id) {&#60;br /&#62;
                add_profile_tab(__('Messages'), 'edit_profile', '', 'pm.php');&#60;br /&#62;
        }&#60;br /&#62;
}&#60;br /&#62;
add_action( 'bb_profile_menu', 'add_pm_tab' );&#60;br /&#62;
bb_add_filter('get_bb_location', 'get_mess_bb_location');&#60;br /&#62;
bb_add_filter('get_bb_location', 'get_pm_bb_location');&#60;/p&#62;
&#60;p&#62;To display the PM message tab on the users' profiles. Any idea what's causing the tab to duplicate? It only happens when users click on the Avatar tab in their profile.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
