已解决 禅道从12.5.3升级为15.5后没项目集和执行

禅道从12.5.3升级为15.5后没项目集和执行的目录选项

权限里面也没有,又谁知道怎么搞吗?

禅道版本 15.5 源码包
操作系统 CentOS
客户端浏览器 Chrome

提问者: 小公子 悬赏:10 日期: 2021-10-21 14:50:45 答案:2 点击:706

获取技术支持

QQ: 电话:
设置备注
答案列表
2021/10/21

您好!您的问题可以参考一下:https://www.zentao.net/book/extra/469.html 文中“四、全新项目集管理模式升级”。

在后台-自定义-模式中设置。希望对您有帮助!您也可以联系我们的商务,邀请进入交流群!


2021/10/21
我在自定义中,没有找到模式的选项
2021/10/21
您还有历史数据吗?是否可以用历史备份重新升级一下。
2021/10/21
2021/10/28
您可以备份一下zt_config表,然后执行:
update zt_config value='new' where `owner` = 'system',`module` = 'common',`section` = 'global',`key` = 'mode';
update zt_config value='0' where `owner` = 'system',`module` = 'custom',`section` = '',`key` = 'sprintConcept';
delete from zt_config where `owner` = 'system',`module` = 'common',`section` = 'global',`key` = 'changedMode';
2021/10/28
select * from zt_config where `owner` = 'system' and ((`module` = 'common' and `section` = 'global' and `key` in ('mode','changedMode')) or (`module` = 'custom' and `section` = '' and `key`='sprintConcept'));
2021/10/28
select * from zt_config where `owner` = 'system' and ((`module` = 'common' and `section` = 'global' and `key` in ('mode','changedMode')) or (`module` = 'custom' and `section` = '' and `key`='sprintConcept'));

update zt_config set value='new' where `owner` = 'system' and `module` = 'common' and `section` = 'global' and `key` = 'mode';
update zt_config set value='0' where `owner` = 'system' and `module` = 'custom' and `section` = '' and `key` = 'sprintConcept';
delete from zt_config where `owner` = 'system' and `module` = 'common' and `section` = 'global' and `key` = 'changedMode';