On Tue, 2006-08-15 at 07:32 -0400, Bradford R. Bowman wrote:
> Ok, this will properly rewrite the url (I think):
> 
> RewriteEngine   On
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteRule     ^(.*)$              /control/hobix.cgi/$1 [R,L]

Oops, wrong. In fact the above suggestion will make a mess of things.
The only real problem is the rewrite condition statement:

- RewriteCond %{REQUEST_FILENAME} -f
+ RewriteCond %{REQUEST_FILENAME} !-f

It took a bit of getting familiar with webapp.rb and directing some
stderr into the apache logs, to realize it was an easy fix.  I also
did not give apache write permission to enough of htdocs, which made the
regeneration fail.

Happy commenting! Now let's see if the publisher works.  And what's this
bixwik thing anyway?

-- 
Bradford R. Bowman
<[EMAIL PROTECTED]>

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Hobix-is-the-way mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/hobix-is-the-way

Reply via email to