Hi around
Iām getting a strange behavior with a Kirby setup. I just updated to latest 3x version by editing composer.json
as follows:
{
"name": "getkirby/plainkit",
"description": "Kirby Plainkit",
"type": "project",
"keywords": [
"kirby",
"cms",
"starterkit"
],
"authors": [
{
"name": "Bastian Allgeier",
"email": "bastian@getkirby.com",
"homepage": "https://getkirby.com"
}
],
"homepage": "https://getkirby.com",
"support": {
"email": "support@getkirby.com",
"issues": "https://github.com/getkirby/starterkit/issues",
"forum": "https://forum.getkirby.com",
"source": "https://github.com/getkirby/starterkit"
},
"require": {
"php": ">=8.0.0 <=8.3.6",
"getkirby/cms": "^3.10",
"fabianmichael/kirby-meta": "^1.0",
"sylvainjule/embed": "^1.0",
"treast/kirby-debugbar": "^1.3",
"thathoff/kirby-sentry": "^3.0"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true,
"php-http/discovery": true
},
"optimize-autoloader": true
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 kirby/router.php"
]
}
}
Then did composer update
On localhost everything seems fine but when I pushed these changes to my remote main, Iām getting a blank panel and I get in console :
Eventhough my vendor folder is part of my repo, I thought maybe there was something with the update that didnāt go through on the remote part. So I connected to it and ran composer update
and also composer install
just to be sure but it said itās all set and nothing has to be done.
Iām not sure where to look at to try to solve this.
What puzzles me is that the local version works fine. Both are also running the same php version, 8.3.6.
I checked if it was eventually related to my browser cache but I get the same error in private mode or after emptying cache. I also cleared remote Kirby cache, but still same error.
Any ideas would be warmly welcomed please.
Btw the rest of the site seems to works well. Only panel is not accessible at the moment.