Problems with Statify

Continuing the discussion from Statify with Markdown:

Thank you very much for the new version.

But I have two problems:

1.) On a local German win-XAMPP [PHP 5.4.27 (VC9 X86 32bit thread safe) + PEAR] using Firefox 39.0 after running http://localhost:61080/kirby210/statify.php I get the message:

XML-Verarbeitungsfehler: Syntax-Fehler
Adresse: http://localhost:61080/kirby210/statify.php

Zeile Nr. 1, Spalte 1:Your site has been exported to the <b>static</b> folder.
^

Running Google Chrome 43.0.2357.134 I only get:

This page contains the following errors:
error on line 2 at column 1: Document is empty
Below is a rendering of the page up to the first error.

2.) And within my website I use the snippet


      <div class="breadcrumb">
        <ul>
<?php foreach($site->breadcrumb() as $crumb): ?>
<?php if($crumb->isActive()): ?>
          <li><span class="active"><?php echo $crumb->title() ?></span></li>
<?php else: ?>
          <li><a href="<?php echo $crumb->url() ?>"><?php echo $crumb->title() ?></a> &rsaquo;&nbsp;</li>
<?php endif ?>
<?php endforeach ?>
        </ul>
      </div>

Within the .html files I only get the first level (homepage) as breadcrumb. On the live .php files I get the normal breadcrumb.

What is wrong?

I use Kirby version 2.1.0 final

  1. What is the page source and headers of that returned document? As it normally isn’t actually XML nor is the Content-Type header set to anything special, that doesn’t make much sense.
  2. I remember there were some issues with navigations in statified sites because of “visitied” pages not working correctly. @bastianallgeier, have you come across that issue yet?