문제

I have installed new Magento 2.4 following the guide on Magento website using command line no composer, but all I'm getting is blank pages so far, it's installed on AWS using Nginx, any ideas on how to troubleshoot the problem?

Thank you

도움이 되었습니까?

해결책

Check your server logs, probably there is some server incompatibility, you can check possible incompatibilities running this command below:

curl -O https://files.magerun.net/n98-magerun2.phar && 
chmod +x ./n98-magerun2.phar && 
alias n98="./n98-magerun2.phar" &&
n98 sys:check

Run this command to set your store in developer mode, so you can see more logs in the frontend.

bin/magento deploy:mode:set developer

다른 팁

can you paste the problem logs or screen shots ?

Generally Magento installation is -

  • get magento repo keys
  • clone repo
  • create db
  • composer install ( add keys to auth.json in root folder or on composer prompt)
  • use cli setup or web setup wizard to complete setup
  • bin/magento deploy:mode:set developer
  • bin/magento set:up
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top