Hi,
I got the problem that a 404-error comes up when goint to the /archive file.
I asked my Provider to check the force directive of Apache and they mentioned I have to change my .htaccess file as follows and now it works.
I had to replace:
PHP Code:
<files archive>
ForceType application/x-httpd-php
</files>
<files forumdisplay>
ForceType application/x-httpd-php
</files>
<files showthread>
ForceType application/x-httpd-php
</files>
with:
PHP Code:
<files archive>
ForceType x-mapp-php4
</files>
<files forumdisplay>
ForceType x-mapp-php4
</files>
<files showthread>
ForceType x-mapp-php4
</files>
It's just a hint for other persons which has the same problem as me.
Now it work fine
Thank you for this great hack !