On Mon, Jun 20, 2011 at 12:06:45PM +0200, Pierre-Emmanuel André wrote:
> On Sat, Jun 18, 2011 at 12:30:45PM +0200, Landry Breuil wrote:
> > On Wed, Jun 15, 2011 at 12:02:00PM +0200, Pierre-Emmanuel André wrote:
> > > On Wed, Jun 15, 2011 at 11:58:38AM +0200, Landry Breuil wrote:
> > > > On Wed, Jun 15, 2011 at 11:41:35AM +0200, Pierre-Emmanuel André wrote:
> > > > > Hi,
> > > > >
> > > > > DokuWiki is a standards compliant, simple to use Wiki, mainly aimed at
> > > > > creating documentation of any kind. It is targeted at developer teams,
> > > > > workgroups and small companies. It has a simple but powerful syntax
> > > > > which makes sure the datafiles remain readable outside the Wiki and
> > > > > eases the creation of structured texts. All data is stored in plain
> > > > > text
> > > > > files, no database is required.
> > > > >
> > > > > Homepage: http://www.dokuwiki.org/dokuwiki
> > > >
> > > > I like, but why so much pain with the version ?
> > > >
> > > > DISTNAME=dokuwiki-2011-05-25a
> > > > PKGNAME=${DISTNAME:S/-05-/.05./}
> > > >
> > > > no ?
> > >
> > > Yeah, you're right. It's way better :)
> >
> > After some testing...
> >
> > install.php warns about
> > http://www.dokuwiki.org/security#web_access_security
> > -> maybe some perms should be fixed so that it doesnt complain ootb ?
> >
> > It'd be nice if an httpd.conf fragment could be provided in files/ as
> > done for various other www ports (or mail/sympa), to be symlinked in
> > www/modules.
> >
>
> Yes, the warning is "normal". That's what i said in MESSAGE.
> The directory where you want to put dokuwiki must be granted with at least:
> AllowOverride Limit
Ah, tried that in a <Location> block, didn't work... it'll be Directory,
warning disappeared with it.
> Maybe i can provide some informations like this:
>
> ln -s /var/www/dokuwiki /var/www/htdocs/dokuwiki
>
> And then, a litte httpd.conf fragment like this:
>
> <Directory /var/www/dokuwiki>
> AllowOverride Limit
> </Directory>
That, or a VirtualHost fragment with a DocumentRoot /var/www/dokuwiki.
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/dokuwiki
ServerName wiki.example.com
<Directory /var/www/dokuwiki>
AllowOverride Limit
</Directory>
</VirtualHost>
Landry