oetiker / remOcular

your eyes in the cloud
GNU General Public License v3.0
44 stars 10 forks source link

Cannot get remocular working in apache #3

Open richardvk opened 12 years ago

richardvk commented 12 years ago

Hi!

A few problems/comments

I have installed remocular (on Ubuntu 10.04 currently) both with tar file and git, with qooxdoo sdk etc. No problems 'make'ing in either case.

i) The 'daemon' mode always seems to work just fine, but i always seem to get this in my Apache error log when in 'fastcgi' mode:

File does not exist: /var/www/remocular/jsonrpc

ii) Also, my last install was off git, and the public/resource/qx seemed to be missing? I was getting this in my Apache logs:

File does not exist: /var/www/remocular/resource/qx

but copied it from an old remocular directory from a previous tarball install.

iii) The 'RewriteEngine' items listed in your Apache sample code - I had to wrap them in: <Directory "/var/www/remocular"> ...

otherwise, on Apache restart, it was throwing:

RewriteBase: only valid in per-directory config files

Thanks in advance for any help or advice :) Richard

oetiker commented 12 years ago

the error you get would indicate, that the fastcgi code does not execute at all ... if configured properly, the fastcgi script will be the only thing in your webspace. it will handle all requests ... including requests for files ...

so, first make sure the fastcgi script is actually being called.

cheers tobi