Redmine中的csv导入失败

djmepvbi  于 2023-09-27  发布在  其他
关注(0)|答案(1)|浏览(118)

我正在尝试将旧Redmine示例的数据转移到新示例中。由于导入sql-dump会导致应用程序崩溃,我现在尝试通过csv-import导入问题。但也不管用。选择csv文件后redmine显示错误:
Internal error An error occurred on the page you were trying to access. If you continue to experience problems please contact your Redmine administrator for assistance. If you are the Redmine administrator, check your log files for details about the error.
日志文件中未找到任何信息。我改变了csv文件的编码,但它似乎与文件本身无关。
问题是否与权限不正确有关?我不知道在哪里搜索失败的导入功能的原因。也许你见过
Thx
伯尼
Redmine版本5.0.5.stable
Ruby版本3.1.4-p223(2023-03-30)[x86_64-Linux]
Rails版本6.1.7.2
环境生产
数据库适配器Mysql 2
Redmine插件:custom_users_as_assignees 0.0.4
操作系统:Debian 12

uklbhaso

uklbhaso1#

您必须在redmine/log中检查production.log。并尝试检查所有redmine文件夹的权限。运行redmine的操作系统用户必须具有以下文件夹和文件的权限:files log tmp public/plugin_assets config.ru
在Linux和macOS中给予访问权限:

chown -R www-data:www-data files log tmp public/plugin_assets config.ru
chmod -R 755 files log tmp public/plugin_assets

相关问题