getkirby / kirby

Kirby's core application folder
https://getkirby.com
Other
1.31k stars 168 forks source link

Image files in media folder not being created #1399

Closed florianporada closed 5 years ago

florianporada commented 5 years ago

Describe the bug I'm currently trying to port our v2 to v3 but encountered that no image or file is created in the media folder under pages. Projects show up in the folder structure but the only thing that is present in the folder structure is a .job folder with a json file. Is this a Kirby related issue or are there any missing permissions?

To Reproduce Steps to reproduce the behavior:

  1. Clone the starterkit
  2. run php -S localhost:8888
  3. Open localhost:8888

Screenshots Imgur

Imgur

Kirby Version 3.0.0

Additional context PHP version: 7.1

texnixe commented 5 years ago

You have to call the built-in server with Kirby's router:

php -S localhost:8000 kirby/router.php
florianporada commented 5 years ago

works like a charm now, thanks :)