Home page not working

as title mentioned i have just installed kirby and bought licence the config file setted to be installed online
but home page not working others page are working
how to fix this please

That’s a bit strange, usually it is the other way round. But please be more specific, what does that mean “it is not working”. Do you get an PHP error message, a blank screen, a 404 page, other?

Does the home folder exist?

when i have installed Kirby all was good but when i deleted PROJECT & Blog home is still visible on panel but no when i type website address i get this error message

This page is currently offline due to an unexpected error. We are very sorry for the inconvenience and will fix it as soon as possible.

Ah, ok, that is because the /site/templates/home.php template calls the showcase snippet which in turn calls the projects page, if you delete it without removing the code for it, you get the error.


You can switch on debug in your config.php:

c::set('debug', true);

to get a more useful error message.

thanks @texnixe all solved