Results 1 to 7 of 7

Thread: Cant find module on menu tab!!

  1. #1
    kinshibuya's Avatar
    kinshibuya is offline A Sugar Hero
    Join Date
    Jul 2008
    Location
    brasil
    Posts
    521

    Default Cant find module on menu tab!!

    Hi i'm using 5.1 CE and I "lost" my module's tab on the menu!!!

    I already put the code:

    $moduleList[] = 'oqc_Contract';

    foreach($modInvisList as $id => $module) {
    if($module == 'oqc_Contract') {
    unset($modInvisList[$id]);
    }
    }

    on custom/Extension/application/Ext/Include

    I did rebuilt and repair. But nothing happens! I saw the hidden tabs and it's not there!!!! HELP!

  2. #2
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Cant find module on menu tab!!

    Hi kinshibuya

    How are you in Portuguese?
    Take a look at the config table.
    There is a row whose category is "MySettings" and name is "tab". I believe the value is a long string (serialized array).
    Update this row erasing the value and try again.
    It happens when you configure the tabs.
    When this row has a serialized array as value sugar ignore the modList when rendering the tabs.

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  3. #3
    sibsam is offline Junior Member
    Join Date
    Mar 2008
    Posts
    2

    Default Re: Cant find module on menu tab!!

    Hi,

    It's a pretty old post I know
    I have the same problem and can't find any way to bring my tab back to life !!!!
    The module was created without the tick in the box for navigation in module builder (Sugar 5.0)
    and now I need to show the tab, but even when I delete the lines below in "custom/application/Ext/Include/modules.ext.php", rebuilding extensions and everything, no way to see the tab in the list Admin>Configure Tabs

    $beanList['INO_HolidayCounterRegulation'] = 'INO_HolidayCounterRegulation';
    $beanFiles['INO_HolidayCounterRegulation'] = 'modules/INO_HolidayCounterRegulation/INO_HolidayCounterRegulation.php';
    //$modules_exempt_from_availability_check['INO_HolidayCounterRegulation'] = 'INO_HolidayCounterRegulation';
    //$modInvisList[] = 'INO_HolidayCounterRegulation';
    $moduleList[] = 'INO_HolidayCounterRegulation';

    I even tried to delete the row in Table config as you mentioned, and it didn't work either.
    Any clue?

    Thanks a lot
    Last edited by sibsam; 2010-01-20 at 02:35 PM. Reason: more details

  4. #4
    sibsam is offline Junior Member
    Join Date
    Mar 2008
    Posts
    2

    Default Re: Cant find module on menu tab!!

    OK ... Found it ....
    Seems like EVEN when your user is admin, if you don't have the role allowing you to access the module you're trying to set the tab display for, you can't see the tab neither in the available tabs on top of the page (which is normal), nor in the Admin>configure tabs page ... which is actually less obvious ...

    Hope this helps someone else to avoid losing half a day on such stupid issues

  5. #5
    mvngti is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    South Africa
    Posts
    510

    Default Re: Cant find module on menu tab!!

    Quote Originally Posted by andopes View Post
    Take a look at the config table.
    There is a row whose category is "MySettings" and name is "tab". I believe the value is a long string (serialized array).
    Update this row erasing the value and try again.
    It happens when you configure the tabs.
    When this row has a serialized array as value sugar ignore the modList when rendering the tabs.
    Tx, Andre!

    I just spent a couple of hours trying to figure out why modInvisList and moduleList is not working as expected.

    M
    --


    Marnus van Niekerk

    There are only 10 types of people in the world
    those who can read binary and those who don't

    Modules:
    CE Teams - Upgrade safe teams module for Community Edition
    FieldACL - Field Level Access Control for Community Edition
    EditLogicHooks - Create and edit Logic Hooks from the Admin GUI
    FlexibleChartDashlet - Display any data in a Dashlet Chart
    DocumentThumbnails - Thumbnails for Documents module

    Many questions can be answered by reading the Developers Manual

  6. #6
    LucioFiamingo is offline Sugar Community Member
    Join Date
    Jul 2009
    Posts
    29

    Default Re: Cant find module on menu tab!!

    I have the same problem! Where I find the "config table" ?

  7. #7
    pbel is offline Sugar Community Member
    Join Date
    Dec 2011
    Posts
    18

    Default Re: Cant find module on menu tab!!

    Quote Originally Posted by LucioFiamingo View Post
    I have the same problem! Where I find the "config table" ?
    Hi
    In your (MySQL)-Database. Table is called config. If you are hosting your sugarcrm solution maybe you can go to a phpmyadmin offered by your hosting provider.

    This SQL should fix it (did it for me - without any gurantee):
    UPDATE `config`
    SET value = null
    WHERE `category` = 'MySettings' and name= 'tab'

    Regards
    Petr

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Enabling import on a custom module in Sugar 5.0
    By clint in forum Developer Help
    Replies: 29
    Last Post: 2009-07-14, 06:09 AM
  2. How to addd Tab control in Custom module?
    By crazy in forum Developer Help
    Replies: 2
    Last Post: 2008-11-25, 11:11 AM
  3. Blank tab for SuperTimesheet module
    By tekneke in forum Help
    Replies: 0
    Last Post: 2008-06-13, 02:30 PM
  4. Module Tab not showing after migration server
    By rasch in forum Developer Help
    Replies: 1
    Last Post: 2005-11-16, 10:28 AM
  5. Module not shown in head tab list, but shown in SubPanel
    By Superman in forum General Discussion
    Replies: 0
    Last Post: 2005-11-14, 06:30 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •