I have a little question... just had the time to move from 0.3 to 0.5...
looks good... but is there an easy way to migrate my snips (I haven't yet
tried to just drop my old files over the new files) to the new version?
btw: I noticed that you use a index.html file for redirecting the user to
/cgi-bin/vanilla.r
here is another way I use which is much easier in my opinion... Maybe you
want to use it in vanillaSBX 0.6 :)
just add this to httpd.conf:
#
# Redirecting to vanilla
#
RewriteEngine on
RewriteRule ^/$ /cgi-bin/vanilla.r [R]
and to increase security (on my notebook) I use:
<Directory "C:/Program Files/Apache Group/Apache/cgi-bin">
AllowOverride None
Options None
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
I know that this is no longer really needed with the new security model but
I thought it might be helpful if anyone else needs it.
of course these examples are from my old installation so directory paths are
no longer correct with vanillaSBX...