我刚刚注意到我的drupal站点管理菜单上的所有复选框和单选按钮都缺少标签。不知道什么时候开始(我已经检查了几个备份,并且它存在于所有备份中),但我想找到一个解决方案。
我尝试过禁用模块,但目前没有效果。
我附上了screenshot
我注意到在几页上弹出了几个PHP警告 - 这些是:
Warning: preg_match(): Compilation failed: unknown option bit(s) set at offset 0 in /persistent/html/includes/bootstrap.inc on line 1606
和
Warning: in drupal_clean_css_id![enter image description here][1]entifier() (line 3731 of /persistent/html/includes/common.inc).
答案 0 :(得分:0)
Warning: preg_match(): Compilation failed: unknown option bit(s) set at offset 0 in /persistent/html/includes/bootstrap.inc on line 1606
显然是线索。
PHP最近已从5.3.13升级到5.3.14,这似乎改变了preg_match的处理方式。再次升级到5.3.15,问题仍然存在 - 所以我降级到5.3.13,问题解决了。
发现其他人在Wordpress上遇到类似的preg_match错误,颠覆php升级!