1

我最近在 Apache 上安装了 Cockpit CMS。在其 UI 上进行一些自定义。一切都很好,直到我更改了它的标题图标,然后每当我尝试在集合、表单、单例中保存某些内容,甚至添加条目时,它都会显示“找不到文件”。我被困在里面了。

我没有在其配置和模块上触及任何单个代码。任何帮助深表感谢。

这是我的 cockpit.conf:

 <VirtualHost *:80>
 ServerAdmin admin@example.com
 DocumentRoot /var/www/html/cockpit
 ServerName  [My Server's IP]
 ServerAlias www.example.com

 <Directory /var/www/html/cockpit/>
      Options FollowSymlinks
      AllowOverride All
      Require all granted
 </Directory>

 ErrorLog ${APACHE_LOG_DIR}/error.log
 CustomLog ${APACHE_LOG_DIR}/access.log combined

 <Directory /var/www/html/cockpit/>
        RewriteEngine on
        RewriteBase /
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^(.*) index.php [PT,L]
</Directory>
4

1 回答 1

0

如果您尝试保存您的收藏或其他任何内容,但它会给出一个错误,提示“找不到文件”,请授予对存储文件夹本身及其所有子文件夹的权限。它帮助了我很大的时间

于 2020-11-09T13:24:44.760 回答