Hello,
I’ve installed YUM successfully in my development 
But… When the module is called, to show the "admin" page, the MBmenu widget I use, shows only 5 items (there are a few more items on "HOME" link in my application)
Is there a way to show my app complete menu on the admin page? Is there something i’m missing?.. It seems YUM layout is taking control of my entire layout… 
I was “trying” to inherit the YumUserController as suggested on tutorial “Implementing a Registration…” with another controller. It didn’t help 
Would you give me some “guide” to use YUM and avoid YUM “destroys” the render of my “main.php” layout? or any tuttorial i should read to complete the info i already have? (i’ve read Vdox folder, this thread, and tuttorial i mentioned)
Thanks a lot in advance…
Regards,
E.
PS:
a piece of my main.php config, as you suggest:
'modules' => array(
'gii' => array(
'class' => 'system.gii.GiiModule',
'password' => 'IWontTellYou:P',
),
'registration' => array(),
'avatar' => array(),
'role' => array(),
'messages' => array(),
'usergroup' => array(),
'membership' => array(),
'profile' => array(),
'friendship' => array(),
'user' => array(
'debug' => true,
'baseLayout' => 'application.views.layouts.main',
'layout' => 'application.views.layouts.column2',//tried 'column2'
'loginLayout' => 'application.modules.user.views.layouts.yum',
'adminLayout' => 'application.modules.user.views.layouts.yum',
)
PS2: I attached a screenshot of both instances, up before call your module, down after.

PS3: I realized that I need to change ‘adminLayout’ to ‘application.views.layouts.column2’… Now I have to figure out how to “show” the CPanel… Was it right? :-S
PS4: this is not necesary at all…Above is the fix 