<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: readme.txt - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/readmetxt</link>
		<description>bbPress Support Forums &#187; Tag: readme.txt - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 01:04:23 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/readmetxt" rel="self" type="application/rss+xml" />

		<item>
			<title>EnglishMeetup on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-65772</link>
			<pubDate>Mon, 08 Mar 2010 11:40:36 +0000</pubDate>
			<dc:creator>EnglishMeetup</dc:creator>
			<guid isPermaLink="false">65772@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,<br />
I had error below(while I pressed Avatar button):</p>
<p>Warning: Cannot modify header information - headers already sent by (output started at /home/content/83/4464383/html/wordpress-mu/forums/profile.php:4) in /home/content/83/4464383/html/wordpress-mu/forums/bb-includes/functions.bb-pluggable.php on line 232</p>
<p>Pls heeeeeeelp!<br />
Lillian
</p>]]></description>
					</item>
		<item>
			<title>MSR6 on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-61461</link>
			<pubDate>Tue, 08 Dec 2009 17:24:29 +0000</pubDate>
			<dc:creator>MSR6</dc:creator>
			<guid isPermaLink="false">61461@http://bbpress.org/forums/</guid>
			<description><![CDATA[<br />]]></description>
					</item>
		<item>
			<title>dangerousape on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-59696</link>
			<pubDate>Sun, 18 Oct 2009 16:04:56 +0000</pubDate>
			<dc:creator>dangerousape</dc:creator>
			<guid isPermaLink="false">59696@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@wilcosky and everyone else who's asked here and on the other thread, having cracked it this afternoon with the aid of a couple of online code snippets and my limited PHP skills, here's how to display your avatars from this plugin in WP if you have WP and bbPress integrated and sharing the same user table.</p>
<p>In your sidebar, or wherever you want to have them (or a "welcome, guest" message or whatever) appear, put this code snippet...</p>
<pre><code>&#60;?php global $user_login;
get_currentuserinfo();

if ($user_login == &#39;&#39;) {
echo(&#39;Welcome Guest&#39;);
} else {

$directory = &#39;/your/DOCUMENT_ROOT/path/to/forum/avatars/&#39;;
$flag = false;
$ext = array( &#39;.jpg&#39; , &#39;.gif&#39; , &#39;.png&#39; );

for( $i = 0; count( $ext ) &#62; $i; $i++ )
{
    if( file_exists( $directory . $user_login . $ext[$i] ) )
    {

        $flag = true;
        $name = $user_login . $ext[$i];
    }
}
if( $flag == true )
{
echo &#34;&#60;img src=\&#34;http://www.yoursite.com/forum/avatars/&#34;.$name.&#34;\&#34; /&#62;&#34;;
}
}
?&#62;</code></pre>
<p>Note that the path for $directory is your DOCUMENT_ROOT one (you can use an 'echo' or 'print' PHP command to find it if you don't know it, google for instructions; it's usually something like '/home/user/public_html/'), while the later image source path is the standard http one. If your avatar directory is somewhere other than /yoursite.com/forum/avatars/ then, obviously, you'll need to edit accordingly.</p>
<p>If you use a different set of possible image file extensions than the usual .jpg, .gif and .png trio you'll also need to edit the $ext array (so if you don't allow .gifs, it'd be <code>$ext = array( &#39;.jpg&#39; , &#39;.png&#39; )</code> for instance).
</p>]]></description>
					</item>
		<item>
			<title>Jiyong on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-59367</link>
			<pubDate>Fri, 09 Oct 2009 11:45:01 +0000</pubDate>
			<dc:creator>Jiyong</dc:creator>
			<guid isPermaLink="false">59367@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, </p>
<p>This plugin use a SQL table ?
</p>]]></description>
					</item>
		<item>
			<title>Jiyong on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-59260</link>
			<pubDate>Wed, 07 Oct 2009 00:23:37 +0000</pubDate>
			<dc:creator>Jiyong</dc:creator>
			<guid isPermaLink="false">59260@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@jamesb4551 ► +1 me to :(
</p>]]></description>
					</item>
		<item>
			<title>subtlegusto on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-59190</link>
			<pubDate>Mon, 05 Oct 2009 19:21:03 +0000</pubDate>
			<dc:creator>subtlegusto</dc:creator>
			<guid isPermaLink="false">59190@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>When I upload an avatar for a user, it's correctly displayed on the avatar upload page, but never makes it to the forum itself. Any ideas?</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>wilcosky on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-59144</link>
			<pubDate>Sun, 04 Oct 2009 18:19:58 +0000</pubDate>
			<dc:creator>wilcosky</dc:creator>
			<guid isPermaLink="false">59144@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Does anyone have any suggestions for showing the bbpress avatar next to comments in wordpress. I know a couple suggestions were given here, but, I don't want to try the first suggestion, because they say to delete a file in my plugins, and I have a feeling that will cause more trouble than it's worth. I saw another suggestion, tried it, but the avatar didn't show. This probably won't happen, but, it would be nice if there was a sister plugin to this one for wordpress... and you installed it and magically the bbpress avatars showed up. :) Wouldn't that be nice. Unfortunately I don't know php very well.</p>
