<?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 Plugin Browser &#187; Topic: User Photo</title>
		<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/</link>
		<description>bbPress Plugin Browser &#187; Topic: User Photo</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 07:05:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/plugins/rss/topic/user-photo-for-bbpress" rel="self" type="application/rss+xml" />

		<item>
			<title>stevenitforall on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-6497</link>
			<pubDate>Fri, 06 May 2011 10:45:42 +0000</pubDate>
			<dc:creator>stevenitforall</dc:creator>
			<guid isPermaLink="false">6497@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>since I've integrated with wp can I show user photo from bbpress without install this plugin? Thanks in advance.
</p>]]></description>
					</item>
		<item>
			<title>stevenitforall on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-6496</link>
			<pubDate>Fri, 06 May 2011 10:44:09 +0000</pubDate>
			<dc:creator>stevenitforall</dc:creator>
			<guid isPermaLink="false">6496@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I cannot activate the plugin. I have fatal error: Cannot redeclare userphoto_profile_update() (previously declared in /wp-content/plugins/user-photo/user-photo.php:316)</p>
<p>Anyone can help to sort it out please?
</p>]]></description>
					</item>
		<item>
			<title>PS Vita on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-6486</link>
			<pubDate>Mon, 02 May 2011 16:08:27 +0000</pubDate>
			<dc:creator>PS Vita</dc:creator>
			<guid isPermaLink="false">6486@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>The latest version
</p>]]></description>
					</item>
		<item>
			<title>PS Vita Games on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-6412</link>
			<pubDate>Wed, 16 Mar 2011 11:55:23 +0000</pubDate>
			<dc:creator>PS Vita Games</dc:creator>
			<guid isPermaLink="false">6412@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>What BB version are you using?
</p>]]></description>
					</item>
		<item>
			<title>joan3691 on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-5736</link>
			<pubDate>Mon, 26 Apr 2010 22:42:18 +0000</pubDate>
			<dc:creator>joan3691</dc:creator>
			<guid isPermaLink="false">5736@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hey! I don't get this, I can't even get the upload box to be displayed. I put the following code at this position (within the stars):</p>
