My sysadmin installed RApache for me on our 64 bit Solaris box. I can access the RApacheInfo page here, indicating that the module was successfully installed. There is the following entry in the httpd.conf:

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

which should require all files in the directory to be parsed through the brew function of the brew package. As can be seen on my test page, the R code is ignored. There are no errors thrown (nothing in the Apache logs).

This is the test code:

<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>

What do I need to change so that the R code will be evaluated and printed?

link|improve this question

AFAIK RApache has its own mailing list, you probably want to check there. – Dirk Eddelbuettel Aug 4 '10 at 15:19
thanks. will do. – dnagirl Aug 4 '10 at 16:14
feedback

1 Answer

up vote 0 down vote accepted

Following Dirk's advice I posted at the google RApache group. It appears the issue was not bad config, but that Apache needed a restart for things to take effect. Sigh, well at least the fix was easy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.