Godaddy Hosting安裝 Drupal 8筆記
把荒廢很久的Drupal 8重來一下
如何設定 Trusted Host settings
文字編輯器選 CKEditor
至少勾這3個
將換行符號轉換為 HTML (例如
和 標籤)。
轉換 URLs 為連結
修正有錯誤的 HTML
https://www.drupal.org/project/ckeditor_media_embed
模組弄好後,必需把所有的外掛放在 /libraries/ckeditor/ <= drupal的根目錄,和7不一樣唷!
弄好後就不會出現錯誤訊息
不過我在設定的時候遇雷了,它一直不讓我存檔 <= 記得清快取
接下來又有雷,編輯時點開media後,插入影片連結出現 Failed to fetch content for the given URL.,尚無解
Drupal8 的設定似乎要改用 DrupalConsole 才好用,不過由於我的站上都是 Drupal7的檔案,暫時還是別動 drush
如何啟用SSL
RewriteEngine on
# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
如何啟用OPcache
cp /opt/alt/php71/etc/php.ini ~/public_html/
PS.php71 = 目前php的版本
cPanel可以調
vi ~/public_html/php.ini
zend_extension=opcache.so
opcache.enable=1
opcache.enable_cli=1
opcache.huge_code_pages=1
改完後要清一下PHP程式
完成
如何設定 Trusted Host settings
照著教學做即可 https://www.drupal.org/node/1992030
$settings['trusted_host_patterns'] = array(
'^domain\.net$',
);
新增文字格式 (D8要自己來)
/admin/config/content/formats/add文字編輯器選 CKEditor
至少勾這3個
將換行符號轉換為 HTML (例如
和 標籤)。
轉換 URLs 為連結
修正有錯誤的 HTML
設定 CKEditor Media Embed plugin
要插media到ckeditorhttps://www.drupal.org/project/ckeditor_media_embed
模組弄好後,必需把所有的外掛放在 /libraries/ckeditor/ <= drupal的根目錄,和7不一樣唷!
弄好後就不會出現錯誤訊息
接下來又有雷,編輯時點開media後,插入影片連結出現 Failed to fetch content for the given URL.,尚無解
Drupal8 的設定似乎要改用 DrupalConsole 才好用,不過由於我的站上都是 Drupal7的檔案,暫時還是別動 drush
留言