<p>&#60;?php bb_get_header(); ?&#62;</p>
<p>&#60;div class="bbcrumb"&#62;<a>"&#62;&#60;?php bb_option('name'); ?&#62;</a> &#187; <a>"&#62;&#60;?php echo get_user_display_name( $user_id ); ?&#62;</a> &#187; &#60;?php _e('Edit Profile'); ?&#62;&#60;/div&#62;<br />
&#60;h2 id="userlogin" role="main"&#62;&#60;?php echo get_user_display_name( $user-&#62;ID ); ?&#62; &#60;small&#62;(&#60;?php echo get_user_name( $user-&#62;ID ); ?&#62;)&#60;/small&#62;&#60;/h2&#62;<br />
&#60;form method="post" action="&#60;?php profile_tab_link( $user-&#62;ID, 'edit', BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS ); ?&#62;"&#62;<br />
&#60;fieldset&#62;<br />
&#60;legend&#62;&#60;?php _e('Profile Info'); ?&#62;&#60;/legend&#62;<br />
&#60;?php bb_profile_data_form(); ?&#62;<br />
&#60;/fieldset&#62;</p>
<p>//******************************************************<br />
&#60;?php<br />
if (function_exists('userphoto_display_selector_fieldset'))<br />
    userphoto_display_selector_fieldset($user-&#62;ID);<br />
?&#62;</p>
<p>&#60;?php<br />
if (function_exists('bb_get_photo'))<br />
    bb_get_photo($id);<br />
?&#62;<br />
/******************************************************</p>
<p>&#60;?php if ( bb_current_user_can( 'edit_users' ) ) : ?&#62;<br />
&#60;fieldset&#62;<br />
&#60;legend&#62;&#60;?php _e('Administration'); ?&#62;&#60;/legend&#62;<br />
&#60;?php bb_profile_admin_form(); ?&#62;<br />
&#60;/fieldset&#62;<br />
&#60;?php endif; ?&#62;</p>
<p>&#60;?php if ( bb_current_user_can( 'change_user_password', $user-&#62;ID ) ) : ?&#62;<br />
&#60;fieldset&#62;<br />
&#60;legend&#62;&#60;?php _e('Password'); ?&#62;&#60;/legend&#62;<br />
&#60;p&#62;&#60;?php _e('To change your password, enter a new password twice below:'); ?&#62;&#60;/p&#62;<br />
&#60;?php bb_profile_password_form(); ?&#62;<br />
&#60;/fieldset&#62;<br />
&#60;?php endif; ?&#62;<br />
&#60;p class="submit right"&#62;<br />
  &#60;input type="submit" name="Submit" value="&#60;?php echo esc_attr__( 'Update Profile &#187;' ); ?&#62;" /&#62;<br />
&#60;/p&#62;<br />
&#60;/form&#62;<br />
&#60;form method="post" action="&#60;?php profile_tab_link($user-&#62;ID, 'edit');  ?&#62;"&#62;<br />
&#60;p class="submit left"&#62;<br />
&#60;?php bb_nonce_field( 'edit-profile_' . $user-&#62;ID ); ?&#62;<br />
&#60;?php user_delete_button(); ?&#62;<br />
&#60;/p&#62;<br />
&#60;/form&#62;</p>
<p>&#60;?php bb_get_footer(); ?&#62;</p>
<p>Is it the right code? And is it at the right place?
</p>]]></description>
					</item>
		<item>
			<title>Damien on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-5637</link>
			<pubDate>Sat, 03 Apr 2010 06:08:17 +0000</pubDate>
			<dc:creator>Damien</dc:creator>
			<guid isPermaLink="false">5637@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Has anyone figured out how to display the user who started the posts avatar on the mainpage in place of the 'last posters' name?
</p>]]></description>
					</item>
		<item>
			<title>asorethumb on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-5469</link>
			<pubDate>Wed, 24 Feb 2010 05:10:45 +0000</pubDate>
			<dc:creator>asorethumb</dc:creator>
			<guid isPermaLink="false">5469@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hi, I'd really like to get this working, and I feel SO close.</p>
<p>I use User Photo for WordPress, and I have the paths set the same in both WP and BBpress, however, on BBpress, I am getting the red x/question mark where the photo should be. By right-clicking on this, I see that the path has my forum address IN FRONT of what the path should be.</p>
<p>Anyone have any idea how to correct this?
</p>]]></description>
					</item>
		<item>
			<title>dikkevandale on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-4820</link>
			<pubDate>Tue, 27 Oct 2009 16:39:01 +0000</pubDate>
			<dc:creator>dikkevandale</dc:creator>
			<guid isPermaLink="false">4820@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I'm already using the plugin for WordPress and everything seems to work fine. Only on my BBpress included part of the site the user photo's doesn't show up.</p>
<p>Now I also tried installing the plugin for BBpress but this doesn't work because the functions are already defines in WordPress.</p>
<p>Fatal error: Cannot redeclare userphoto_profile_update() (previously declared in ***********/wp-content/plugins/user-photo/user-photo.php:316)</p>
<p>How do I get the avatars get to work inside BBPress, I just can't install this plugin :/
</p>]]></description>
					</item>
		<item>
			<title>bikingtoronto on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/page/2/#post-3995</link>
			<pubDate>Fri, 17 Jul 2009 19:51:50 +0000</pubDate>
			<dc:creator>bikingtoronto</dc:creator>
			<guid isPermaLink="false">3995@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Well, I couldn't figure it out... so I tried <a href="http://bbpress.org/plugins/topic/avatar-upload/">Avatar Upload</a> and it seems to be working well. :)
</p>]]></description>
					</item>
		<item>
			<title>bikingtoronto on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-3966</link>
			<pubDate>Tue, 14 Jul 2009 20:19:01 +0000</pubDate>
			<dc:creator>bikingtoronto</dc:creator>
			<guid isPermaLink="false">3966@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Hi everyone,</p>
<p>I had no problem getting the upload form into profile-edit.php... but am having trouble getting phtoos to actually upload.  I have a folder named userphotos set up with chmod 777, but when I upload a photo, nothing gets loaded into that folder.</p>
<p>Does that folder need to be in the my-plugins folder?
</p>]]></description>
					</item>
		<item>
			<title>james.m.lafferty on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-3795</link>
			<pubDate>Thu, 02 Jul 2009 05:31:38 +0000</pubDate>
			<dc:creator>james.m.lafferty</dc:creator>
			<guid isPermaLink="false">3795@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>When I installed this plugin (I hadn't added many, as there aren't a whole lot for BBPress yet :-) ), I got frustrated for about ten seconds b/c the avatar pic I was trying to upload wasn't showing. Then I changed the permissions on the my-plugins folder and everything was hunky-dorey. Thanks for the plugin... very simple, and to the point. I look forward to its future updates!
</p>]]></description>
					</item>
		<item>
			<title>Detective on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-3047</link>
			<pubDate>Sun, 29 Mar 2009 17:03:13 +0000</pubDate>
			<dc:creator>Detective</dc:creator>
			<guid isPermaLink="false">3047@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I'll update the plugin to remove the "your-profile" requirement. </p>