<p>Here's hoping someone can come up with a solution!
</p>]]></description>
					</item>
		<item>
			<title>jamesb4551 on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-56663</link>
			<pubDate>Tue, 18 Aug 2009 16:43:40 +0000</pubDate>
			<dc:creator>jamesb4551</dc:creator>
			<guid isPermaLink="false">56663@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>OK basically that last fix does work, but for some reason my image uploads for the users but then it goes to a blank screen and when going back to the profile there is no image there, even though it is in the folder uploaded? I tried setting the permissions to 777 but to no avail. Any ideas anyone?
</p>]]></description>
					</item>
		<item>
			<title>Adola on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-56073</link>
			<pubDate>Thu, 06 Aug 2009 18:28:02 +0000</pubDate>
			<dc:creator>Adola</dc:creator>
			<guid isPermaLink="false">56073@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>NuMaverick, BRILLIANT!  </p>
<p>I've been plauged by this problem for a few hours now.  I was very confused, if there was some sort of ranking system here, I would give this 5 stars :P (Assuming 5 stars is the maximum of course!)
</p>]]></description>
					</item>
		<item>
			<title>chandersbs on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-45852</link>
			<pubDate>Thu, 23 Jul 2009 07:19:37 +0000</pubDate>
			<dc:creator>chandersbs</dc:creator>
			<guid isPermaLink="false">45852@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks, this helped me a lot.
</p>]]></description>
					</item>
		<item>
			<title>NuMaverick on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/5#post-44821</link>
			<pubDate>Wed, 22 Jul 2009 21:32:12 +0000</pubDate>
			<dc:creator>NuMaverick</dc:creator>
			<guid isPermaLink="false">44821@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>cita:<br />
"To get Avatar tab in the profile working under Alpha-2 -<br />
edit avatar-upload.php in the bbpress root<br />
change line 7 from<br />
bb_auth(); // logged in?<br />
to<br />
bb_auth('logged_in'); // logged in?" by Batrachoid
</p>]]></description>
					</item>
		<item>
			<title>KICKERMAN360 on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-39670</link>
			<pubDate>Mon, 20 Jul 2009 12:25:18 +0000</pubDate>
			<dc:creator>KICKERMAN360</dc:creator>
			<guid isPermaLink="false">39670@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It would be awesome for _ck_ to help out, s/he  (sorry) has been fixing bugs before! It's an awesome plugin by the way, thanks for making it!
</p>]]></description>
					</item>
		<item>
			<title>louisedade on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-39230</link>
			<pubDate>Sun, 19 Jul 2009 16:49:59 +0000</pubDate>
			<dc:creator>louisedade</dc:creator>
			<guid isPermaLink="false">39230@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi - it's me, the plugin author, as Granny Weatherwax might say "I ain't dead".  But I am busy.</p>
<p>Would anybody like to take over responsibility for this plugin?  You'll need to investigate the problems some people have had and bring it kicking and screaming into 2009!</p>
<p>I don't know how this works, but it looks like I can add somebody as a "Committer".</p>
<p>Louise
</p>]]></description>
					</item>
		<item>
			<title>clerik on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-36461</link>
			<pubDate>Thu, 04 Jun 2009 14:00:19 +0000</pubDate>
			<dc:creator>clerik</dc:creator>
			<guid isPermaLink="false">36461@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi everyone,<br />
I got a weird problem with this plugin. The tab "Avatar" is showed correctly but when I click on it I return to the main forum page. :o</p>
<p>any idea?</p>
<p>Thanks
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25220</link>
			<pubDate>Mon, 30 Mar 2009 12:34:26 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">25220@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've never used the plugin, sorry.
