Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Hi there.

I installed couch 1.3.5 just locally (Xampp) on my win7 pc.
The connection to DB etc is fine.

The admin-Panel is just a bit crazy.
When I call in my browser: http://localhost.../couch/index.php, after the login,
there is only the directory-structute of couch folder visible.
The link for example:
http://localhost/justme2/boule/couch/?act=edit&tpl=2&nonce=54cb52180a3c434d22


I have to put manually index.php in between to this:
http://localhost/justme2/boule/couch/index.php?act=edit&tpl=2&nonce=54cb52180a3c434d226

after this couch shows me the second tpl to edit.
When I click to the first page to edit, the 'index.php' in the link is again missing.

What am I making wrong?
Do I have to chnage settings of my apache? or something like that?
To what?

Thanks for help.
with kind regards
Stefan
Hi,

Usually the default configuration of a web server is to serve 'index.html' or 'index.php' if no file name is specified in the URL.
This setting seems to have been modified on your setup (and hence you get to see a directory listing instead).

Please try viewing the 'httpd.conf' file of your web server. Search for the 'DirectoryIndex' directive. The usual configuration is this
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.php index.php3 index.html index.htm

Please set it right if the configuration is either modified or missing.
You'll need to restart your web server for the changes to take effect.

Alternatively, you could try adding the following line in the .htaccess file found in 'couch' folder
DirectoryIndex index.php index.html

Hope this helps.
Please let me know.
Thanks
Thanks a lot.

It helped.
Ich had only index.html configured.

Sometimes is it as easy as just do some settings right...
;-)
with kind regards
Stefan
3 posts Page 1 of 1
cron