Thanks for all the help, I will be implementing this in the next couple of weeks in my project.
Thanks again, Ramon > On Mon, 2005-01-24 at 11:46 -0500, Jason Morehouse wrote: > >> If using apache, this also works nice in your httpd.conf -- it allows >> you to put databases anywhere in the www root, without worrying about >> protecting specific directories. >> >> <Files ~ ".db"> >> Order allow,deny >> Deny from all >> Satisfy All >> </Files> >> > > You'll also need to protect the (transient) rollback journal > files. Perhaps: > > <Files ~ ".db-journal"> > Order allow, deny > Deny from all > Satisfy All > </Files> > > >