<p>Check out this profile-edit.php example (edited from kakumei):</p>
<pre><code>&#60;?php bb_get_header(); ?&#62;

&#60;h3 class=&#34;bbcrumb&#34;&#62;&#60;a href=&#34;&#60;?php bb_option(&#39;uri&#39;); ?&#62;&#34;&#62;&#60;?php bb_option(&#39;name&#39;); ?&#62;&#60;/a&#62; &#38;raquo; &#60;?php _e(&#39;Edit Profile&#39;); ?&#62;&#60;/h3&#62;
&#60;h2 id=&#34;userlogin&#34;&#62;&#60;?php echo get_user_name( $user-&#62;ID ); ?&#62;&#60;/h2&#62;
&#60;form id=&#34;your-profile&#34; method=&#34;post&#34; action=&#34;&#60;?php profile_tab_link($user-&#62;ID, &#39;edit&#39;);  ?&#62;&#34;&#62;
&#60;fieldset&#62;
&#60;legend&#62;&#60;?php _e(&#39;Profile Info&#39;); ?&#62;&#60;/legend&#62;
&#60;?php bb_profile_data_form(); ?&#62;
&#60;/fieldset&#62;

&#60;?php userphoto_display_selector_fieldset($user-&#62;ID); ?&#62;

&#60;?php if ( bb_current_user_can( &#39;edit_users&#39; ) ) : ?&#62;
&#60;fieldset&#62;
&#60;legend&#62;&#60;?php _e(&#39;Administration&#39;); ?&#62;&#60;/legend&#62;
&#60;?php bb_profile_admin_form(); ?&#62;
&#60;/fieldset&#62;
&#60;?php endif; ?&#62;

&#60;?php if ( bb_current_user_can( &#39;change_user_password&#39;, $user-&#62;ID ) ) : ?&#62;
&#60;fieldset&#62;
&#60;legend&#62;&#60;?php _e(&#39;Password&#39;); ?&#62;&#60;/legend&#62;
&#60;p&#62;&#60;?php _e(&#39;To change your password, enter a new password twice below:&#39;); ?&#62;&#60;/p&#62;
&#60;?php bb_profile_password_form(); ?&#62;
&#60;/fieldset&#62;
&#60;?php endif; ?&#62;
&#60;p class=&#34;submit right&#34;&#62;
  &#60;input type=&#34;submit&#34; name=&#34;Submit&#34; value=&#34;&#60;?php echo attribute_escape( __(&#39;Update Profile &#38;raquo;&#39;) ); ?&#62;&#34; /&#62;
&#60;/p&#62;
&#60;/form&#62;
&#60;form method=&#34;post&#34; action=&#34;&#60;?php profile_tab_link($user-&#62;ID, &#39;edit&#39;);  ?&#62;&#34;&#62;
&#60;p class=&#34;submit left&#34;&#62;
&#60;?php bb_nonce_field( &#39;edit-profile_&#39; . $user-&#62;ID ); ?&#62;
&#60;?php user_delete_button(); ?&#62;
&#60;/p&#62;
&#60;/form&#62;

&#60;?php bb_get_footer(); ?&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>allthingsweb on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2971</link>
			<pubDate>Sun, 15 Mar 2009 00:22:52 +0000</pubDate>
			<dc:creator>allthingsweb</dc:creator>
			<guid isPermaLink="false">2971@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I was really excited to find this plugin. It seemed like it was the perfect thing. However...</p>
