<?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 Plugin Browser Topic: Avatar Upload</title>
<link>http://bbpress.org/plugins/</link>
<description>bbPress Plugin Browser Topic: Avatar Upload</description>
<language>en</language>
<pubDate>Tue, 16 Mar 2010 23:02:15 +0000</pubDate>

<item>
<title>LambWarren on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5522</link>
<pubDate>Fri, 12 Mar 2010 00:31:38 +0000</pubDate>
<dc:creator>LambWarren</dc:creator>
<guid isPermaLink="false">5522@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;@liverlee. try @DanielJuhl's suggestion (above), quoted here:&#60;/p&#62;
&#60;p&#62;A lot of you are having problems with Avatar Upload, and the fact that you can't get to the upload-page '.../profile/Username/avatar' - the solution is to open the file 'avatar-upload.php' in the root-dir of bbPress.&#60;/p&#62;
&#60;p&#62;Line number 7 must be removed, dimmed out.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
This file is part of the Avatar Upload plugin
*/
require_once(&#38;#39;./bb-load.php&#38;#39;); // load bbPress config
//bb_auth(); // logged in?
bb_repermalink(); // Fix pretty-permalinks&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I think that bb_auth is an old function from bbPress 0.8.x
&#60;/p&#62;</description>
</item>
<item>
<title>liverlee on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5519</link>
<pubDate>Thu, 11 Mar 2010 13:15:47 +0000</pubDate>
<dc:creator>liverlee</dc:creator>
<guid isPermaLink="false">5519@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Can someone please help I have the Same Problem as the last few comments. I've followed all the instructions.&#60;/p&#62;
&#60;p&#62;The &#34;Avatar&#34; tab has appeared OK in the profile but when I click on to it I get redirected to My BBpress forum index.&#60;br /&#62;
When I hover over the Avatar tab link it points to:  { .../forum/profile.php?id=1&#38;amp;tab=avatar}&#60;/p&#62;
&#60;p&#62;I really wanna get this working. Any ideas why it redirects to the index page???
&#60;/p&#62;</description>
</item>
<item>
<title>toniperdew on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5489</link>
<pubDate>Fri, 26 Feb 2010 18:28:21 +0000</pubDate>
<dc:creator>toniperdew</dc:creator>
<guid isPermaLink="false">5489@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;PS  In case you are trying to do this as well, the post.php file is inside the folder with templates. I pasted the code &#60;code&#62;&#38;lt;?php avatarupload_display(get_post_author_id()); ?&#38;gt;&#60;/code&#62; (without the tick marks) right under where the member's name is for the kakumei template and also a template I installed from another site.  If you don't know php, like me, here's where I put mine....it is the 3rd line, below (without the tick marks):&#60;/p&#62;
&#60;p&#62;					&#60;code&#62;&#38;lt;strong&#38;gt;&#38;lt;?php post_author_link(); ?&#38;gt;&#38;lt;/strong&#38;gt;&#38;lt;br /&#38;gt;&#60;/code&#62;&#60;br /&#62;
					&#60;code&#62;&#38;lt;small&#38;gt;&#38;lt;?php post_author_title_link(); ?&#38;gt;&#38;lt;/small&#38;gt;&#60;/code&#62;&#60;br /&#62;
                                       &#60;code&#62;&#38;lt;?php avatarupload_display(get_post_author_id()); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I still don't know where to put the other code in the other php file so the avatar shows up on their profile page, but as long as people can see it by posts, their avatar can be seen if they are active on the board.&#60;/p&#62;
&#60;p&#62;But, I would welcome the instructions for &#34;where&#34; to put the code so it shows up on the profile page.
&#60;/p&#62;</description>
</item>
<item>
<title>toniperdew on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5488</link>
<pubDate>Fri, 26 Feb 2010 18:18:09 +0000</pubDate>
<dc:creator>toniperdew</dc:creator>
<guid isPermaLink="false">5488@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I am trying to get the avatars to show up on the profile page and by posts, and have found the instructions. However, I don't know &#34;where&#34; in the .php file to paste those codes, and also exactly what part to include. I tried it without the ` marks outside the code, so pasted in the &#38;lt;&#38;gt; and all between. That didn't work, so I tried taking off the &#38;lt;&#38;gt;, which didn't work.&#60;/p&#62;
&#60;p&#62;So my two questions are, exactly what part of the code do I paste into profile.php and post.php (include the `'s, the &#38;lt;&#38;gt;'s, etc. and also, where in those files do I post the codes? Or, does it matter on what line in the php files I paste the code?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Toni&#60;/p&#62;
&#60;p&#62;Code instructions below...&#60;/p&#62;
&#60;p&#62;   a) On the user's profile page (&#60;code&#62;profile.php&#60;/code&#62; template).&#60;/p&#62;
&#60;p&#62;      &#60;code&#62;&#38;lt;?php avatarupload_display($user-&#38;gt;ID); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;      This grabs the avatar info file directly from the current user's profile information.&#60;/p&#62;
&#60;p&#62;   b) On each user's forum posts (&#60;code&#62;post.php&#60;/code&#62; template)&#60;/p&#62;
&#60;p&#62;      &#60;code&#62;&#38;lt;?php avatarupload_display(get_post_author_id()); ?&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>plutopsyche on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5218</link>
<pubDate>Sat, 16 Jan 2010 03:48:09 +0000</pubDate>
<dc:creator>plutopsyche</dc:creator>
<guid isPermaLink="false">5218@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Same problem several others are experiencing. The &#34;Upload Avatar&#34; link redirects to the front page. The folder permissions are set to 766, which is writable to all. Files are in correct places.&#60;/p&#62;
&#60;p&#62;Suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>brucini on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5188</link>
<pubDate>Sat, 09 Jan 2010 06:39:07 +0000</pubDate>
<dc:creator>brucini</dc:creator>
<guid isPermaLink="false">5188@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;@danniellsen I'm not sure what works for you :)&#60;/p&#62;
&#60;p&#62;I'm hoping for advice about how to move the avatar to the sidebar, rather than under the post.&#60;/p&#62;
&#60;p&#62;anyone know how?
&#60;/p&#62;</description>
</item>
<item>
<title>danniellsen on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5163</link>
<pubDate>Wed, 06 Jan 2010 02:32:44 +0000</pubDate>
<dc:creator>danniellsen</dc:creator>
<guid isPermaLink="false">5163@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;thanks brucini it works for me
&#60;/p&#62;</description>
</item>
<item>
<title>danniellsen on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5150</link>
<pubDate>Tue, 05 Jan 2010 10:16:16 +0000</pubDate>
<dc:creator>danniellsen</dc:creator>
<guid isPermaLink="false">5150@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;hi&#60;br /&#62;
I have the avatar tab on the profile information, i click on it and links to the forum page???.&#60;br /&#62;
where the upload image dialog should be?&#60;br /&#62;
thanks&#60;br /&#62;
dan
&#60;/p&#62;</description>
</item>
<item>
<title>thierryyyyyyy on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5117</link>
<pubDate>Wed, 30 Dec 2009 18:56:23 +0000</pubDate>
<dc:creator>thierryyyyyyy</dc:creator>
<guid isPermaLink="false">5117@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Commenting the line 7 of  root/avatar-upload.php  as DanielJuhl just pointed out worked for me.&#60;br /&#62;
(&#60;code&#62;// bb_auth();&#60;/code&#62;)&#60;br /&#62;
Thanks a lot.
&#60;/p&#62;</description>
</item>
<item>
<title>fundomaat on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5039</link>
<pubDate>Thu, 10 Dec 2009 20:24:05 +0000</pubDate>
<dc:creator>fundomaat</dc:creator>
<guid isPermaLink="false">5039@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I've repaired the blank page error by putting the avatar.php file inside your template folder inside bb-templates instead of my-templates.
&#60;/p&#62;</description>
</item>
<item>
<title>DanielJuhl on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-5011</link>
<pubDate>Wed, 02 Dec 2009 10:43:00 +0000</pubDate>
<dc:creator>DanielJuhl</dc:creator>
<guid isPermaLink="false">5011@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;A lot of you are having problems with Avatar Upload, and the fact that you can't get to the upload-page '.../profile/Username/avatar' - the solution is to open the file 'avatar-upload.php' in the root-dir of bbPress.&#60;/p&#62;
&#60;p&#62;Line number 7 must be removed, dimmed out.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
This file is part of the Avatar Upload plugin
*/
require_once(&#38;#39;./bb-load.php&#38;#39;); // load bbPress config
//bb_auth(); // logged in?
bb_repermalink(); // Fix pretty-permalinks&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I think that bb_auth is an old function from bbPress 0.8.x
&#60;/p&#62;</description>
</item>
<item>
<title>brucini on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4962</link>
<pubDate>Sat, 21 Nov 2009 21:39:03 +0000</pubDate>
<dc:creator>brucini</dc:creator>
<guid isPermaLink="false">4962@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;hi&#60;/p&#62;
&#60;p&#62;I'm using this avatar upload plug in, but the avatar's appear below each post.&#60;br /&#62;
how can i display them in the sidebar with the posters name/details?&#60;br /&#62;
here's a thread as example: &#60;a href=&#34;http://theblackkeysfanlounge.com/forum/topic/blakroc&#34; rel=&#34;nofollow&#34;&#62;http://theblackkeysfanlounge.com/forum/topic/blakroc&#60;/a&#62;&#60;br /&#62;
using mysty theme&#60;br /&#62;
currently i have the avatar upload size set at 150 x 150 px, which i know is too wide for the existing sidebar.&#60;br /&#62;
so ideally i'd like to constrain the already uploaded member avatars and move them to the sidebar.&#60;br /&#62;
or i guess widen the sidebar and keep avatars at 150 x 150 px.&#60;br /&#62;
help...
&#60;/p&#62;</description>
</item>
<item>
<title>mran3 on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4868</link>
<pubDate>Thu, 05 Nov 2009 06:17:29 +0000</pubDate>
<dc:creator>mran3</dc:creator>
<guid isPermaLink="false">4868@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I've read the comments and it seems this plugin has great features but it still doesn't have gravatar integration, when it does I will install it right away. Keep up the good work. ;)&#60;/p&#62;
&#60;p&#62;Excuse me if my english isn't very good.&#60;/p&#62;
&#60;p&#62;He leido los comentarios y parece q este plugin aún no se integra con gravatar, cuando lo haga lo descargaré inmediatamente. Continúen con el fabuloso trabajo
&#60;/p&#62;</description>
</item>
<item>
<title>shiretoko on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4864</link>
<pubDate>Wed, 04 Nov 2009 13:43:28 +0000</pubDate>
<dc:creator>shiretoko</dc:creator>
<guid isPermaLink="false">4864@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Hi Jan_d,&#60;br /&#62;
I fixed the tab name problem by modifying augments of add_profile_tab() in bb-avatar-upload.php.&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
// line 173(bb-avatar-upload.php)&#60;br /&#62;
add_profile_tab(__(&#60;em&#62;'tab-title'&#60;/em&#62;), 'edit_profile', 'moderate', 'avatar-upload.php',&#60;strong&#62;'Avatar'&#60;/strong&#62;)&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
&#60;em&#62;tab-title&#60;/em&#62;: A string that you want to show in the profile-menu.&#60;/p&#62;
&#60;p&#62;If you want to show as 'Benutzerbild' in the profile-menu, modify augments like this.&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
add_profile_tab(__('Benutzerbild'), 'edit_profile', 'moderate', 'avatar-upload.php','Avatar');&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tiklak on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4829</link>
<pubDate>Wed, 28 Oct 2009 20:09:58 +0000</pubDate>
<dc:creator>tiklak</dc:creator>
<guid isPermaLink="false">4829@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;When i go to my profile and hit the avatar link. It takes me back to my forums page.&#60;br /&#62;
Any suggestions?-
&#60;/p&#62;</description>
</item>
<item>
<title>jimgozieo on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4827</link>
<pubDate>Wed, 28 Oct 2009 13:01:24 +0000</pubDate>
<dc:creator>jimgozieo</dc:creator>
<guid isPermaLink="false">4827@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Is there an &#34;approve avatar&#34; facility?&#60;br /&#62;
What I mean is, is there a facilty to ensure that the avatar does not appear on my forum until it has been seen and approved by my admin. So it would be in the queue pending approval by my admin, and the avatar would not display on my forum until my admin have approved it.&#60;br /&#62;
Does it have that facility? And if it does not, do you know of any avatar/gravatar plugin that does have that facility?
&#60;/p&#62;</description>
</item>
<item>
<title>heredia21 on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/8/#post-4780</link>
<pubDate>Tue, 20 Oct 2009 13:28:04 +0000</pubDate>
<dc:creator>heredia21</dc:creator>
<guid isPermaLink="false">4780@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;plugin not working. I installed the plugin. When i go to my profile and hit the avatar link. It takes me back to my forums page.&#60;br /&#62;
Any suggestions?-
&#60;/p&#62;</description>
</item>
<item>
<title>bduuzis on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/7/#post-4744</link>
<pubDate>Tue, 13 Oct 2009 19:37:46 +0000</pubDate>
<dc:creator>bduuzis</dc:creator>
<guid isPermaLink="false">4744@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;I have the same problem whitch is alesas! I do all the steps, but it doesn't work! :( Please, help me!&#60;br /&#62;
The plugin redirect to forums homepage.
&#60;/p&#62;</description>
</item>
<item>
<title>alesas on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/7/#post-4723</link>
<pubDate>Thu, 08 Oct 2009 14:03:30 +0000</pubDate>
<dc:creator>alesas</dc:creator>
<guid isPermaLink="false">4723@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I'm trying to install your plugin but I have an issue.&#60;/p&#62;
&#60;p&#62;I uploaded the files and activated the plugin, when I try to click on the tab &#34;Avatar&#34; on my profile page, I'm redirected to the forums homepage.&#60;/p&#62;
&#60;p&#62;Any guess?&#60;/p&#62;
&#60;p&#62;Thx for your contribution anyway :)&#60;br /&#62;
Alex
&#60;/p&#62;</description>
</item>
<item>
<title>Jan_d on "Avatar Upload"</title>
<link>http://bbpress.org/plugins/topic/avatar-upload/page/7/#post-4706</link>
<pubDate>Mon, 05 Oct 2009 15:29:35 +0000</pubDate>
<dc:creator>Jan_d</dc:creator>
<guid isPermaLink="false">4706@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Hello everybody,&#60;/p&#62;
&#60;p&#62;I have the same problem like pikatore above. I changed &#60;/p&#62;
&#60;p&#62;'&#60;br /&#62;
if ($self != 'avatar-upload.php') {&#60;br /&#62;
		add_profile_tab(__('Avatar'), 'edit_profile', 'moderate', 'avatar-upload.php');&#60;br /&#62;
	}&#60;br /&#62;
'&#60;br /&#62;
to&#60;br /&#62;
'&#60;br /&#62;
if ($self != 'avatar-upload.php') {&#60;br /&#62;
		add_profile_tab(__('Benutzerbild'), 'edit_profile', 'moderate', 'avatar-upload.php');&#60;br /&#62;
	}&#60;br /&#62;
'&#60;br /&#62;
which shows up fine in the profile-menu, but the user can't change his Avatar anymore. &#60;/p&#62;
&#60;p&#62;Is there any way to fix this?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
