Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 126 through 150 (of 196 total)
  • @foxly

    Participant

    @Gpo1 – have a look at the beta we just posted here. It will probably solve your problem.

    @Gene53 – we’re adding sorting options and javascript drag-and-drop image re-ordering in the very near future. The beta posted above sorts images newest-to-oldest by default. So it already does what you want.

    Thanks!

    ^F^

    @foxly

    Participant

    Here’s the latest beta release of BP Album+

    Now with ALBUMS, album-based workflow, and multi-size images like Flickr!

    https://plugins.svn.wordpress.org/bp-album/branches/foxly/0.1.9.1/bp-album-BETA-0-1-9-1.zip

    This beta also features fully documented WordPress-Compliant source code, so if you’re a developer it will be easy for you to understand and help us extend the plugin.

    To install this beta, you’ll need to wipe-out the previous version’s plugin directory and database tables. Also, go to the admin screen and click “save” before starting to use the plugin. It makes the plugin auto-generate the default album thumbnail image.

    Next up:

    1) High quality template files to show-off all the new features we added, and properly working pagination.

    2) Bulk media uploader

    3) Albums for groups

    4) Streaming video like YouTube. (Obviously, you’ll need a dedicated server for this so you can install Red5)

    ^F^

    PS: Could somebody take some screen caps and post them to the forum so everyone can see the new features? Thanks!

    @foxly

    Participant

    Here’s the latest beta release of BP Album+

    Now with ALBUMS, album-based workflow, and multi-size images like Flickr!

    https://plugins.svn.wordpress.org/bp-album/branches/foxly/0.1.9.1/bp-album-BETA-0-1-9-1.zip

    This beta also features fully documented WordPress-Compliant source code, so if you’re a developer it will be easy for you to understand and help us extend the plugin.

    To install this beta, you’ll need to wipe-out the previous version’s plugin directory and database tables. Also, go to the admin screen and click “save” before starting to use the plugin. It makes the plugin auto-generate the default album thumbnail image.

    Next up:

    1) High quality template files to show-off all the new features we added, and properly working pagination.

    2) Bulk media uploader

    3) Albums for groups

    4) Streaming video like YouTube. (Obviously, you’ll need a dedicated server for this so you can install Red5)

    ^F^

    PS: Could somebody take some screen caps and post them to the forum so everyone can see the new features? Thanks!

    @foxly

    Participant

    @ella_j_designs, @jivany

    We are indeed working on this functionality. Join the BP Album+ discussion thread to help shape how we implement this feature!

    https://buddypress.org/forums/topic/bp-album-new-features-requests-and-discussion

    ^F^

    @foxly

    Participant

    @Xevo – Thanks!

    @connor-mccarra – Maybe later today, maybe tomorrow. I’m debugging the albums component at the moment.

    ^F^

    @foxly

    Participant

    @gregfielding – What you’re describing is called “short code” functionality, and we’re building it in to the next release.

    It lets you embed an media item or album into a blog post using a tag like [album id=”kittens” size=”medium”].

    When you embed a media album, it embeds the album’s cover item in the post. Clicking on the image takes you to the actual album page.

    For the time being, users are only allowed to embed their own content. Otherwise it gets rather complicated in terms of who is allowed to embed content that belongs to which user, and what kinds of content a given user is allowed to embed.

    For example, consider what would happen if a user was friends with another user allowing them to see a private album the other user owned, and then the first user embedded content from the other user’s private album in one of their blog posts.

    ^F^

    @foxly

    Participant

    Everything will be made configurable in upcoming releases, but for now the easiest way for you to change it would be to edit the plugin’s translation (.po) file.

    ^F^

    @foxly

    Participant

    @MrMaz – Glad to see you’re on top of it. Soldier on!

    ^F^

    @foxly

    Participant

    @francescolaffi – you’re probably right. After going through the BP Links plugin, it looks like there is actually very little overlap with BP Album+.

    ^F^

    @foxly

    Participant

    @francescolaffi @21cdb

    Perhaps we can just merge the BP Links codebase into ours, and then all of us work on a unified media plugin. I spent some time debugging the BP Links plugin yesterday and it looks like they have well documented code.

    ^F^

    @foxly

    Participant

    @Andy Peatling – Very sad to be in hall of shame :( :(

    1) Version 0.1.6 of BP Album+ that is posted on the WordPress plugin repository checks that BP is installed exactly as you have specified. Can you be a bit more specific about the defect?

    2) I completely agree that current_user_can() is a better way to check for permissions in various plugin operations; and we will switch to the new function at the next BP Album+ release as per your request. In the meantime, why is using is_site_admin() so bad? Doesn’t current_user_can() just pass the call to is_site_admin() ?

    /**

    * Whether current user has capability or role.

    *

    * @since 2.0.0

    *

    * @param string $capability Capability or role name.

    * @return bool

    */

    function current_user_can( $capability ) {

    $current_user = wp_get_current_user();

    if( is_site_admin() ) <—- *NOTE*

    return true;

    if ( empty( $current_user ) )

    return false;

    $args = array_slice( func_get_args(), 1 );

    $args = array_merge( array( $capability ), $args );

    return call_user_func_array( array( &$current_user, ‘has_cap’ ), $args );

    }

    ^F^

    @foxly

    Participant

    @21cdb – Its open on my workstation right now, getting written. I’m just checking over some of our source files right now to make sure all of our functions properly deal with the situation that was causing the defect in BP Links. Then it’s back to work on the multiple album capabilities.

    I would guess perhaps 2 or 3 days more work before we post another beta.

    Following that, we’re going to be doing all our dev work through the WordPress SVN, so you’ll be able to download updated files like …every night, if you want to.

    We are currently working on:

    1) Multiple albums for each user

    2) Album-based workflow. Basically a copy of Facebook’s Photo app.

    3) Albums for groups.

    While FaceBook is a good start, nobody has ever implemented an effective albums for groups application before, so there is no “gold standard” for us to copy. You can greatly accelerate the development process by helping us design one.

    We use something called a “user story” to describe BP Album+ from different points of view:

    http://en.wikipedia.org/wiki/User_stories

    Can you guys write a user story from the point of view of:

    1) An administrator

    2) An anonymous user off the Internet

    3) A logged-in member viewing their own profile

    4) A logged-in member viewing a friend’s profile

    5) A logged-in member viewing a stranger’s profile

    ^F^

    @foxly

    Participant

    Regarding problems with the BuddyPress Links plugin… ;)

    Found the defect.

    The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.

    When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.

    This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.

    Here’s a simple patch:

    1) In “bp-links-classes.php” at line 650

    REPLACE:

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    WITH:

    if (function_exists(‘friends_check_friendship’)) {

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    }

    2) In “bp-links-core.php” at line 1128

    REPLACE:

    return friends_check_friendship( $user_id, $link->user_id );

    WITH:

    if (function_exists(‘friends_check_friendship’))

    return friends_check_friendship( $user_id, $link->user_id );

    else

    return null;

    ============================================================================

    WordPress MU 2.9.2

    BuddyPress Version 1.2.3

    BuddyPress Links Version 0.3.2

    BP Album+ 0.1.8 beta

    ^F^

    @foxly

    Participant

    @stwc – Found the defect.

    The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.

    When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.

    This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.

    Here’s a simple patch:

    1) In “bp-links-classes.php” at line 650

    REPLACE:

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    WITH:

    if (function_exists(‘friends_check_friendship’)) {

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    }

    2) In “bp-links-core.php” at line 1128

    REPLACE:

    return friends_check_friendship( $user_id, $link->user_id );

    WITH:

    if (function_exists(‘friends_check_friendship’))

    return friends_check_friendship( $user_id, $link->user_id );

    else

    return null;

    ============================================================================

    WordPress MU 2.9.2

    BuddyPress Version 1.2.3

    BuddyPress Links Version 0.3.2

    BP Album+ 0.1.8 beta

    ^F^

    @foxly

    Participant

    @stwc – Sounds like you found a defect in the BP Album+ plugin.

    I’m on it!

    ^F^

    @foxly

    Participant

    @Mike Pratt – We are in serious dev mode… ;)

    ^F^

    @foxly

    Participant

    @ VERY excited! – Post a copy on your own site and the post a

    … link it here@

    ^F^

    @foxly

    Participant

    @Anointed – Much of the tings you describe are already scheduled for a future upgrade.

    @hlna. Only one upload for now, it will be * magnificent * Thumb generation on the user site. Color correction, rotating imaged, I’l be like a whole remote end for BP album!

    ^F^

    Oh: yes, and we can automatically import Flickr Albums to Album. But the user has to send them an API key to make sure they have permission.!

    @foxly

    Participant

    @Andy Peatling

    5 Stars, and tagged at “Works”

    ^F^

    @foxly

    Participant

    @hnla – Just post a link to where I can download the plugin you’re talking about, and I’ll go take a look at it and see how easy to work with it.

    ^F^

    @foxly

    Participant

    @Mike Pratt – Good luck on your presentation. DFW rocks… spent way, way too much time in the DWF airport back when I was helping create the 3D terrain maps Google uses for their mapping products, a few years back.

    ^F^

    @foxly

    Participant

    @gian-ava – What error did BP Album+ throw after your upgrade? Please post a copy of the error text.

    ^F^

    @foxly

    Participant

    @Modemlooper, @Travel-Junkie, @paulhastings0, @21cdb, @Sadr, @Mike Pratt, and @lukeroge

    Okay, well it looks like we have 95% in favor of an “album based” workflow and 5% undecided …so I’m going to go ahead and add this functionality to this coming Monday’s beta.

    ^F^

    @foxly

    Participant

    @Tosh – The annoying activity stream problem you are experiencing is being caused by the edits you have made to the CSS file on your website. Basically, you’re telling the browser “Take every entry in the activity stream and float it over to the left” Because the thumbnail is the tallest element in the div, it sets the effective width, not the text, and so you end up with the images “catching” on each other instead of bumping down to a new line. You can probably fix this by setting the width of the containing element to 100%.

    This sort of thing is why we encourage users to only test the plugin on the default theme. :)

    @calvinhsu – probably a good idea. Fairly easy to add using the image meta tags.

    @Jedbarish – The FaceBook and Flickr templates improve the look of thumbnails with diverse aspect ratios by rigidly enforcing layout. The difference between scale and resize is that resize works on a square canvas and scale works on an arbitrarily defined one. You can have “Widescreen” thumbnails using scale if you want.

    @pcwriter – Oh yes, the tag links will be replaced with a thumbnail of the gallery’s first photo. The text links were just for the beta. *Click on the arrow to the left of the tag*

    @Anointed – It’s certainly possible. We’ll look into it after we get the rest of the core features implemented.

    @Mike Pratt – Good point.

    Oh, one other thing I forgot to mention. You guys noticed that you could re-order your albums by clicking on the “arrows” below the thumbs, right?

    ^F^

    @foxly

    Participant

    NOTE: This will wipe-out all your saved albums.

    Go into wp-content /blogs.dir /user / files / album

    and delete all of the image files.

    delete the DB tables as in previous post.

    Deactivate, reactivate.

    Then it should work.

    ^F^

Viewing 25 replies - 126 through 150 (of 196 total)
Skip to toolbar