Re: Avatar Upload Issues
Success!
JJJ – I implemented your fix mentioned above and here: https://trac.buddypress.org/ticket/1970
*****
bp-core-avatars.php line 389
Replace
if ( !$path = get_option( 'upload_path' ) )<br />
$path = WP_CONTENT_DIR . '/uploads';<br />
With:
if ( !$path = get_option( 'upload_path' ) )<br />
$path = WP_CONTENT_DIR . '/uploads';<br />
else<br />
$path = ABSPATH . $path;</p>
<p>
and then in “Settings >> Miscellaneous” simply kept “Store uploads in this folder” as wp-content/uploads and in “Full URL path to files” added the full url path of the uploads folder: http://www.yoursite.com/wp-content/uploads
Worked beautifully! Thanks so much all for all your help!!