Just did this and I have the full dashboard drop down back. But I still don't get this, because there is just 1 user, i.e. admin, why didn't admin has full access right after install? Below are the sql table dump, you'll see nothing 'cos there is just one admin, no other user.
CREATE TABLE IF NOT EXISTS `habari__groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `habari__groups` -- INSERT INTO `habari__groups` (`id`, `name`) VALUES (1, 'admin'), (2, 'anonymous'); and CREATE TABLE IF NOT EXISTS `habari__group_token_permissions` ( `group_id` int(10) unsigned NOT NULL, `token_id` int(10) unsigned NOT NULL, `access_mask` tinyint(3) unsigned NOT NULL, PRIMARY KEY (`group_id`,`token_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `habari__group_token_permissions` -- INSERT INTO `habari__group_token_permissions` (`group_id`, `token_id`, `access_mask`) VALUES (1, 0, 15), (2, 1, 1), (2, 0, 1); On Sat, Feb 14, 2009 at 11:05 AM, Matt Read <[email protected]> wrote: > > add define('LOCKED_OUT_SUPER_USER', '{username here}'); to your > config.php. that will allow you temporary access as superuser/admin > for the given username. after that you can enter the groups page and > assign all permission for yourself then remove that define. > > But before you do that, could you possibly provide a DB dump for all > the groups and tokens related tables as well as any habari/apache/php > log entries you find relating to DB errors? that way we can see what > is not being upgraded/installed. someone had this problem today with > an upgrade... > > On Fri, Feb 13, 2009 at 9:28 PM, sfong15 <[email protected]> wrote: > > > > Upped to r3195, it solved one part, i.e. entries can be displayed when > > logged out (no entries displayed when logged in). However the > > dashboard drop down is still incomplete (got only new/manage/dashboard/ > > logout) and access is still denied when clicking 'sysinfo'. > > > > On Feb 13, 8:50 pm, sfong15 <[email protected]> wrote: > >> Looks like this is problem with ACL, one of my live site failed to > >> display any entries after upping to r3193. > >> > >> On Feb 13, 4:23 pm, sfong15 <[email protected]> wrote: > >> > >> > PS: got also this error > >> > >> > Notice: Undefined offset: 1 in system\classes > >> > \socketrequestprocessor.php line 119 > >> > >> > On Feb 13, 4:12 pm, sfong15 <[email protected]> wrote: > >> > >> > > This must be my nth times of installing Habari under XAMPP (Win7 > >> > > beta). > >> > >> > > Everything went OK but when I logged in as admin (no other users > >> > > created, first log in), I see only "new/manage/dashboard/logout" > from > >> > > the drop down, where are other things. Whenever I click I got > >> > > "Access to that page has been denied by the administrator", but I'm > >> > > logged in as admin? > >> > >> > > By the way this is r3193. > >> > >> > > Also I did published a few post but can't see them until I have > logged > >> > > out. > > > > > > > > > -- > Matt Read > http://mattread.com > > > > -- See me at http://am.notsowise.net --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/habari-users -~----------~----~----~----~------~----~------~--~---
