安装
汉化:1将汉化包放置drupal8\sites\default\files\translations下安装;2极简版的话需要在extend(扩展)中安装Interface Translation模块然后在配置--地区 和语言里选择安装网站语言
在php.ini修改内存限制
修改文件权限:在终端或者第三方软件修改又按ALT+F12打开Terminal在里面输入命令修改文件权限sites文件夹及子文件默认只有读权限
开启并创建settings.local.php文件
drupal8\sites\default\settings.php中有这么一段代码取消注释
# if (file_exists($app_root . ‘/‘ . $site_path . ‘/settings.local.php‘)) {
# include $app_root . ‘/‘ . $site_path . ‘/settings.local.php‘;
# }
在新建settings.local.php在drupal8\sites\下复制example.settings.local.php修改成example.settings.local.php
在开发主题时我们需要关掉drupal的css和js聚合功能以阻止网站的将这些文件生成一个文件输出 多人开发的时候将此文件忽略上传就能使开发不同功能的程序员开启关闭其他不需要的功能又不影响最总的项目
清空缓存并验证文件是否生效