Hello,

I am doing a server migration to a cherokee only environment and got
everything working except a wikkawiki wiki :(

i have the wiki at http://some-url.com/wiki and it used to work perfectly on
apache with the default htaccess file

=====================================
<IfModule mod_rewrite.c>
        # turn on rewrite engine
        RewriteEngine on

        # if request is a directory, make sure it ends with a slash
        RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule ^(.*/[^/]+)$ $1/

        # if not rewritten before, AND requested file is wikka.php
        # turn request into a query for a default (unspecified) page
        RewriteCond %{QUERY_STRING} !wakka=
        RewriteCond %{REQUEST_FILENAME} wikka.php
        RewriteRule ^(.*)$ wikka.php?wakka= [QSA,L]

        # if not rewritten before, AND requested file is a page name
        # turn request into a query for that page name for wikka.php
        RewriteCond %{QUERY_STRING} !wakka=
        RewriteRule ^(.*)$ wikka.php?wakka=$1 [QSA,L]
</IfModule>
====================================

And the following settings in the configuration file:
=====================
        'root_page' => 'HomePage',
        'base_url' => 'http://somw-url.com/wiki/',
        'rewrite_mode' => '1',

=====================

basically what this trying to do is rewrite all url in the format

http://somw-url.com/wiki/wikka.php?wakka=$1

Heres what i did

Under behaviour => created a new directory wiki with handler Redirection and
the following
Internal Redirect Rule
^/(.*)$   http://gnusys.net/wiki/wikka.php?wakka=$1


This throws out a "No input file specified " error

I tried passing the request to an apache server listening on port 81.But
since the redirection rule contains :81 in it that doesnt work as expected
with the wikkaconfig.php file :(

So basically i am stuck

Any help in setting up wikkawikki is much appreciated





-- 
Anoop P Alias (PGP Key ID : 0x014F9953)
GNU system administrator
http://GnuSys.net
_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to