<p>You're installation instructions, and the answers on this page are simply not descriptive enough where details are imperative. You say put this in the template <code>profile-edit.php</code>, but you don't say where specifically. Saying 'in the form' just isn't descriptive enough, especially when it's all in code. It would be extremely helpful, and save a lot of time if you provided a line number in the code, or an example of where you put it like this:</p>
<p>Insert this line of code on line 49 of the profile-edit.php, right above the line that says: </p>
<p>                        // Find out if we have a valid email address<br />
	                if ( isset( $user_email ) &#38;&#38; ......</p>
<p>So it would look like this:</p>
<p>                       userphoto_display_selector_fieldset($user-&#62;ID);<br />
                     // Find out if we have a valid email address<br />
	              if ( isset( $user_email ) &#38;&#38; ......</p>
<p>I've tried it here too, and it still doesn't work. The only place I can see the upload field and button is if I put this code at the top on line 3 or 19, or at the bottom on line 137, but of course both of these locations are outside of the form. </p>
<p>You also mention that we should be putting in       id="your-profile"     in the form tag. But you don't provide the exact location, or the proper syntax. The double quotes will mess up the entire thing.   </p>
<p>I'd love to use this plugin. But after spending the last two hours trying to get it to work. I'm about ready to abandon it all together. If you could provide a little more specifics, like line numbers, and better descriptions as to where to place the code, web designers like me would would much happier with your product, and would be recommending it to others and using it for our clients projects.</p>
<p>Hoping for resolution... and still smiling.
</p>]]></description>
					</item>
		<item>
			<title>sockmoney on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2846</link>
			<pubDate>Mon, 23 Feb 2009 18:07:57 +0000</pubDate>
			<dc:creator>sockmoney</dc:creator>
			<guid isPermaLink="false">2846@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Nice plugin!  Works great after I added the <code>id="your-profile"</code> to the profile-edit.php
</p>]]></description>
					</item>
		<item>
			<title>lucynixon on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2679</link>
			<pubDate>Fri, 23 Jan 2009 13:33:36 +0000</pubDate>
			<dc:creator>lucynixon</dc:creator>
			<guid isPermaLink="false">2679@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Please explain where in the profile-edit.php I should enter the extra elements of code. The Readme says 'inside the form' but I'm not sure what that means, and I'm not getting any upload options displayed - so I'm obviously not doing it right!</p>
<p>Nor do I understand what is meant by the instruction to "add :id="your-profile" to the form tag that hosts your file upload HTML element in profile-edit.php". I'm not seeing anything about file uploads ...</p>
<p>I have created a new subdirectory with permissions set to 777, and I have edited the user-photo-for-bbpress.php file as instructed - but I think I'm failing at the profile-edit.php step.</p>
<p>Please help, as my few users are muttering about not being able to upload images of themselves once they've got through the registration.
</p>]]></description>
					</item>
		<item>
			<title>Vadi on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2217</link>
			<pubDate>Mon, 17 Nov 2008 01:03:12 +0000</pubDate>
			<dc:creator>Vadi</dc:creator>
			<guid isPermaLink="false">2217@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>I'm having issues with uploads too. The option to upload an avatar shows fine, however it doesn't upload anything and just keeps the avatar blank.</p>
<p>NandanNaik, could you please explain your solution a bit more?
</p>]]></description>
					</item>
		<item>
			<title>NandanNaik on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2072</link>
			<pubDate>Fri, 17 Oct 2008 06:13:20 +0000</pubDate>
			<dc:creator>NandanNaik</dc:creator>
			<guid isPermaLink="false">2072@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>@typvsns, Here's what you can do to fix the problem: Open profile_edit.php and add:<code>id="your-profile"</code> to the form tag that hosts your file upload HTML element. </p>
<p>This is because enctype="multipart/form-data" is added to the form via some javascript from the User Photo plugin. And this will not get added the way the form tag in profile_edit.php currently is, because the script looks for a form element with id="your-profile". You will need the enctype="multipart/form-data" added to form tag to successfully upload files.
</p>]]></description>
					</item>
		<item>
			<title>Shagalaga on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2063</link>
			<pubDate>Wed, 15 Oct 2008 22:27:52 +0000</pubDate>
			<dc:creator>Shagalaga</dc:creator>
			<guid isPermaLink="false">2063@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>how can i show up the Avatar on the frontpage?
</p>]]></description>
					</item>
		<item>
			<title>typvsns on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2054</link>
			<pubDate>Mon, 13 Oct 2008 21:15:34 +0000</pubDate>
			<dc:creator>typvsns</dc:creator>
			<guid isPermaLink="false">2054@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>Help!! I have installed the plugin just as the instructions say. I added the code to the profile_edit.php file and the upload box and link show up on my profile edit pages. I even set the url's in the user-photo-for-bbpress.php file but it's still not working. I am a newby at PHP. Can someone tell me what I am doing wrong here? It allows me to hit browse, select the file and then when I hit update profile it does not upload the file. I made sure to set my folder it's supposed to upload to as 777. HELP!!!
</p>]]></description>
					</item>
		<item>
			<title>pircy on "User Photo"</title>
			<link>http://bbpress.org/plugins/topic/user-photo-for-bbpress/#post-2021</link>
			<pubDate>Sat, 04 Oct 2008 09:38:57 +0000</pubDate>
			<dc:creator>pircy</dc:creator>
			<guid isPermaLink="false">2021@http://bbpress.org/plugins/</guid>
			<description><![CDATA[<p>It works, but i have placed ;  enctype="multipart/form-data" in the form in profile-edit.php ...</p>
<p>Great...
</p>]]></description>
					</item>

	</channel>
</rss>

