...s_set_dict() [function.scws-set-dict]: open_basedir restriction in effect. File(C:\Program Files\scws\etc\dict.utf8.xdb) is not within the allowed path(s): (D:/DedeAMPZ/WebRoot/Default) in D:\DedeAMPZ\WebRoot\Default\tld\dede\getwen.php on line 6 Warning: scws_set_rule() [function.scws-set-rule]: o...
...的编码都是utf8 还有就是如果我用 $so->set_dict('C:/Program Files/scws/etc/dict.xdb'); $so->set_rule('C:/Program Files/scws/etc/rules.utf8.ini'); 就会有警告: Warning: SimpleCWS::set_dict() [function.SimpleCWS-set-dict]: open_basedir restriction in effect. File(C:\Program Files...
配置文件不是问题啊, new XS('/path/to/file.ini'); 也可以的,XS 构造函数允许传入路径、文件内容都可以呢。
... = scws_new(); $cws->set_charset('utf8'); $cws->set_rule('D:/Program Files/scws/etc/rules.utf8.ini'); //注意路径 $cws->set_dict('D:/Program Files/scws/etc/dict.utf8.xdb'); $cws->add_dict(ROOT_PATH."inc/spider/dict_extra.txt", SCWS_XDICT_TXT);//新增词库 $cws->set_ignore(true); ...
...递给数据源; 其它情况则为文件数据源,自动将 _--file_ 选项的值作为参数传递给数据源对象。 * _--flush_、_--flush-log_、_--info_ 是一些功能选项,与 _--source_ 分开使用。 * _-d|--db _ 指定要更新的索引数据库名称,默认是名...
...APP_ROOT 表示项目文件存放路径 //define ('XS_APP_ROOT', dirname(__FILE__) . '/protected/data'); ``` 在应用配置文件的 `compnents` 中添加以下代码,通常是 protected/config/main.php ```php // application components 'components' => array( // ... other compone...