• Hi,
    I’ve got same problem as others were experiencing after the upgrade to 3.1.3

    Media library not working after upgrade 3.1.3

    The attachments are uploaded, and are viewable in the uploads folder, but they do not show in the media library. The correct number of media files are shown in the media library, but no listing underneath.

    But – and here’s the snag.

    I don’t have any plugins installed, its a vanilla install of WordPress 3.2, and the only thing I have installed is the Quality Control theme.

    I’ve tried adding the hotfix – this didnt do anything and I added the following to the themes functions.php

    add_filter( 'request', 'wp_hotfix_313_post_status_query_string_request' );
    
    function wp_hotfix_313_post_status_query_string_request( $qvs ) {
    if ( isset( $qvs['post_status'] ) && is_array( $qvs['post_status'] ) )
    $qvs['post_status'] = implode( ',', $qvs['post_status'] );
    return $qvs;
    }

    and this doesnt work either.

    Does anyone have any bright ideas?

Viewing 5 replies - 1 through 5 (of 5 total)
  • As far as I am aware, the Hotfix plugin does not include any fixes for 3.2 yet. So if you don’t already have it installed when running 3.1x, don’t bother installing it just yet. Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the Twenty Eleven theme to rule out any theme-specific problems.

    resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    Thread Starter whonickedmyname

    (@whonickedmyname)

    Ah this might explain why that didn’t do anything then.

    I’ve not got any plugins installed.

    It is theme specific as the twenty eleven theme, once activated, corrects the problem (without having to do anything).

    In that case, I’m sorry but it looks like you need to find a new theme. ??

    Thread Starter whonickedmyname

    (@whonickedmyname)

    I had a feeling that was coming ??

    I can’t actually switch themes. This one creates a custom form that turns the site into a bug tracking / enhancement request site.

    I will keep investigating and see what I can come up with.

    This link helped in our situation. Hope it works for you but, the theme could be a problem as well.

    wordpress-media-library-not-working

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[WP 3.2] Media Library not working – Hotfix doesnt fix it’ is closed to new replies.