用RApacheOutputErrors控制输出

我已经在r.conf中激活了ROutputErrors,并且按照原来的方式工作。

当我有一个错误,我得到这个:

Oops!!! rApache has something to tell you. View source and read the HTML comments at the end. 

而在源代码中,我得到了错误。

 \n<!--\nError in library(micEconAids) : there is no package called 'micEconAids'\nTraceback:\n5: stop(txt, domain = NA)\n4: library(micEconAids)\n3: eval(expr, envir, enclos)\n2: eval(i, envir) \n1: sys.source(file = \"\/var\/www\/r\/test\/25.R\", envir = .rAenv) \n-->\n 

我想build立一个web服务,我想直接有错误。 我正在r.conf中做这个

 RApacheOutputErrors(TRUE,"<p>","</p>") 

但是我得到这个错误重新启动:

 "Invalid command 'RApacheOutputErrors(TRUE,"<p>","</p>")', perhaps misspelled or defined by a module not included in the server configuration"; 

如何以及在哪里可以使用这个指令?

谢谢

RApacheOutputErrors()此函数已被弃用,并将从下一个rApache版本中删除。 如果它被调用,它会调用一个警告。

ref: http : //rapache.net/manual.html#rapache_Functions