问答详情
源自:-

装了两bundle后启动不了了,配置的 pattern 导致错误,求帮助

Warning: preg_match(): Compilation failed: unmatched parentheses at offset 12

in app/cache/dev/classes.php at line 3019

错误代码如下

#var_dump($this->path,$request->getPathInfo());die();

if (null !== $this->path && !preg_match('{'.$this->path.'}', rawurldecode($request->getPathInfo()))) {

return false;

}

if (null !== $this->host && !preg_match('{'.$this->host.'}i', $request->getHost())) {

相关配置

secured_area:

            pattern: ^/

调试了下就是这个地方出错的,

求解决

提问者:此题无解 2015-06-16 21:40

个回答

  • 洪涛
    2015-06-28 03:41:11
    已采纳

    那就把这个secured_area去掉,或者换种写法。