Hi Everyone, 
I've been trying to get RApache set up properly on my Macbook Pro running OS X 10.5.8.  After installing RApache successfully (I think), I added the following to the httpd.conf file as suggested in the manual.
LoadModule R_module /apache/module/path/mod_R.so 
ROutputErrors
<Location /RApacheInfo> 
    SetHandler r-info 
<...
            
           
          
            
            I want to uninstall rapache, make uninstall doesn't seem to do anything and a look at the rapache documentation and a google search turns up nothing. Any help would be great
...
            
           
          
            
            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 dir...
            
           
          
            
            Say I want to have a simple web app that takes some user input, performs a quick calculation in some predefined R script, and returns some cool looking graphic with say ggplot. One way to do this would be:
Have PHP accept some input from a web form
Sanitize the user input in PHP
Send the arguments to some pre-written R script using som...
            
           
          
            
            I'm working on a PHP web app that calls R through curl and RApache.  Most things work fine. But one lattice plot throws this error:
  RApache Warning/Error!!!Error in uy +
  c(-1, 1) : non-numeric argument to
  binary operator
I tried saving the data structures that feed into the plot and doing the plot in my local R, but then the pl...