cancel
Showing results for 
Search instead for 
Did you mean: 

No more customers in back-office

No more customers in back-office

Hello,

after a cache:flush I've no more customers in admin panel "Customers -> All customers".

I tried to make an other cache:flush and also an indexer:reindex but nothing.

 

Any idea pls??? Smiley Happy

 

Capture d’écran 2018-09-24 à 17.42.12.png

3 REPLIES 3

Re: No more customers in back-office

Hello @JoouulDev

 

Please run php bin/magento indexer:reindex command then it will show all customers in grid. 

Manish Mittal
https://www.manishmittal.com/

Re: No more customers in back-office

Hi @JoouulDev

 

Looking at the error log - i would suggest you to remove var/generation, generated , var/cache, var/page_cache directories from the magento 2 root directory 

 

then run below command in the sequence : 

 

php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush

then check - that might resolved your issue !

if issue solved,Click Kudos & Accept as Solution

Re: No more customers in back-office

Hello @JoouulDev,

 

Please run below command in Magento 2 root directory 

php bin/magento cache:flush
php bin/magento setup:upgrade
rm -rf pub/static/frontend/* pub/static/adminhtml/* var/cache/ var/generation/ var/page_cache/ var/view_preprocessed/ var/composer_home generated/
php -dmemory_limit=6G bin/magento setup:static-content:deploy
php bin/magento indexer:reindex
chmod -Rf 777 pub/ var/
php bin/magento cache:clean

If you still got an issue then let us know.

 

--
If my answer is useful, please Accept as Solution & give Kudos