Home page doesn't load

Dear All,

I have a beginner question and failed to find the answer in the forum, so I hope someone can help me.

I updated getkirby and the wonderful zeroOne plugin (Zero One | Multi-purpose Ecommerce Kirby CMS starter theme). Now homepage doesn’t load anymore.

If I entre my domain a blank page comes up. https://www.julienmchardy.info

Sup-domains, including the /home subdomain do open https://www.julienmchardy.info/home. I spend a few hours trying to figure out what’s going on. Could someone point me in the right direction?

I imagine it’s to do with the config.php so here’s the content of the config.php:

<?php


return [

    // https://getkirby.com/docs/reference/system/options/panel#custom-panel-css
    'panel' => [
      'css' => 'assets/css/panel.css'
    ],

    // https://getkirby.com/docs/reference/system/options/languages
    'languages' => true,
    // 'languages.detect' => true

    // https://getkirby.com/docs/reference/system/options/smartypants
    'smartypants' => true,

    // Autoresize plugin https://github.com/medienbaecker/kirby-autoresize
    'medienbaecker.autoresize.maxWidth' => 2500,
    'medienbaecker.autoresize.quality' => 85,

    // Commentions plugin https://github.com/sebastiangreger/kirby3-commentions
    'sgkirby.commentions.templatesWithComments' => ['article'],
    'sgkirby.commentions.templatesWithWebmentions' => [''],
    'sgkirby.commentions.hideforms' => false, /* Comment form hide buttom, if true */
    'sgkirby.commentions.expand' => true, /* Webmention form hide buttom, if true */
    'sgkirby.commentions.allowlinks' => true, /* Allow links in comments, if true */
    'sgkirby.commentions.autolinks' => true,  /* Automatically recognize URLs in comments and turn them into links. Has no effect, if allowlinks is false. */
    'sgkirby.commentions.commentfields' => [
      'name' => true,  // include name field and mark as required
      'email'=> true,  // include email as optional field
      'website',       // include optional website field
    ],
    'sgkirby.commentions.secret' => '<YOUR-SECRET>', // A valid secret key must be at least 10 characters long and may NOT include any of the following: & % # + nor a space sign .

    // https://getkirby.com/docs/reference/system/options/thumbs
    'thumbs' => [
      'quality' => '85',
      'srcsets' => [
        'default' => [
          '800w' => [
          'width' => 800
        ],
          '1024w' => [
            'width' => 1024
        ],
          '1920w' => [
            'width' => 1920
        ],
        ],
      ]
    ],

    // Robots plugin https://github.com/bnomei/kirby3-robots-txt
    'bnomei.robots-txt.sitemap' => 'sitemap.xml',
    'bnomei.robots-txt.groups' => [ // array or callback
      '*' => [ // user-agent
          'disallow' => [
              '/kirby/',
              '/site/',
          ],
          'allow' => [
              '/media/',
          ]
      ]
    ],

    // Write custom CSS to file
    'hooks' => [
      'site.update:after' => function($newSite) {
    
        $css = $newSite->customCss()->value();
          if (kirby()->language()->isDefault()) {
            F::write(kirby()->root('assets') . '/css/site.css', $css);
        }
      }
    ],

    // Support for language detect option https://getkirby.com/docs/guide/languages/introduction#automatic-language-detection
    'routes' => [
      [
          'pattern' => '/',
          'action'  => function () {
              $session = kirby()->session();

              if ($session->get('languages.detect', false) === false && option('languages.detect') === true) {
                  $session->set('languages.detect', true);

                  return kirby()
                      ->response()
                      ->redirect(kirby()->detectedLanguage()->url());
              }

              return page();
          }
        ]
    ],

    // Remove update notification for some plugins
    'updates.plugins' => [
      'avoskitchen/sanitizer'         => false,
      'bvdputte/kirby-bettersearch'   => false,
      'hananils/kirby-colors'         => false,
      'kirbyzone/sitemapper'          => false,
      'sylvainjule/code-editor'       => false,
      'zero/zero-one'                 => false
    ]

];

Try and set the debug option in your config to see any errors that might pop up. Otherwise check the php error logs.