I will do so.
Unfortunately, there is a second problem. Maybe you have an idea. As soon as the media folder is in a different location (see above), no more images are generated either. Again, only the .jobs files are located there. This should be easy to reproduce, e.g. with this index.php:
<?php
require 'kirby/bootstrap.php';
$kirby = new Kirby([
'roots' => [
'media' => '/../some-other-place/media',
]
]);
echo ($kirby)->render();
I don’t need to change the url because i changed that in the apache config, so that /media is reachable and the files within the media folder are delivered by the webserver. The problem is that no files are created from kirby. Idea?