StarterKit: Startpage is shown, sub pages produce "internal server error"

Hi.

I’m new to Kirby. Just installed the starterkit in the root of a subdomain.

The startpage is shown as expected.

Sub pages or images produce “internal server error”.

dito with https://neu.heilehaus-berlin.de/panel

How can I narrow down the problem, please?

Our Webhoster uses PHP 8.3

Thanks.

It’s a rewriting problem. If you are on an Apache server, make sure that you have deployed the .htaccess file that ships with the starterkit.

Depending on the server, you might also have to set the RewriteBase, see docs:Installation issues | Kirby CMS

Thanks for your hint.
Our Webhoster is Ionos. Yes, I deployed the original .htaccess.

Now I set:

RewriteBase /

It works fine!

Thanks : )

To use the panel I found:

Allow the Panel to be installed on a remote server

I edited the file config.php on the remote server and added:

return [
  'panel' =>[
    'install' => true
  ]
];

But I still get an error message, when I try to open the panel. Which step is missing please?

Andreas

What is the error message you get?

Good morning Sonja. Thanks for your answer.

I found my mistake:

I just added the

return [
  'panel' =>[
    'install' => true
  ]
];

at the end of the config file.

But only one “return” is allowed.

You have to integrate

'panel' =>[
    'install' => true
  ]

into the existing code. Than it works.

That’s what I suspected…