我正在使用#/usr/bin/expect -f
spawn adduser testuser
expect "Enter new UNIX password"
send "testpassword\r"
expect "Retype new UNIX password"
send "testpassword\r"
expect " Full Name []: "
send "\r"
expect " Room Number []: "
send "\r"
expect " Work Phone []: "
send "\r"
expect " Home Phone []: "
send "\r"
expect " Other []: "
send "\r"
expect "Is the information correct? \[Y/n\] "
send "\r"
版本。
在此之前我使用suitecrm 7.7
我在suitecrm 7.3中遇到了一些问题,所以转移到了suitecrm 7.7但后端我只使用相同的旧数据库。
我在suitecrm 7.3.
创建了一些下拉列表。我想将这些下拉列表导入suitecrm 7.7
请告诉我存储suitecrm 7.3 dropdown editor
个值的文件。
答案 0 :(得分:1)
以上答案是特定于Windows的,涉及使用Notepad ++搜索目录中的字符串。
存储这些值的文件通常是: [SuiteCRM DocRoot] /include/language/en_us.lang.php
答案 1 :(得分:1)
通常他们会进入扩展名...
位置取决于模块或应用程序级别。
1)模块级扩展将在那里.. custom / Extension / modules / module_name / Ext / Language
2)应用程序级别扩展将在那里... 自定义/扩展名/应用程序/扩展名/语言/
3)此位置可能也有变化... 自定义/包含/语言/
请记住,它的语言文件取决于您的首选语言,即在使用美式英语的情况下,它将带有后缀.en_us.php
答案 2 :(得分:0)