I just installed Magento 2.2.5 but in admin > content > page the page grid and the button are not displaying. Even in the block the same issue happens, records grid and button is not displaying. Remaining things are working well.
I checked in console but no error is displaying.
Please check the following screenshot for more details.
-
have you checked browser console logs and Magento logs?kunj– kunj2018年08月06日 07:15:15 +00:00Commented Aug 6, 2018 at 7:15
-
Yes I checked the browser console as well as magento log but not getting any error.David Coder– David Coder2018年08月06日 07:18:08 +00:00Commented Aug 6, 2018 at 7:18
-
2You've said "I just install Magento 2.2.5" but still there is clearly third party extension blurred out in admin menu .... please disable all the third party extensions, it is most probably the cause of the error.Vivek Kumar– Vivek Kumar2018年08月20日 22:06:39 +00:00Commented Aug 20, 2018 at 22:06
-
1Yes I disable all the extension but still that is not loading I think it is some js issueDavid Coder– David Coder2018年08月21日 05:58:06 +00:00Commented Aug 21, 2018 at 5:58
-
1Pages & block ui component not loaded because of third party extension have bad/wrong ui component syntax. not all M2.x extension support with M2.2.5. I've M2.x extension from some vendor, and I got the problem. so, I try to remove thats extension.. but i got the problem like this. prnt.sc/kl5j2rKevinzie– Kevinzie2018年08月21日 10:03:58 +00:00Commented Aug 21, 2018 at 10:03
4 Answers 4
Try Following Commands.
empty var folders,
rm -rf generated/metadata rm -rf generated/code rm -rf pub/staticwithout .htaccess fileenable back developer mode,
php bin/magento deploy:mode:set developer
mode to the production mode and vice versa. While doing this, it truncates the var/di, var/generation, and var/view_preprocessed directories.
upgrade modules,
php bin/magento setup:upgradecompile,
php bin/magento setup:di:compiledeploy
php bin/magento setup:static-content:deploy -fcache remove and reindex,
php bin/magento cache:clean php bin/magento cache:flush php bin/magento indexer:reindex
You said you have just installed Magento. So you have to run below set of commands:
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
Before running these commands first delete the content of following directories:
pub/static/frontend
var/view_preprocessed
Run below command and check folder and file permission then check
php bin/magento setup:upgrade
php bin/magento cache:clean
-
I did it already. but still not displaying.David Coder– David Coder2018年08月17日 09:32:30 +00:00Commented Aug 17, 2018 at 9:32
You need to something like this.
Upload fresh magento 2.2.5 file to into current website. (Because if anything missing, then it overide)
Run following command from CLI.
php bin/magento cache:clean php bin/magento cache:flush php bin/magento indexer:reindex php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f
-
Yes that things I have already done. I have replaced the module-cms but still the same issue.David Coder– David Coder2018年08月18日 05:01:15 +00:00Commented Aug 18, 2018 at 5:01
-
I am talking about upload entire magento files, not only module-cms.Dhiren Vasoya– Dhiren Vasoya2018年08月20日 03:50:20 +00:00Commented Aug 20, 2018 at 3:50
Explore related questions
See similar questions with these tags.