cancel
Showing results for 
Search instead for 
Did you mean: 

magento 2.3.2 CE checkout page showing blank

SOLVED

magento 2.3.2 CE checkout page showing blank

hi

i am using magento 2.3.2 CE

the checkout page showing blank please help

 

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: magento 2.3.2 CE checkout page showing blank

@aliatrista6f22 

1. remove generated files 

 

rm -rf generated/code/ var/view_preprocessed/ var/cache var/page_cache

2. and fix permission 

 

 

chown -R www-data generated/ var/ ; chmod -R 777 var/ generated/

Note: update www-data with your webserver username, if required. 

 

3. check with default deploy mode

 

php bin/magento  deploy:mode:set default

 

 

kindly Accept as a solution if this works for you and give Kudos Smiley Happy 

View solution in original post

Re: magento 2.3.2 CE checkout page showing blank

the issue if resolved, thank you so much for help.

View solution in original post

7 REPLIES 7

Re: magento 2.3.2 CE checkout page showing blank

@aliatrista6f22 

 

Please give more details like what are the errors in console, what's in log files.

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: magento 2.3.2 CE checkout page showing blank

in exception log file its showing this

 

main.CRITICAL: Class Magento\Framework\App\Http\Interceptor does not exist {"exception":"[object] (ReflectionException(code: -1): Class Magento\\Framework\\App\\Http\\Interceptor does not exist at /var/www/html/vendor/magento/framework/Code/Reader/ClassReader.php:19)"} []

Re: magento 2.3.2 CE checkout page showing blank

@aliatrista6f22 

 

Run below commands :

php bin/magento setup:di:compile
php bin/magento cache:flush

Check if it works for you !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: magento 2.3.2 CE checkout page showing blank

for the second command its showing below message

 

cache_dir "/var/www/html/var/cache/" is not writable

 

Re: magento 2.3.2 CE checkout page showing blank

I changed the permission using

 

sudo chmod -R 777 /var/www/html/var/cache/

 i tried to run the command 

 

still not working ( showing checkout page blank)

Re: magento 2.3.2 CE checkout page showing blank

@aliatrista6f22 

1. remove generated files 

 

rm -rf generated/code/ var/view_preprocessed/ var/cache var/page_cache

2. and fix permission 

 

 

chown -R www-data generated/ var/ ; chmod -R 777 var/ generated/

Note: update www-data with your webserver username, if required. 

 

3. check with default deploy mode

 

php bin/magento  deploy:mode:set default

 

 

kindly Accept as a solution if this works for you and give Kudos Smiley Happy 

Re: magento 2.3.2 CE checkout page showing blank

the issue if resolved, thank you so much for help.