Hi all,
I've just installed pyblosxom 1.3.2-5 on my debian-etch server, but have
still some problems here:
I activated mod_rewrite with a .htaccess-file as mentioned in your
documentation with:
RewriteEngine on
RewriteRule ^(.*)$ /cgi-bin/pyblosxom.cgi/$1 [last]
The rewriting works well, but I can't get the comments-plugin working
now: It simply rejects all incoming comments.
My datadir is set to /var/www/ - if I set comment_dir to
/var/www/comments (where it's located) or not, doesn't make any
difference.
The standard form-method in my comments-form looks like
<form method="post" action="$base_url/$file_path.$flavour#comment_anchor" name="comments_form">
I also tried to give the static url, /cgi-bin/pyblosxom.cgi included,
but that didn't help.
Another problem I have: All entries are displayed correctly on my
website - but only two entries can't be accessed with their permalink.
They appear on all pages, the archives and tags-pages - but not with
their permalink... They have exactly the same file-settings as all the
other entries: -rw-r--r--
Second, there are no wrong html-tags in them - I saved the files without
any html in them, rewrote them completely - but nothing helped.
One of the not working permalinks is e.g.
<http://www.cpunk.de/2008/2008-05-03-20-03.html>
Any help on this two problems is highly appreciated!
Regards,
sigi
P.S.: I also tried the following rewrite-rule I found for blosxom:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /cgi-bin/pyblosxom.cgi/$1 [L,QSA]
RewriteRule ^(.*)$ /cgi-bin/pyblosxom.cgi/$1 [L]
But this didn't work with my comments, too.
|