I have this issue only when I add TR language on my server. I don’t have any issue on my local server. When I remove layout field I don’t have that issue. Interesting!
My config file;
<?php
return [
'debug' => true,
'panel' => [
'css' => 'assets/css/panel.css'
],
'email' => [
'transport' => [
'type' => 'smtp',
'host' => 'srvc104.turhost.com',
'port' => 465,
'security' => true,
'auth' => true,
'username' => 'support@aristotheme.com',
'password' => '***'
]
],
'smartypants' => true,
'kirby3-webp' => true,
'date' => [
'handler' => 'strftime'
],
'languages' => true,
// Plugin / Automatically resize images on upload.
'medienbaecker.autoresize.maxWidth' => 1920,
// Cachebuster
'schnti.cachebuster.active' => true,
// converting JPG, JPEG and PNG into much smaller WEBP
//'mrfd.webp.autoconvert' => true,
// Robots
'bnomei.robots-txt.sitemap' => 'sitemap.xml',
'bnomei.robots-txt.groups' => [ // array or callback
'*' => [ // user-agent
'disallow' => [
'/kirby/',
'/site/',
],
'allow' => [
'/media/',
]
]
],
];
en.php;
<?php
return [
'code' => 'en',
'default' => true,
'direction' => 'ltr',
'locale' => [
'LC_ALL' => 'en_US'
],
'name' => 'EN',
'translations' => [
],
'url' => '/'
];
tr.php;
<?php
return [
'code' => 'tr',
'default' => false,
'direction' => 'ltr',
'locale' => [
'LC_ALL' => 'tr_TR'
],
'name' => 'TR',
'translations' => [
],
'url' => NULL
];
And my server php modules;
Could you please help me?
I really didn’t solve that issue