[SOLVED] Sitemap not found

Hi, i know that there is a lot topics about that but none of them worked in my case.

I have sitemap named test.sitemap

sitemap test label="test sitemap" {
  frame label="Environment" {
    text label="Temperture" icon="temperture"
  }
}

It is located in etc/openhab2/sitemaps and is defined as default sitemap in paperui/configuration/services/basicui

When i open basicui it says “It seems like you have not defined any sitemaps yet.”
The same in classicui

HTTP ERROR 500
Problem accessing /classicui/app. Reason:
Server Error
Caused by:
javax.servlet.ServletException: javax.servlet.ServletException: Sitemap ‘test’ could not be found

I havent another openhab version installed.

Please help.

Hardware: RPi2
openHAB version: 2.4.0-1 (Release Build)

The sitemap definitions are case-sensitive, so your example should look like this:

sitemap test label="test sitemap" {
  Frame label="Environment" {
    Text label="Temperture" icon="temperture"
  }
}

And welcome to this forum! :metal:

1 Like

No way, i wouldn’t think that it is something like that…
It worked, thanks a LOT!!!

No problemo - It would be dope if you can mark the soloution for other ones, looking for that particular problem. Thank you!