我在配置drupal9 中文翻译时,导入中文翻译文件时,出现了无法上传文件的错误
错误提示如下:
File upload error. Could not move uploaded file.
这类问题一般都是files 和settings.php文件权限出了问题,把files文件权限改为777, 把settings.php文件权限改为755 ,问题就可以解决了。
修改files文件权限如下
chmod -R 777 files
修改settings.php文件权限
chmod 755 settings.php
最后重启apache 使其生效
systemctl restart httpd
评论