1

我的系统管理员在我们的 64 位 Solaris 机器上为我安装了RApache 。我这里可以访问RApacheInfo页面,说明模块安装成功。httpd.conf 中有以下条目:

<Directory /websites/zbroom>
  SetHandler r-script
  RHandler brew::brew
</Directory>

这应该需要通过brew包的 brew 函数来解析目录中的所有文件。从我的测试页面可以看出,R 代码被忽略了。没有抛出任何错误(Apache 日志中没有任何内容)。

这是测试代码:

<html><head><title>R test</title></head>
<body>
<p>here is some normal text</p>

<%=rnorm(100) %>
<% print(rnorm(100)) %>

<p>Between this text and the first text there should be some R output.</p>
</body>
</html>

我需要更改什么才能评估和打印 R 代码?

4

1 回答 1

0

遵循 Dirk 的建议,我在 google RApache group发布。看来问题不是配置错误,但 Apache 需要重新启动才能生效。叹息,至少修复很容易。

于 2010-08-04T17:34:02.570 回答