Skip to content

Instantly share code, notes, and snippets.

@Banhawy
Last active February 18, 2019 22:09
Show Gist options
  • Save Banhawy/c4c1c075f27982a583d44c0ee42ba9e9 to your computer and use it in GitHub Desktop.
Save Banhawy/c4c1c075f27982a583d44c0ee42ba9e9 to your computer and use it in GitHub Desktop.
[Magento Image Uploader Fix] #magento
# Refrences:
# https://community.magento.com/t5/Magento-2-x-Technical-Issues/A-technical-problem-with-the-server-created-an-error-Try-again/td-p/114492/page/3
# https://github.com/magento/magento2/issues/16531
# Change "fileUploader" to "imageUploader" in the "formElement" attribute on lines 57, 154 in vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml
# line 57
<field name="head_shortcut_icon" formElement="imageUploader">
# line 154
<field name="header_logo_src" formElement="imageUploader">
# then run the following commands
bin/magento indexer:reindex
bin/magento setup:di:compile
bin/magento cache:clean
bin/magento cache:flush
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment