cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.3.3 checkout not showing any thing ...

SOLVED

Magento 2.3.3 checkout not showing any thing ...

Well, Ive seen more questions on this topic but there doesn't seem to be an answer, so let me try with my specific problem

Magento: 2.3.3 stock, nothing added Theme: Luma (nl_NL mode) Payment methods: Bank tranfer (enabled) Added one test product, set taxes, customer class, pricing, all ...

Cannot get anything, not even page title h1 to render on the page. It just shows the header and footer, nothing else.

Tried:

  • setup:upgrade
  • setup:di:compile
  • setup:static-content:deploy -f
  • setup:static-content:deploy nl_NL -f
  • cache:clean
  • cache:flush

Nothing works ... you can see it here: https://blokjeswebshop.nl/checkout/

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento 2.3.3 checkout not showing any thing ...

@vdheuvel please check your error logs inside var folder.

View solution in original post

6 REPLIES 6

Re: Magento 2.3.3 checkout not showing any thing ...

@vdheuvel please check your error logs inside var folder.

Re: Magento 2.3.3 checkout not showing any thing ...

I deleted all logs and reports (if any) and after a fresh try, I see this in system.log:

 

[2019-12-05 12:23:20] main.CRITICAL: Warning: array_keys() expects parameter 1 to be array, null given in /home/blokjesweb/domains/blokjeswebshop.nl/public_html/vendor/magento/module-shipping/Model/Config.php on line 68 [] []

 

Hmm so it expects an array but finds just 1 ?

Re: Magento 2.3.3 checkout not showing any thing ...

Hello @vdheuvel 

 

Did you check running all the permission related commands?

https://magento.stackexchange.com/questions/91870/magento-2-folder-file-permissions

 

Also upgrade, deploy, index and caching commands?

Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

Re: Magento 2.3.3 checkout not showing any thing ...

Line 68 get's the active carrier (methods of shipping) so probably I need to add one ... which might clear it ... checking now.

Re: Magento 2.3.3 checkout not showing any thing ...

@vdheuvel sure and let me know if you stuck.

 

Thanks

Re: Magento 2.3.3 checkout not showing any thing ...

Well, I found it ... in system.log I saw this:

 

[2019-12-05 12:23:20] main.CRITICAL: Warning: array_keys() expects parameter 1 to be array, null given in /vendor/magento/module-shipping/Model/Config.php on line 68 [] []

 

Which indicates the shipping options, there weren't any as I hadn't installed Magento_OfflineShipping or any of the default US shippers.

 

After installing Magento_OfflineShipping via commandline:


php bin/magento module:enable Magento_OfflineShipping
... setup:di:compile
... setup:static-content:deploy nl_NL -f
... cache:flush

 

The page now works ! Woohoo ...