system environment settings
Am using Kirby version 3.7.1, with php 8.0.21 on nginx server. Site is working well on the server and being served to web correctly
issue description
I am in the process of migrating a kirby 2 site to kirby 3. Most things seem to be working but I am getting stuck with an issue with the new panel. I am struggling to get old content in one directory to show up within the panel. Any help is much appreciated.
Here is file structure simplified with irrelevant directories removed
.
├── content
│ ├── 1_home
│ │ └── home.txt
│ ├── 2_work
│ │ ├── 10_post-name
│ │ └── item.txt
│ ├── 3_bio
│ ├── error
│ └── site.txt
├── index.php
└── site
├── accounts
├── blueprints
│ ├── pages
│ │ ├── about.yml
│ │ ├── bio.yml
│ │ ├── cv.yml
│ │ ├── default.yml
│ │ ├── item.yml
│ │ ├── post.yml
│ │ └── work.yml
│ ├── sections
│ │ └── posts.yml
│ └── site.yml
└── templates
├── about.php
├── bio.php
├── blog.php
├── cv.php
├── default.php
└── item.php
In the site the ./content/2_work
folder has hundreds of posts but none of them are showing in the panel. Any initial tips on where I should be looking to figure this out, please let me know.