Forum Replies Created

Viewing 2 replies - 16 through 17 (of 17 total)
  • i do have the upgrade buttons but when i enter FTP info for the automatic updates i get thiserror:

    Unable to locate WordPress Content directory (wp-content).
    
    Installation Failed

    i entered my ftp host adress, a login that goes to the root of my webspace, and a correct password.
    now my wordpress is in a folder called ./blog/
    but when i add /blog to my ftp host adress (or even /blog/wp-content/) i get even worse errors about not being able to login to my FTP,…..

    what to do ?

    Thanks a lot @tibor and @davecahill, together you solved my problem using the Plainbox theme (based on K2) in the posts above. To me this is what did it:

    To fix the error:
    navigate to your K2 folder -> app -> includes
    edit the file widgets-removal.php as below

    Change the contents of the file from:

    <?php
    if (get_option(‘k2sidebarmanager’) == ‘1’) {
    remove_action(‘plugins_loaded’, ‘wp_maybe_load_widgets’, 0);
    }
    ?>
    to

    <?php
    if (get_option(‘k2sidebarmanager’) == ‘1’) {
    remove_action(‘plugins_loaded’, ‘wp_maybe_load_widgets’, 0);
    if( is_admin() )
    {global $pagenow; if( $pagenow == ‘index.php’ ) wp_maybe_load_widgets();
    }
    }
    ?>

    (That was Tibor’s advice, with davecahill’s correction).

Viewing 2 replies - 16 through 17 (of 17 total)