r rapache

install rapache



controlando la salida con RApacheOutputErrors (1)

He activado ROutputErrors en r.conf y funciona como se supone que debe hacer.

Cuando tengo un error me sale esto:

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

Y en el código fuente me sale el error.

/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

Estoy tratando de construir un servicio web y me gustaría tener los errores directamente. Estoy tratando de hacer esto en r.conf

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

Pero me sale este error al reiniciar:

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

¿Cómo y dónde puedo usar esta directiva?

Gracias