配置ckeditor,无论如何都出现无法访问服务器的错误。网上搜了一下,原来是ckeditor3.6.3的版本与php5.3以上的版本兼容性问题。按照下面所说,把涉及正则表达式的地方注释掉,搞定。
Hi,
open the file "sites/all/modules/ckeditor/includes/ckeditor.admin.inc"
back it up and then edit.
find the lines
if (!preg_match('#^\s*\[(?:\s*(?:\[(?:\s*([\'\"\"])(?:\w+|-)\1\s*[,]?\s*)+\]|([\'\"\"])\/\2)\s*[,]?\s*)+\]\s*$#', $edit['toolbar'])) {
form_set_error('toolbar', t('Enter valid toolbar configuration.'));
}
and replace them with
//if (!preg_match('#^\s*\[(?:\s*(?:\[(?:\s*([\'\"\"])(?:\w+|-)\1\s*[,]?\s*)+\]|([\'\"\"])\/\2)\s*[,]?\s*)+\]\s*$#', $edit['toolbar'])) {
// form_set_error('toolbar', t('Enter valid toolbar configuration.'));
//}
星期五, 06/15/2012 - 16:22 — 杨超