</p>]]></description>
					</item>
		<item>
			<title>wilcosky on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25206</link>
			<pubDate>Mon, 30 Mar 2009 02:08:30 +0000</pubDate>
			<dc:creator>wilcosky</dc:creator>
			<guid isPermaLink="false">25206@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thank you chrishajer! There was not only a space at the top of the code, but there was also a space at the very bottom. I removed the space at the top and still got the error except it said line 142 instead of line 1... so I figured out there was a space at the bottom. </p>
<p>I have another question if you are familiar with this plug in. In the bb-avatar-upload.php file there is an option you can turn on that will show the avatars from thumbnails. This is turned off by default. If I turned this on, would it just create a seperate thumbnail image for each avatar? If so, what is the advantage? Faster page load time?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25205</link>
			<pubDate>Mon, 30 Mar 2009 01:55:54 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">25205@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Take a look at the <code>unsharpmask.php</code> file and see if you have a space on line one before the <code>&#60;?php.</code>  I just downloaded a copy of it and the first line looks like this:</p>
<pre> &#60;?php</pre>
<p>^ space there</p>
<p>There can't be any whitespace before the opening &#60;?php.  See if your file has whitespace there and if so, delete it so the first character in the file is &#60;.
</p>]]></description>
					</item>
		<item>
			<title>wilcosky on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25204</link>
			<pubDate>Mon, 30 Mar 2009 01:50:37 +0000</pubDate>
			<dc:creator>wilcosky</dc:creator>
			<guid isPermaLink="false">25204@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The full error message is:</p>
<p>Warning: Cannot modify header information - headers already sent by (output started at /home/mysite/public_html/forum/bb-plugins/avatar-upload/unsharpmask.php:1) in /home/mysite/public_html/forum/bb-templates/kakumei/header.php on line 1</p>
<p>For now, just to get rid of the error, I turned the unsharpmask function off by setting it to "0" in bb-avatar-upload.php.</p>
<p>What does the unsharpmask do anyways? Just make the image look better when it's re-sized or what?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25198</link>
			<pubDate>Mon, 30 Mar 2009 01:12:04 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">25198@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If you have access to php or apache errors, or can display errors, I think it will be clear what the error is.  Sounds like some image processing function is not available, so the unsharpmask.php file generates an error and that goes to the browser, before the regular output.  Then the output comes, but the "headers were already sent" and it can't continue.</p>
<p>So what is the actual error message that is displayed, the full message?
</p>]]></description>
					</item>
		<item>
			<title>wilcosky on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-25188</link>
			<pubDate>Sun, 29 Mar 2009 20:12:15 +0000</pubDate>
			<dc:creator>wilcosky</dc:creator>
			<guid isPermaLink="false">25188@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm getting a headers already sent error by /avatar-upload/unsharpmask.php when I try to upload an avatar. The avatar uploads fine and everything works but the error is annoying. Any ideas? is the "unsharpmask.php" file absolutely needed? If I remove it would the error go away? Probably not... </p>
<p>What causes that "headers already sent" error?
</p>]]></description>
					</item>
		<item>
			<title>agl666 on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-17910</link>
			<pubDate>Sun, 03 Aug 2008 08:05:47 +0000</pubDate>
			<dc:creator>agl666</dc:creator>
			<guid isPermaLink="false">17910@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi! Thanks for such a useful plugin :)</p>
<p>But unfogtunately I have a little bug, let me name it like that. Profile page have two "Avatar" tabs. Like showed on this screenshot: <a href="http://www.picamatic.com/show/2008/08/03/12/741682_804x186.jpg" rel="nofollow">http://www.picamatic.com/show/2008/08/03/12/741682_804x186.jpg</a></p>
<p>What can I do with that?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-16830</link>
			<pubDate>Fri, 20 Jun 2008 13:44:00 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">16830@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Sounds like a permissions problem on the avatars folder. What are the file permissions on that folder?
</p>]]></description>
					</item>
		<item>
			<title>emmegildo on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-16822</link>
			<pubDate>Fri, 20 Jun 2008 09:15:24 +0000</pubDate>
			<dc:creator>emmegildo</dc:creator>
			<guid isPermaLink="false">16822@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hi.. i have both avatar and avatar upload plugin..<br />
