<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha" -->
<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; Topic: Plugin: Avatar Upload</title>
		<link>http://bbpress.org/forums/topic/plugin-avatar-upload</link>
		<description><![CDATA[bbPress Support Forums &raquo; Topic: Plugin: Avatar Upload]]></description>
		<language>en-US</language>
		<pubDate>Sun, 21 Mar 2010 09:09:41 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://bbpress.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://bbpress.org/forums/rss/topic/plugin-avatar-upload" 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>&#60;p&#62;Hi,&#60;br /&#62;
I had error below(while I pressed Avatar button):&#60;/p&#62;
&#60;p&#62;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&#60;/p&#62;
&#60;p&#62;Pls heeeeeeelp!&#60;br /&#62;
Lillian
&#60;/p&#62;</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>&#60;p&#62;@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.&#60;/p&#62;
&#60;p&#62;In your sidebar, or wherever you want to have them (or a &#34;welcome, guest&#34; message or whatever) appear, put this code snippet...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php global $user_login;
get_currentuserinfo();

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

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

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

        $flag = true;
        $name = $user_login . $ext[$i];
    }
}
if( $flag == true )
{
echo &#38;quot;&#38;lt;img src=\&#38;quot;http://www.yoursite.com/forum/avatars/&#38;quot;.$name.&#38;quot;\&#38;quot; /&#38;gt;&#38;quot;;
}
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;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.&#60;/p&#62;
&#60;p&#62;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 &#60;code&#62;$ext = array( &#38;#39;.jpg&#38;#39; , &#38;#39;.png&#38;#39; )&#60;/code&#62; for instance).
&#60;/p&#62;</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>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;This plugin use a SQL table ?
&#60;/p&#62;</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>&#60;p&#62;@jamesb4551 ► +1 me to :(
&#60;/p&#62;</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>&#60;p&#62;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?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</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>&#60;p&#62;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.&#60;/p&#62;
&#60;p&#62;Here's hoping someone can come up with a solution!
&#60;/p&#62;</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>&#60;p&#62;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?
&#60;/p&#62;</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>&#60;p&#62;NuMaverick, BRILLIANT!  &#60;/p&#62;
&#60;p&#62;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!)
&#60;/p&#62;</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>&#60;p&#62;cita:&#60;br /&#62;
&#34;To get Avatar tab in the profile working under Alpha-2 -&#60;br /&#62;
edit avatar-upload.php in the bbpress root&#60;br /&#62;
change line 7 from&#60;br /&#62;
bb_auth(); // logged in?&#60;br /&#62;
to&#60;br /&#62;
bb_auth('logged_in'); // logged in?&#34; by Batrachoid
&#60;/p&#62;</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>&#60;p&#62;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!
&#60;/p&#62;</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>&#60;p&#62;Hi - it's me, the plugin author, as Granny Weatherwax might say &#34;I ain't dead&#34;.  But I am busy.&#60;/p&#62;
&#60;p&#62;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!&#60;/p&#62;
&#60;p&#62;I don't know how this works, but it looks like I can add somebody as a &#34;Committer&#34;.&#60;/p&#62;
&#60;p&#62;Louise
&#60;/p&#62;</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>&#60;p&#62;Hi everyone,&#60;br /&#62;
I got a weird problem with this plugin. The tab &#34;Avatar&#34; is showed correctly but when I click on it I return to the main forum page. :o&#60;/p&#62;
&#60;p&#62;any idea?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</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>&#60;p&#62;I've never used the plugin, sorry.
&#60;/p&#62;</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>&#60;p&#62;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. &#60;/p&#62;
&#60;p&#62;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?
&#60;/p&#62;</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>&#60;p&#62;Take a look at the &#60;code&#62;unsharpmask.php&#60;/code&#62; file and see if you have a space on line one before the &#60;code&#62;&#38;lt;?php.&#60;/code&#62;  I just downloaded a copy of it and the first line looks like this:&#60;/p&#62;
&#60;pre&#62; &#38;lt;?php&#60;/pre&#62;
&#60;p&#62;^ space there&#60;/p&#62;
&#60;p&#62;There can't be any whitespace before the opening &#38;lt;?php.  See if your file has whitespace there and if so, delete it so the first character in the file is &#38;lt;.
&#60;/p&#62;</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>&#60;p&#62;The full error message is:&#60;/p&#62;
&#60;p&#62;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&#60;/p&#62;
&#60;p&#62;For now, just to get rid of the error, I turned the unsharpmask function off by setting it to &#34;0&#34; in bb-avatar-upload.php.&#60;/p&#62;
&#60;p&#62;What does the unsharpmask do anyways? Just make the image look better when it's re-sized or what?
&#60;/p&#62;</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>&#60;p&#62;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 &#34;headers were already sent&#34; and it can't continue.&#60;/p&#62;
&#60;p&#62;So what is the actual error message that is displayed, the full message?
&#60;/p&#62;</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>&#60;p&#62;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 &#34;unsharpmask.php&#34; file absolutely needed? If I remove it would the error go away? Probably not... &#60;/p&#62;
&#60;p&#62;What causes that &#34;headers already sent&#34; error?
&#60;/p&#62;</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>&#60;p&#62;Hi! Thanks for such a useful plugin :)&#60;/p&#62;
&#60;p&#62;But unfogtunately I have a little bug, let me name it like that. Profile page have two &#34;Avatar&#34; tabs. Like showed on this screenshot: &#60;a href=&#34;http://www.picamatic.com/show/2008/08/03/12/741682_804x186.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.picamatic.com/show/2008/08/03/12/741682_804x186.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What can I do with that?
&#60;/p&#62;</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>&#60;p&#62;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?
&#60;/p&#62;</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>&#60;p&#62;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.
&#60;/p&#62;</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>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm very pleased with the Avatar Upload, great work. Also I like the integration into bbpress a lot, it's really straight forward.&#60;/p&#62;
&#60;p&#62;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?&#60;/p&#62;
&#60;p&#62;I'm using version 0.8.3 of the plugin (avatar-upload.0.8.3.zip).&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</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>&#60;p&#62;Very nice plugin. It works great. Quick question though:&#60;/p&#62;
&#60;p&#62;Is it possible to get rid of the &#34;Upload Avatar&#34; 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 &#34;Upload Avatar&#34; link to the profile page?
&#60;/p&#62;</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>&#60;p&#62;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?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>thierryyyyyyy on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14189</link>
			<pubDate>Sun, 02 Mar 2008 01:06:53 +0000</pubDate>
			<dc:creator>thierryyyyyyy</dc:creator>
			<guid isPermaLink="false">14189@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;Thank you a lot.&#60;br /&#62;
