2023-10-03 01:51:49jamieyw2

Ckeditor Ckfinder https 無法瀏覽伺服

網站架設1.png

今日把http轉成https


到後台編輯時發現無法瀏覽伺服器及上傳圖片





到ckeditor目錄下,找到config.js

  1. baseurl = 'http://'+window.location.hostname;
複製代碼

改成

  1. baseurl = 'https://'+window.location.hostname;
複製代碼

到ckfinder目錄下,找到config.php

  1. $baseUrl = 'http://'.$_SERVER['HTTP_HOST'].'/attachments/';
網站架設 複製代碼

改成

  1. $baseUrl = 'https://'.$_SERVER['HTTP_HOST'].'/attachments/';
網站架設 複製代碼

網站架設

就能正常使用了


文章出處