Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Hey, Upload size limit issues please help!

Ok it says this

if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’ ) ) {
if ( !$bp->site_options )
define( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, 5120000 ); /* 5mb */
else
define( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $bp->site_options * 1024 );
}

So the integer you gave me was wrong haha.. its in bytes

So I think its this line that’s screwing it up: define( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $bp->site_options * 1024 );

Skip to toolbar