You are right : I updated badly my files, I forgot to uptdate the root directory &#34;avatar-upload.php&#34;.&#60;br /&#62;
Now, it works far better :)&#60;/p&#62;
&#60;p&#62;if I could allow myself to a small advice : it would be far better if the installation where just &#34;put 1 directory in the my-plugins directory&#34;.&#60;/p&#62;
&#60;p&#62;anyway, the readme.txt was clear enougth, it my fault.&#60;br /&#62;
and the plugin is very nice.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>louisedade on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14169</link>
			<pubDate>Sat, 01 Mar 2008 10:42:32 +0000</pubDate>
			<dc:creator>louisedade</dc:creator>
			<guid isPermaLink="false">14169@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;Aha!  That error string comes from a &#60;strong&#62;much older&#60;/strong&#62; version of the plugin -- please can you try installing the latest version and see if you still have errors?&#60;/p&#62;
&#60;p&#62;Latest Version:  0.8.3&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/avatar-upload/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/avatar-upload/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14165</link>
			<pubDate>Fri, 29 Feb 2008 22:02:16 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">14165@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;I can't even find that string &#34;The file is not a valid GIF, JPG/JPEG or PNG image-type&#34; in the source. Where would that message be coming from?  Is that the actual error or paraphrased?  I see all the error messages in additional-files/avatar-upload.php, but that doesn't appear to be one of them.&#60;/p&#62;
&#60;p&#62;Screenshot of the actual error being displayed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jolaedana on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14157</link>
			<pubDate>Fri, 29 Feb 2008 19:35:14 +0000</pubDate>
			<dc:creator>Jolaedana</dc:creator>
			<guid isPermaLink="false">14157@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;I am having the same issue as thierryyyyy with this plugin- and it's all my users, as well. I've tried saving the file out without any special characters, using every export option in Photoshop, Apple's Preview, and another program called Graphic Converter- there's just no way the JPG is corrupt, I work in graphics all day every day.&#60;/p&#62;
&#60;p&#62;I'm running 0.8.3.1&#60;br /&#62;
Integrated with WP, and got quite a few other plugins running- I believe it was fine with all these same plugins previously though!&#60;/p&#62;
&#60;p&#62;Any thoughts? I'm happy to give any information I can. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>louisedade on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14154</link>
			<pubDate>Fri, 29 Feb 2008 12:19:44 +0000</pubDate>
			<dc:creator>louisedade</dc:creator>
			<guid isPermaLink="false">14154@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;Hmm.. ok, it's been a logn time since I was here, sorry about that.&#60;/p&#62;
&#60;p&#62;The file extension being in all caps shouldn't be a problem, the filenames are made lower case before they are checked.&#60;/p&#62;
&#60;p&#62;It could be the file got corrupted or something, or isn't a proper JPEG - what software did he use to create it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chrishajer on "Plugin: Avatar Upload"</title>
			<link>http://bbpress.org/forums/topic/plugin-avatar-upload/page/4#post-14142</link>
			<pubDate>Thu, 28 Feb 2008 01:04:50 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">14142@http://bbpress.org/forums/</guid>
			<description>&#60;p&#62;Is it possible the extension was in all caps?  I think the plugin expects to see one of a specific list of extensions, and they're all lower case.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;#39;file_extns&#38;#39; =&#38;gt; array(&#38;quot;gif&#38;quot;, &#38;quot;jpg&#38;quot;, &#38;quot;jpeg&#38;quot;, &#38;quot;png&#38;quot;)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If it wasn't one of those extensions, I think you would get an error.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
