• ok, i’ve read ALL The posts on this. (see for reference:

    https://www.ads-software.com/tags/permissions
    https://www.ads-software.com/support/topic/53261?replies=79

    And i still can’t solve the dreaded “you don’t have sufficent permissions” problem in the dashboard.

    this is a new install of jd-wp 2.0_1.0RC2_predator.

    I checked the user meta table. the table is there with all the appropriate records. The funny thing about all of this is that the problem is intermittent. Sometimes i can login and use the blog, sometimes i can’t. I’m at a loss.

    I tried commenting these 3 lines in pluggable-functions:

    // $user = wp_cache_get($user_id, ‘users’);
    // if ( $user )
    // return $user;

    I tried to add these lines to the wp-config.

    define(‘DISABLE_CACHE’, true);
    set_magic_quotes_runtime(‘0’);
    ini_set(“magic_quotes_gpc”,”0″);

    Still the same issue.

    I tried uninstalling and reinstalling. I still have the same issue.

    i also pjh’s solution of running the sql on my db tables, but still nothing

    update x_options set option_name = ‘x_user_roles’ where option_name = ‘wp_user_roles’;
    Query OK, 1 row affected (0.00 sec)

    mysql> update x_usermeta set meta_key = ‘x_capabilities’ where meta_key = ‘wp_capabilities’;
    Query OK, 2 rows affected (0.25 sec)

    mysql> update x_usermeta set meta_key = ‘x_user_level’ where meta_key = ‘wp_user_level’;
    Query OK, 2 rows affected (0.00 sec)

    ———–
    now i’ve had it. anyone have a definitive solution to this issue?

    please keep in mind. i’m hosted (1and1.com) and i can’t edit my php.ini or http.conf.

    or. is 1.5.2 beta 3 more stable. Should I just go that route?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter buffnerd

    (@buffnerd)

    ok, so i took a look at the wp-admin/admin.php page. I echoed the user coming in from (i’m assuming joomla) see the lines below

    $mainframe = new mosMainFrame( $database, isset($option), ‘.’ );
    $mainframe->initSession();
    $my = $mainframe->getUser();

    echo $my->id;

    id is always being returned as zero. Any ideas on why that might be happening? seems like the problem is not a specific wp problem but possibly a joomla problem.

    Thread Starter buffnerd

    (@buffnerd)

    ok,

    narrowed it down. The problem is DEFINITELY with wordpress not getting the user from joomla. here’s what i did in wp-admin/admin.php I hacked the php file and set the

    $my->id = 62 //62 is the id of the admins user from joomla.

    when i do this, wp works like a charm.

    anyone know why wordpress is not be picking up the user name from the session? i’m using joomla 1.0.10

    Thread Starter buffnerd

    (@buffnerd)

    found it. it was a problem the joomla session. basically, i had the live site variable named wrong. it was set to buffnerd.com not https://www.buffnerd.com. Once i made the change everything worked.

    drop me a line if you need help with this one.

    hi there, i’m actually facing the same issue as you are. can you kindly shed some light on how to solve it please?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘you do not have sufficent priviliges on new install (yes I read all the posts)’ is closed to new replies.