Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Avatars disappeared after 1.2.3 upgrade!


kb734
Participant

@kb734

Same issue, just updated to 1.2.3 from 1.2.2.1 today and cannot upload a new avatar image since the old ones disappeared. Also had fatal errors when using the automatic upgrade. Needed to delete buddypress and do a complete fresh install.

In 1.2.2.1 needed to use the following to correct a cropping issue. Tried it on 1.2.3 and it does not help with the missing image. Not sure if this is still a problem in 1.2.3. Also using BP Album+.

To correct cropping issue:

Go to Settings -> Miscellaneous Settings

Set “Store uploads in this folder” to “wp-content/uploads”.

Set “Full URL path to files” to the REAL FULL PATH of your uploads.

Then change bp-core-avatars.php line 389:

Replace:

if ( !$path = get_option( ‘upload_path’ ) )

$path = WP_CONTENT_DIR . ‘/uploads’;

With:

if ( !$path = get_option( ‘upload_path’ ) )

$path = WP_CONTENT_DIR . ‘/uploads’;

else $path = ABSPATH . $path;

Skip to toolbar