Can't add related module block to the main layout - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Can't add related module block to the main layout (/showthread.php?tid=1768) Pages:
1
2
|
RE: Can't add related module block to the main layout - addady2 - 04-27-2020 Can't find some thing suspicious: Code: grep -R --include=en_us.lang.php "Activities" Quote:modules/Reports/language/en_us.lang.php:'Last Month Activities'=>'Last Month Activities', Quote:grep -R --include=en_us.lang.php "cbtranslation" Code: modules/cbtranslation/language/en_us.lang.php: 'cbtranslation' => 'Translations', Maybe its in the DB ? RE: Can't add related module block to the main layout - joebordes - 04-27-2020 can you look in vtiger_tab, and show me the row with id = 64 RE: Can't add related module block to the main layout - addady2 - 04-27-2020 select * from vtiger_tab where tabid = 64; +-------+---------------+----------+-------------+---------------+------------+--------------+------------+---------+--------------+---------+----------+ | tabid | name | presence | tabsequence | tablabel | modifiedby | modifiedtime | customized | ownedby | isentitytype | version | parent | +-------+---------------+----------+-------------+---------------+------------+--------------+------------+---------+--------------+---------+----------+ | 64 | cbtranslation | 0 | -1 | cbtranslation | NULL | NULL | 1 | 0 | 1 | 0 | Settings | +-------+---------------+----------+-------------+---------------+------------+--------------+------------+---------+--------------+---------+----------+ RE: Can't add related module block to the main layout - joebordes - 04-27-2020 that is the problem, for some reason the relatedlists entry is establishing the connection with the translation module, not the calendar. look for the cbCalendar row in vtiger_tab, then change the 64 in the related_module column of vtiger_relatedlists for the get_activities row and try again RE: Can't add related module block to the main layout - joebordes - 04-27-2020 you should check if there are some other relations in the same situation. do you have any idea how that could have happened? RE: Can't add related module block to the main layout - addady2 - 04-28-2020 Quote:that is the problem, for some reason the relatedlists entry is establishing the connection with the translation module, not the calendar. look for the cbCalendar row in vtiger_tab, then change the 64 in the related_module column of vtiger_relatedlists for the get_activities row and try again Thank you is solve the issue. In vtiger_relatedlists all the get_activities point to the wrong vtiger_tab. I have no clue why ! RE: Can't add related module block to the main layout - joebordes - 04-28-2020 very strange. glad you got it workng |