can i use both or do i need to uninstall 1 of them? because,  when i try to upload an image for the avatar, an error msg appear saying<br />
--&#62; The file could not be saved to the avatars/ folder.
</p>]]></description>
					</item>
		<item>
			<title>tlibby on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-15699</link>
			<pubDate>Tue, 22 Apr 2008 23:53:09 +0000</pubDate>
			<dc:creator>tlibby</dc:creator>
			<guid isPermaLink="false">15699@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Everything works fine on my forum, it just won't display the uploaded avatars. Permissions are all correct, anyone know what the reason is that could be causing this?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14827</link>
			<pubDate>Sun, 30 Mar 2008 20:41:18 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">14827@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This was mentioned before and covered in the forums.  I can't find it now, but basically it enforced a min height for the reply so it would never be shorter than the avatar.
</p>]]></description>
					</item>
		<item>
			<title>CoreForce on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14822</link>
			<pubDate>Sun, 30 Mar 2008 16:52:50 +0000</pubDate>
			<dc:creator>CoreForce</dc:creator>
			<guid isPermaLink="false">14822@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I'm very pleased with the Avatar Upload, great work. Also I like the integration into bbpress a lot, it's really straight forward.</p>
<p>Only one small visual glitch that I noticed is that for avatars even when resized to 100x100 max, with small (1 line) posts the avatar image will overlap into the portion of next post, rendering the next user name unreadable. The callout for the img code has been included where suggested by the docs. Anyone else did recognize this as a problem?</p>
<p>I'm using version 0.8.3 of the plugin (avatar-upload.0.8.3.zip).</p>
<p>Thanks.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-14621</link>
			<pubDate>Sun, 23 Mar 2008 19:54:04 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">14621@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>From the readme file:<br />
=================================<br />
3. To display an uploaded avatar, insert the following template function.</p>
<p>   a) On the user's profile page (<code>profile.php</code> template).</p>
<p>      <code>&#60;?php avatarupload_display($user-&#62;ID); ?&#62;</code></p>
<p>      This grabs the avatar info file directly from the current user's profile information.</p>
<p>   b) On each user's forum posts (<code>post.php</code> template)</p>
<p>      <code>&#60;?php avatarupload_display(get_post_author_id()); ?&#62;</code></p>
<p>   You can include the avatar anywhere else you like, just be sure to have the user's ID available.<br />
=================================</p>
<p>You would insert one of those pieces of code in a template file wherever you want the avatar to appear.  Try one and see how it works.
</p>]]></description>
					</item>
		<item>
			<title>giveror on "how to inset avatar"</title>
			<link>http://bbpress.org/forums/topic/how-to-inset-avatar#post-14612</link>
			<pubDate>Sun, 23 Mar 2008 07:17:42 +0000</pubDate>
			<dc:creator>giveror</dc:creator>
			<guid isPermaLink="false">14612@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm using plugin avatar upload .<br />
<a href="http://bbpress.org/forums/topic/plugin-avatar-upload" rel="nofollow">http://bbpress.org/forums/topic/plugin-avatar-upload</a></p>
<p>I want to insert avatar under username .<br />
EX :<br />
[img]http://www.uppic.net/ic/ccats.gif[/img]</p>
<p>where i must insert code.</p>
<p>sorry if my english isn't good.Because I'm thai people.
</p>]]></description>
					</item>
		<item>
			<title>NeutralX2 on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14523</link>
			<pubDate>Mon, 17 Mar 2008 20:26:07 +0000</pubDate>
			<dc:creator>NeutralX2</dc:creator>
			<guid isPermaLink="false">14523@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Very nice plugin. It works great. Quick question though:</p>
<p>Is it possible to get rid of the "Upload Avatar" tab to the Profile menu? I just don't have the room for another option on the menu. How would I go about removing the tab and adding a "Upload Avatar" link to the profile page?
</p>]]></description>
					</item>
		<item>
			<title>itissue on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14377</link>
			<pubDate>Mon, 10 Mar 2008 04:59:56 +0000</pubDate>
			<dc:creator>itissue</dc:creator>
			<guid isPermaLink="false">14377@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This plugin is simply wonderful. The only problem is, if a user uploads an animated gif, it doesn't appear animated. Is there a way to fix this problem?
</p>]]></description>
					</item>

	</channel>
</rss>

