SuiteCRM编辑主要模块html和js错误

问题描述 投票:0回答:1

当尝试更改要在Lead中显示的字段时,编辑面板会生成错误,我不明白为什么。 开发控制台说它缺少图像,但我不明白为什么它会破坏HTML ...

enter image description here

enter image description here

enter image description here

感谢那些可以帮助我的人!

php suitecrm
1个回答
0
投票

这看起来像.htaccess或文件夹权限问题。

如果您使用的是apache,请确保生成的.htaccess文件具有正确的权限。

您可以使用此bash命令(linux)快速修复您的权限(确保在最后一个命令中更新apache用户,将其设置为centos / redhat使用的apache用户,以便ubuntu更改为www-data)

find . -type d -exec chmod 0755 {} \; &&  find . -type f -exec chmod 0644 {} \; 
chmod -R 775 cache custom modules themes data upload  config_override.php  config.php
chown -R apache:apache .
© www.soinside.com 2019 - 2024. All rights reserved.