Support » Plugins » [Plugin: User Access Manager] Missing elements on admin page

  • I’m having trouble getting the Manage user access groups section to fully load – when I view the page source, it tells me that the HTML loads up until the following:

    <th valign="top" scope="row">Categories <label>(<a class='selectit uam_group_stuff_link'>expand</a>)</label></th>
    
    <td><strong>Contains <span class='uam_element_count'>0</span> of 23 categories</strong>

    The code then ends and no submit button is present on the page. Plus there are no closing tags for <body> or <HTML>.

    I have nearly 3, 000 posts and think that memory may be maxing out before the whole page loads.

    Any help appreciated.

    http://wordpress.org/extend/plugins/user-access-manager/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter kev_wired

    (@kev_wired)

    Can anyone offer a logical explanation for this?

    Cheers

    Hi,

    you are right, this bug is because there are to many posts at your blog. I will start work on this in circa 3 weeks. An other user has send me a database dump with many posts.

    Bye,
    Alex

    Hi,

    I’m having the same problem. I only have three posts in my blog at the moment, so I guess the amount of posts isn’t the issue in my case.
    Any ideas what might cause this? I’m using worpress 2.9.2 and UAM 0.9.1.3

    Thank you,
    Jussi

    Hi here is the solution

    in your plugins/user-access-manager/user-access-manager.php

    Found the code around line 1691-1695

    <?php
    $args = array( ‘numberposts’ => -1,
    ‘post_type’ => ‘attachment’);
    $files = get_posts($args);
    ?>

    Remove it

    now the whole page can displayed

    if you still having the problem

    Remove the line around 1595-1597

    <?php
    $args = array(‘numberposts’ => -1);
    $posts = get_posts($args);
    ?>

    This should solve your problem now

    Thanks

    Hi,

    Can someone confirm that this plugin is no longer maintained, as last update was in July, 2009?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: User Access Manager] Missing elements on admin page’ is closed to new replies.