├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── NEW_TOPIC.md │ ├── TOPIC_CLARIFICATION.md │ └── TOPIC_FORM.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── file_structure.yml │ ├── mdl.yml │ └── metadata_validation.yml ├── .gitignore ├── COPYING.txt ├── LICENSE.txt ├── README.md ├── _checks ├── directory_structure │ ├── validate-categories.ts │ └── validate.py ├── metadata_validation │ └── validate.ts └── styles │ ├── style-rules-dev │ └── style-rules-prod ├── docs ├── article-templates │ ├── best-practice-template.md │ └── troubleshooting-template.md ├── contribution-points.md ├── guides │ ├── kb-formatting-guide.md │ ├── kb-labels-guide.md │ ├── metadata-validation-guide.md │ └── support-kb-styleguide.md ├── img │ ├── Contributor-PR.png │ └── contributor_start.png └── index.md ├── src ├── announcements │ ├── .group.json │ ├── adobe-commerce-announcements │ │ ├── .group.json │ │ ├── 2-4-upgrade-webinar.md │ │ ├── 2021-holiday-surge-capacity-requests-for-magento-commerce-cloud.md │ │ ├── adobe-support-customer-data-access-and-privacy.md │ │ ├── apache-log4j2-adobe-commerce.md │ │ ├── assets │ │ │ ├── AdobeLogo.png │ │ │ ├── assoc_dev-l.png │ │ │ ├── blackfire_function.png │ │ │ ├── blackfire_functionality.png │ │ │ ├── blackfire_profiler_functionaility_missing.png │ │ │ ├── image.png │ │ │ ├── magento-account-privacy-settings.png │ │ │ └── magento_privacy_authorize.png │ │ ├── blackfire-access-removal-for-magento-commerce-cloud.md │ │ ├── faq-for-the-updated-lifecycle-policy-for-magento-releases.md │ │ ├── integration-environment-enhancement-request-pro-and-starter.md │ │ ├── integration-environments-migration-to-new-regions-for-eu-and-us.md │ │ ├── magento-quality-patches-released-new-tool-to-self-serve-quality-patches.md │ │ ├── magento-recommendations-for-php-vulnerabilities.md │ │ ├── magento-ssl-tls-certificate-requirements-and-clean-up.md │ │ ├── mysql-catalog-search-engine-will-be-removed-in-magento-2.4.0.md │ │ ├── switching-to-opensearch-for-adobe-commerce-on-cloud-2.4.4.md │ │ └── upgrade-compatibility-tool-for-magento.md │ └── help-center-news │ │ ├── .group.json │ │ ├── assets │ │ ├── April1-April16_21_KB_Newsletter.pdf │ │ └── breadcrumbs.png │ │ ├── bi-weekly-adobe-commerce-support-kb-newsletter-what-new-and-what-updated.md │ │ ├── github-repo-for-external-contributions.md │ │ └── mbi-documentation-got-moved.md ├── best-practices │ ├── .group.json │ ├── configuration │ │ ├── .group.json │ │ ├── best-practice-for-opcache-memory-size-in-magento-commerce.md │ │ ├── optimize-css-and-js-files-in-magento-commerce.md │ │ └── realpath-cache-size-best-practice.md │ ├── database │ │ ├── .group.json │ │ ├── best-practice-for-triggers-usage.md │ │ ├── database-best-practices-for-magento-commerce-cloud.md │ │ ├── magento-commerce-cloud-best-practice-for-slave-connection.md │ │ ├── magento-upgrade-compact-to-dynamic-tables-2.2.x-2.3.x-2.4.x.md │ │ └── most-common-database-issues-in-magento-commerce-cloud.md │ ├── general │ │ ├── .group.json │ │ ├── adobe-security-notification-service.md │ │ ├── assets │ │ │ ├── MySQLSearchEngine1.png │ │ │ ├── asynchronous_orders_magento_2.4.1.png │ │ │ └── delivering_commerce_experiences_at_scale.pdf │ │ ├── best-practices-for-magento-product-options.md │ │ ├── best-practices-for-using-third-party-extensions-in-magento.md │ │ ├── deployment-order-best-practices-for-magento.md │ │ ├── improve-magento-commerce-search-performance-with-elasticsearch.md │ │ ├── magento-best-practice-update-services-and-components-to-latest-version.md │ │ ├── static-content-deploy-best-practices-in-magento.md │ │ ├── troubleshooting-best-practices-for-magento-commerce-cloud.md │ │ ├── upgrade-plan-checklist-for-magento-commerce.md │ │ ├── whitepaper-delivering-commerce-experiences-at-scale.md │ │ └── work-with-partners.md │ ├── performance │ │ ├── .group.json │ │ ├── _isscopeprivate-in-private-content-blocks-slows-magento-performance.md │ │ ├── assets │ │ │ ├── asynchronous_orders_magento.png │ │ │ ├── asynchronous_sales_emails_magento_2.4.1.png │ │ │ └── magento_allow_all_products_per_page_2.4.1.png │ │ ├── best-practice-for-attribute-set-in-magento.md │ │ ├── best-practice-for-images-in-magento-commerce-cloud.md │ │ ├── best-practice-for-number-of-products-in-cart-in-magento.md │ │ ├── best-practice-magento-number-of-categories-limits.md │ │ ├── best-practice-magento-order-placement-performance.md │ │ ├── best-practice-magento-product-attributes.md │ │ ├── best-practice-magento-product-variations.md │ │ ├── best-practices-for-magento-product-attribute-options.md │ │ ├── best-practices-for-render-blocking-resources-in-magento.md │ │ ├── best-practices-of-sites-stores-and-store-view-numbers.md │ │ ├── indexers-update-on-schedule-optimizes-magento-performance.md │ │ ├── magento-best-practice-conducting-critical-actions-in-admin.md │ │ ├── magento-best-practice-disable-reports-if-not-using.md │ │ ├── magento-best-practice-enable-asynchronous-orders-processing.md │ │ ├── magento-frontend-performance-best-practices.md │ │ ├── max-sales-rules-best-practice-in-magento.md │ │ ├── maximum-number-of-coupons-in-magento.md │ │ ├── product-limits-best-practice.md │ │ └── products-per-page-limit-magento.md │ ├── redis │ │ ├── .group.json │ │ ├── extended-redis-cache-implementation-magento-commerce-2.3.5.md │ │ └── install-redis-5-for-magento-commerce-cloud-2.3.3-or-later.md │ └── security │ │ ├── .group.json │ │ ├── best-practices-for-magento-robots.txt.md │ │ └── prevent-respond-security-incident.md ├── faq │ ├── .group.json │ └── general │ │ ├── .group.json │ │ ├── access-new-relic-services.md │ │ ├── accessibility.md │ │ ├── adobe-commerce-eos-policy-faq.md │ │ ├── adobe-commerce-release-strategy-lifecycle-policy.md │ │ ├── assets │ │ ├── adobe_commerce_pro_monitoring_fact_sheet.pdf │ │ ├── advanced_pricing.png │ │ ├── auto_increment_id.png │ │ ├── cloud_project-ssh-three-node-access.jpg │ │ └── customer_group_price.png │ │ ├── backup-snapshot-on-cloud-faq.md │ │ ├── base-price-change-affect-on-shared-catalog-price.md │ │ ├── billing-faq-for-adobe-commerce.md │ │ ├── can-i-install-third-party-applications-on-my-cloud-instance.md │ │ ├── can-i-schedule-content-staging-updates-for-prices-in-a-shared-catalog.md │ │ ├── database-auto_increment_-increment-variable-set-to-3-magento-cloud-pro.md │ │ ├── depreciation-of-core-magento-payment-integrations.md │ │ ├── do-i-need-fastly-for-a-headless-magento-site.md │ │ ├── fastly-origin-cloaking-enablement-faq.md │ │ ├── google-shopping-ads-channel-faqs.md │ │ ├── how-many-coupons-can-a-customer-use-in-magento-2.md │ │ ├── linking-magento.com-and-accounts.magento.cloud-account-logins.md │ │ ├── magento-gdpr-resources.md │ │ ├── magento-security-scan-tool-faq.md │ │ ├── monitoring-whitepaper.md │ │ ├── partner-magento-commerce-cloud-sandbox-requests.md │ │ ├── support-ticket-contact-reason-descriptions.md │ │ ├── support-tools-overview.md │ │ ├── two-factor-authentication-in-admin-panel-on-magento-faq.md │ │ └── web-application-firewall-waf-powered-by-fastly-the-faq.md ├── help-center-guide │ ├── .group.json │ └── help-center │ │ ├── .group.json │ │ ├── assets │ │ ├── Template_for_ZD_tickets_issue_description.pdf │ │ ├── Validate_Email_Solution.png │ │ ├── Verify_Email_Address_Error.png │ │ ├── hc_add-to-conversation.png │ │ ├── hc_cc_emails.png │ │ ├── hc_cc_emails_remove.png │ │ ├── hc_conversation-write.png │ │ ├── hc_follow-org-tickets.png │ │ ├── hc_my-tickets_tabs.png │ │ ├── hc_search-tickets.png │ │ ├── hc_subject-suggested-articles.png │ │ ├── magento-account-shared-manage-permissions.png │ │ ├── magento-account-shared-switch.png │ │ ├── magento-env-id.png │ │ ├── magento_account_support_tab.png │ │ ├── magento_cloud_account_owner.png │ │ ├── my-tickets-8.png │ │ ├── remove_icon.png │ │ ├── revoke_shared_access.png │ │ ├── search-article-2.png │ │ ├── search-enter-3.png │ │ ├── search-field-1.png │ │ └── submit-a-ticket-4.png │ │ ├── magento-help-center-user-guide.md │ │ └── magento-support-ticket-lifecycle-policy-update.md ├── how-to │ ├── .group.json │ └── general │ │ ├── .group.json │ │ ├── access-the-magento-commerce-customer-support-guide.md │ │ ├── accessing-the-fastly-account-provided-with-adobe-commerce-for-cloud.md │ │ ├── allocate-more-space-for-mysql-in-magento-commerce-cloud.md │ │ ├── assets │ │ ├── Authentication_Error.png │ │ ├── CPU_Allocation.pdf │ │ ├── Check_host_s_CPU_Configuration_-_Application_to_host_resizes.pdf │ │ ├── Check_whether_an_upsize_is_needed.pdf │ │ ├── Integrations_page.png │ │ ├── Outages_how_to_identify_and_measure_effect_Adobe_Commerce.pdf │ │ ├── Search_Field_New_Inset_Image_1.jpg │ │ ├── Search_Results_Image.png │ │ ├── Select_An_Article_Image_1.jpg │ │ ├── Validate_Email_Solution.png │ │ ├── Verify_Email_Address_Error.png │ │ ├── View_Submit_Ticket_Button_JPG_Final.jpg │ │ ├── View_Your_Tickets_JPG_Final.jpg │ │ ├── access_magento_commerce_customer_support_guide.png │ │ ├── access_site_urls.png │ │ ├── adobe_magento_all_services_notification.png │ │ ├── adobe_magento_one_service_subscription.png │ │ ├── adobe_notifications_regions_events.png │ │ ├── adobe_region_events_notifications_custom.png │ │ ├── adobe_status_manage_subscriptions.png │ │ ├── adobe_status_notification_done.png │ │ ├── cart_price_rule.png │ │ ├── cloud-fastly_enable-admin.png │ │ ├── cloud_configure_environment.png │ │ ├── cloud_fastly_menu.png │ │ ├── cloud_variable_admin_password.png │ │ ├── configure_environment.png │ │ ├── copy_git_clone.png │ │ ├── create-subscription-adobe-status.png │ │ ├── create_new_access_key_magento_2.4.1.png │ │ ├── design_conf1.png │ │ ├── design_conf2.png │ │ ├── df-h_output.png │ │ ├── domains_tab.png │ │ ├── fastly_service_id_api_key.png │ │ ├── fastly_token_value.png │ │ ├── fastly_tokens_environment_variables.png │ │ ├── follow-up.png │ │ ├── hc_add-to-conversation.png │ │ ├── hc_cc_emails.png │ │ ├── hc_cc_emails_remove.png │ │ ├── hc_conversation-write.png │ │ ├── hc_firefox.png │ │ ├── hc_follow-org-tickets.png │ │ ├── hc_log-in.png │ │ ├── hc_mac.png │ │ ├── hc_my-tickets.png │ │ ├── hc_my-tickets_tabs.png │ │ ├── hc_rate-article.png │ │ ├── hc_search-tickets.png │ │ ├── hc_search.png │ │ ├── hc_select-category.png │ │ ├── hc_snagit.png │ │ ├── hc_subject-suggested-articles.png │ │ ├── hc_submit-a-support-ticket.png │ │ ├── hc_submit-a-ticket.png │ │ ├── hc_suggestions.png │ │ ├── hc_top-article-suggestions.png │ │ ├── hc_top-article-suggestions_1.png │ │ ├── hc_troubleshooting.png │ │ ├── login_panel.png │ │ ├── login_panel_s.png │ │ ├── magento-account-shared-manage-permissions.png │ │ ├── magento-account-shared-switch.png │ │ ├── magento-admin_base-urls-secure-settings.png │ │ ├── magento-admin_base-urls-secure.png │ │ ├── magento-admin_force-tls-button.png │ │ ├── magento-admin_force-tls-confirmation-dialog.png │ │ ├── magento-admin_force-tls-enabled.png │ │ ├── magento-admin_secure-base-url.png │ │ ├── magento_account_support_tab.png │ │ ├── magento_cloud_account_owner.png │ │ ├── magento_cloud_storage.png │ │ ├── magento_full_page_cache_2.4.1.png │ │ ├── new-grouped-product.png │ │ ├── project_space.png │ │ ├── remove_icon.png │ │ ├── revoke_shared_access.png │ │ ├── segment_condition_total_number_of_orders_less_than_one.png │ │ ├── select_commit_hash.png │ │ ├── snapshot_cloud.png │ │ ├── update_exists_0.png │ │ ├── updates_exist_1.png │ │ ├── zendesk_cc_emails.png │ │ ├── zendesk_cc_emails_remove.png │ │ ├── zendesk_my_activities.png │ │ ├── zendesk_requests_tab.png │ │ └── zendesk_ticket_search.png │ │ ├── block-malicious-traffic-for-magento-commerce-on-fastly-level.md │ │ ├── bootstrap-magento-2-in-a-sandbox-script.md │ │ ├── cannot-access-the-latest-beta-version.md │ │ ├── change-account-owner-access-credentials-via-api-tokens-for-fastly-on-cloud.md │ │ ├── change-account-owner-for-new-relic-on-cloud.md │ │ ├── change-increment-id-for-a-db-entity-order-invoice-credit-memo-etc.-on-particular-store.md │ │ ├── change-magento-admin-password-on-cloud.md │ │ ├── change-magento-admin-url-on-cloud.md │ │ ├── check-disk-space-limit-for-magento-commerce-cloud.md │ │ ├── check-disk-space-on-cloud-environment-using-cli.md │ │ ├── check-logs-to-troubleshoot-500-and-503-errors-on-magento.md │ │ ├── check-vcpu-using-observation-for-adobe-commerce.md │ │ ├── configure-fastly-dns-settings-on-staging-and-production-environments.md │ │ ├── configure-npm-to-be-able-to-use-pwa-studio.md │ │ ├── create-a-patch-for-a-magento-2-composer-installation-from-a-github-commit.md │ │ ├── create-database-dump-on-cloud.md │ │ ├── create-dump-for-support.md │ │ ├── customize-design-configuration-in-magento-admin.md │ │ ├── display-magento-error-report-number-instead-of-fastly-503-error-on-cloud.md │ │ ├── enable-elasticsearch-on-cloud.md │ │ ├── find-large-mysql-tables.md │ │ ├── how-to-add-a-new-country-to-magento-2.md │ │ ├── how-to-apply-a-composer-patch-provided-by-magento.md │ │ ├── how-to-find-magento-product-documentation.md │ │ ├── how-to-identify-outages.md │ │ ├── how-to-profile-database-queries-on-cloud.md │ │ ├── how-to-request-temporary-magento-upsize.md │ │ ├── how-to-subscribe-to-adobe-magento-status-updates.md │ │ ├── increase-disk-space-for-integration-environment-on-cloud.md │ │ ├── log-locations-directories-for-pro-plan-integration-staging-production.md │ │ ├── log-locations-directories-for-starter-plan.md │ │ ├── magento-cloud-reduce-deployment-downtime-with-configuration-management.md │ │ ├── magento-commerce-cloud-check-hosts-cpu-configuration.md │ │ ├── magento-commerce-cloud-check-if-upsize-for-hosts-instances-is-needed.md │ │ ├── magento-commerce-cloud-cpu-allocation-calculation.md │ │ ├── mbi-creating-and-editing-advanced-calculated-columns.md │ │ ├── mbi-essentials-update-payment-method-or-cancel-subscription.md │ │ ├── mbi-reauthenticating-integrations.md │ │ ├── mbi-training-video-cohort-report-builder.md │ │ ├── mbi-training-video-filter-sets.md │ │ ├── mbi-training-video-sql-report-builder.md │ │ ├── provide-discount-for-first-purchase-only-no-coupons.md │ │ ├── rearrange-cloud-branches-adobe-commerce.md │ │ ├── redeploy-with-another-key.md │ │ ├── redirect-http-to-https-for-all-pages-on-cloud-force-tls.md │ │ ├── reset-a-theme-to-defaults.md │ │ ├── reset-environment-on-cloud.md │ │ ├── reset-stuck-magento-cron-jobs-manually-on-cloud.md │ │ ├── roll-back-environment-without-cloud-snapshot.md │ │ ├── set-cache-ttl-for-images-and-other-static-content.md │ │ ├── set-up-fastly-for-starter-plan-on-cloud.md │ │ ├── share-access-third-party.md │ │ ├── ssl-tls-certificates-for-magento-commerce-cloud-faq.md │ │ ├── static-content-deployment-options-to-reduce-deployment-downtime-on-cloud.md │ │ ├── switch-the-magento-mode.md │ │ ├── sync-data-and-files-from-production-to-staging-or-staging-to-integration.md │ │ ├── test-fastly-on-production-if-a-live-site-uses-the-same-domain.md │ │ ├── update-shared-catalog-prices-using-rest-api.md │ │ ├── upgrade-mariadb-10.0-to-10.2-for-magento-commerce-cloud.md │ │ └── work-with-refunds-and-credit-memos-using-magento-api.md ├── news-and-updates │ └── .group.json ├── support-tools │ ├── .group.json │ ├── managed-alerts-for-adobe-commerce │ │ ├── .group.json │ │ ├── assets │ │ │ ├── Magento_Redis_Memory_Warning.png │ │ │ ├── apdex-critical-magento-managed.png │ │ │ ├── apdex-warning-magento-managed.png │ │ │ ├── cpu-critical-magento-managed.png │ │ │ ├── cpu-warning-magento-managed.png │ │ │ ├── disk-critical-magento-managed.png │ │ │ ├── disk-warning-magento-managed.png │ │ │ ├── memory-critical-magento-managed.png │ │ │ ├── memory-warning-magento-managed.png │ │ │ ├── new_relic_redis_memory_critical.png │ │ │ └── new_relic_redis_memory_warning.png │ │ ├── managed-alerts-for-magento-commerce-apdex-critical-alert.md │ │ ├── managed-alerts-for-magento-commerce-apdex-warning-alert.md │ │ ├── managed-alerts-for-magento-commerce-cpu-warning-alert.md │ │ ├── managed-alerts-for-magento-commerce-disk-critical-alert.md │ │ ├── managed-alerts-for-magento-commerce-disk-warning-alert.md │ │ ├── managed-alerts-for-magento-commerce-memory-warning-alert.md │ │ ├── managed-alerts-for-magento-commerce.md │ │ ├── managed-alerts-on-magento-commerce-cpu-critical-alert.md │ │ ├── managed-alerts-on-magento-commerce-mariadb-alerts.md │ │ ├── managed-alerts-on-magento-commerce-memory-critical-alert.md │ │ ├── managed-alerts-on-magento-commerce-redis-memory-critical-alert.md │ │ └── managed-alerts-on-magento-commerce-redis-memory-warning-alert.md │ ├── observation-for-adobe-commerce │ │ ├── .group.json │ │ └── observation-adobe-commerce-overview.md │ ├── patches-available-in-qpt-tool │ │ ├── .group.json │ │ ├── MDVA-39966-unable-to-deploy-locales-other-than-en_us.md │ │ ├── acsd-42807-custom-currency-sign-not-displayed-on-store-front.md │ │ ├── acsd-43887-incorrect-details-displayed-on-checkout-payment-page.md │ │ ├── acsd-44591-user-gets-error-when-trying-to-place-order-without-captcha-confirmation.md │ │ ├── acsd-44938-vat-id-cannot-applied-graphql-guest-user.md │ │ ├── acsd-45143-setshippingaddressoncart-mutation-doesn't-allow-setting-numeric-region-code.md │ │ ├── acsd-45169-visual-merchandiser-does-not-display-the-correct-stock-and-price-for-configurable-product.md │ │ ├── acsd-45241-stock-quantity-for-virtual-product-miscalculated.md │ │ ├── acsd-45255-exception-on-low-stock-report-page-for-restricted-admin-user.md │ │ ├── acsd-45257-graphql-doesnt-display-cart-discount-correctly.md │ │ ├── acsd-45424-incorrect-reservation-compensation-created-after-partial-refund.md │ │ ├── acsd-45488-configurable-product-with-multiple-sources-not-returned-to-in-stock.md │ │ ├── acsd-45520-swatch-options-not-pre-selected-on-product-detail-page.md │ │ ├── acsd-45754-reward-points-not-added-after-applying-coupon-to-the-cart.md │ │ ├── acsd-45781-store-front-search-field-not-displayed-on-mobile.md │ │ ├── acsd-45817-graphql-products-mutation-gives-all-configurable-variants.md │ │ ├── acsd-45849-video-metadata-lost-after-staging-update.md │ │ ├── acsd-46146-two-order-confirmation-emails-are-sent-after-placing-order-from-admin.md │ │ ├── acsd-46213-category-tree-limited-20-categories.md │ │ ├── acsd-46404-admin-user-cannot-log-in-after-upgrading-to-2.4.4.md │ │ ├── acsd-46815-static-content-deploy-fails-when-using-compact-strategy.md │ │ ├── acsd-46912-async-bulk-v1-configurable-products-bysku-options-endpoint-issue.md │ │ ├── assets │ │ │ ├── cms_page_magento.png │ │ │ ├── create_new_order_magento.png │ │ │ ├── create_new_order_magento_2.3.4.png │ │ │ ├── new-acl.png │ │ │ ├── new_order_magento.png │ │ │ ├── new_order_magento_2.3.4.png │ │ │ ├── persistent_shopping_cart_magento_2.4.1.png │ │ │ ├── products_magento_different_position.png │ │ │ ├── products_magento_ordered.png │ │ │ ├── status_table.png │ │ │ └── tax_settings_1.png │ │ ├── check-patch-for-magento-issue-with-magento-quality-patches.md │ │ ├── mc-41359-magento-patch-missing-settings-samesite-cookie-param.md │ │ ├── mc-42528-graphql-query-of-categorylist-shows-all-categories.md │ │ ├── mcp-87-magento-patch-storefront-broken.md │ │ ├── mdva-11189-cataloginventory_stock-rows-deleted-post-csv-import.md │ │ ├── mdva-12304-magento-patch-503-error-on-store-front-and-cookie-error.md │ │ ├── mdva-13203-magento-patch-503-error-homepage-post-full-reindex.md │ │ ├── mdva-15546-column-entity_id-where-clause-is-ambiguous.md │ │ ├── mdva-19391-magento-patch-advanced-reporting-not-working.md │ │ ├── mdva-19640-magento-patch-advanced-reporting-shows-no-data.md │ │ ├── mdva-20376-magento-patch-no-such-entity-with-customerid.md │ │ ├── mdva-21095-insert-into-search_tmp...-never-ends-after-mass-attribute-update.md │ │ ├── mdva-22026-magento-patch-unable-to-import-product-images-from-external-url.md │ │ ├── mdva-22150-magento-patch-frontend-user-can-t-login.md │ │ ├── mdva-22383-magento-patch-target-rule-indexers-slow-to-index.md │ │ ├── mdva-23426-magento-patch-emails-sent-as-attachments-from-outlook.md │ │ ├── mdva-23764-magento-patch-error-when-loading-dynamic-blocks.md │ │ ├── mdva-23845-can-t-preview-email-template-when-js-minification-enabled.md │ │ ├── mdva-24201-magento-patch-catalog-price-rules-don-t-work.md │ │ ├── mdva-25631-unable-to-save-and-refresh-customer-segments.md │ │ ├── mdva-26005-unable-to-select-category-in-tree-for-cart-price-rule-conditions.md │ │ ├── mdva-26639-no-order-items-in-new-order-confirmation-email-template.md │ │ ├── mdva-27239-cross-sell-products-are-not-displayed.md │ │ ├── mdva-27456-users-get-error-when-loading-swagger.md │ │ ├── mdva-27664-magento-patch-date-of-birth-account-error.md │ │ ├── mdva-28191-magento-patch-no-payment-method-for-one-website-in-admin-create-new-order.md │ │ ├── mdva-28202-magento-patch-out-of-stock-products-don-t-filter-properly.md │ │ ├── mdva-28300-magento-patch-price-calculation-issue-with-catalog-price-rule-in-graphql.md │ │ ├── mdva-28357-sku-search-in-advanced-search-page-doesn-t-work.md │ │ ├── mdva-28409-magento-patch-magento-web-server-crashing-out-of-memory.md │ │ ├── mdva-28511-magento-patch-accented-letters-hang-payflow-payments.md │ │ ├── mdva-28651-magento-patch-b2b-quotes-slow-to-load.md │ │ ├── mdva-28661-magento-patch-issue-with-company-users-management-when-changing-admin-email.md │ │ ├── mdva-28763-magento-patch-issues-with-managing-product-images-via-rest-api.md │ │ ├── mdva-28993-magento-patch-elasticsearch-partial-search-minimum-should-match-and-fix-for-searches-with-hyphen-issue.md │ │ ├── mdva-29042-magento-patch-global-category-permissions-unchanged.md │ │ ├── mdva-29148-patch-arraybackend-does-not-assign-default-value-on-save.md │ │ ├── mdva-29389-magento-patch-advanced-reporting-related-cron-job-fails.md │ │ ├── mdva-29400-duplicated-orders-placed-with-paypal-express-checkout.md │ │ ├── mdva-29446-magento-patch-non-relevant-shipping-method-available-for-checkout.md │ │ ├── mdva-29787-magento-patch-related-products-are-not-displayed.md │ │ ├── mdva-29954-magento-patch-wrong-address-sent-new-company-user-registration-email.md │ │ ├── mdva-29959-magento-patch-admin-with-customers-permissions-cannot-manage-company-account.md │ │ ├── mdva-30102-magento-patch-redis-cache-getting-full.md │ │ ├── mdva-30107-magento-patch-store-switcher-does-not-work-as-expected.md │ │ ├── mdva-30112-magento-patch-large-number-reservation-inconsistencies.md │ │ ├── mdva-30186-unsorted-attribute-options-in-graphql-response.md │ │ ├── mdva-30265-magento-patch-tracking-link-in-email-returns-404-page-not-found.md │ │ ├── mdva-30284-magento-patch-elasticsearch-7-limit-of-total-fields-xxxxx-in-index-has-been-exceeded.md │ │ ├── mdva-30357-magento-patch-sitemap-generated-by-cron-has-wrong-image-url.md │ │ ├── mdva-30428-magento-patch-wishlist-not-working-with-the-msi.md │ │ ├── mdva-30565-magento-patch-session-cache-local-storage-and-checkout-issue.md │ │ ├── mdva-30593-magento-patch-expired-quotes-are-not-cleaned-up.md │ │ ├── mdva-30594-magento-patch-multiple-address-checkout-errors.md │ │ ├── mdva-30599-magento-patch-customer_is_guest-is-set-incorrectly.md │ │ ├── mdva-30782-magento-patch-dynamic-block-is-displayed-regardless-of-cart-rule.md │ │ ├── mdva-30815-magento-patch-elasticsearch-blank-search-results.md │ │ ├── mdva-30837-magento-patch-minimum-order-amount-for-free-shipping.md │ │ ├── mdva-30845-magento-patch-checkout-breaks-connection-to-shipping-provider-fails.md │ │ ├── mdva-30858-magento-patch-paypal-settlement-reports-missing.md │ │ ├── mdva-30862-incorrect-order-date-on-printed-pdf-invoice.md │ │ ├── mdva-30889-magento-patch-can-t-invoice-bundle-products-virtual-and-simple.md │ │ ├── mdva-30945-magento-patch-a-fatal-error-during-add-and-update-cart-operations.md │ │ ├── mdva-30963-magento-patch-admin-product-search-filter-not-working-as-expected.md │ │ ├── mdva-30972-magento-patch-order-status-incorrect-shipment-created-via-rest-api.md │ │ ├── mdva-30977-magento-patch-missing-products-from-categories-indexing-related.md │ │ ├── mdva-31006-magento-patch-paypal-duplicate-orders-10415-error.md │ │ ├── mdva-31007-magento-patch-custom-address-attributes-display.md │ │ ├── mdva-31021-magento-patch-slow-import-and-export-if-many-product-options.md │ │ ├── mdva-31150-magento-patch-invoice-without-store-credit-info.md │ │ ├── mdva-31168-magento-patch-product-export-file-does-not-show-in-admin.md │ │ ├── mdva-31224-magento-patch-product-price-reindex-takes-too-long.md │ │ ├── mdva-31236-magento-patch-admins-cannot-setup-2fa-or-log-in.md │ │ ├── mdva-31242-magento-patch-issue-in-exporting-orders-in-csv-format.md │ │ ├── mdva-31282-magento-patch-double-authorization-on-paypal-payflow-pro.md │ │ ├── mdva-31295-magento-patch-loyalty-points-on-partial-orders.md │ │ ├── mdva-31307-magento-patch-out-of-memory-on-certain-categories.md │ │ ├── mdva-31343-magento-patch-schedule-update-removes-body-class-for-category.md │ │ ├── mdva-31363-magento-patch-cart-price-rule-does-not-apply-graphql.md │ │ ├── mdva-31399-magento-patch-subtotal-incl.-tax-in-cart-rule-condition.md │ │ ├── mdva-31519-magento-patch-lost-order-after-guest-checkout.md │ │ ├── mdva-31590-unable-to-update-attributes-in-bulk-using-mysql-async-queues.md │ │ ├── mdva-31640-magento-patch-unable-to-create-consecutive-scheduled-update-via-rest-api.md │ │ ├── mdva-31759-magento-patch-csv-import-ignores-attribute-updates.md │ │ ├── mdva-31763-catalog-price-rules-are-reverted-until-manual-reindex.md │ │ ├── mdva-31791-magento-patch-improvement-for-product-page-with-related-products-and-target-rules.md │ │ ├── mdva-31969-magento-patch-import-products-.csv-images-duplicated.md │ │ ├── mdva-32012-magento-patch-s.-korean-and-argentina-zip-codes-validation.md │ │ ├── mdva-32133-magento-patch-page-builder-doesn-t-load-media-gallery.md │ │ ├── mdva-32313-magento-patch-products-added-to-wishlist-with-wrong-configuration.md │ │ ├── mdva-32449-magento-sales-order-history-slow-or-doesn-t-load-with-503-error.md │ │ ├── mdva-32545-magento-patch-order-invoices-don-t-send-automatically.md │ │ ├── mdva-32632-orders-in-payment-system-but-not-in-magento.md │ │ ├── mdva-32634-magento-patch-move-category-in-hierarchy-url_path-wrong.md │ │ ├── mdva-32655-quoteitemcleaner-consumer-executes-one-message-per-execution.md │ │ ├── mdva-32694-magento-patch-issue-adding-product-to-a-quote.md │ │ ├── mdva-32714-magento-patch-customer-group-price-not-working-via-graphql.md │ │ ├── mdva-32739-magento-patch-old-emails-sent-when-asynchronous-sending-enabled.md │ │ ├── mdva-32759-magento-patch-shared-catalogs-delete-tier-pricing.md │ │ ├── mdva-32776-stock-status-not-updated-when-order-placed.md │ │ ├── mdva-33106-magento-patch-rescheduled-product-changes-erased-after-cron-run.md │ │ ├── mdva-33168-api-async-endpoint-unsets-special-price.md │ │ ├── mdva-33281-magento-patch-inventory-inconsistency-issues.md │ │ ├── mdva-33289-magento-patch-javascript-in-address-at-checkout.md │ │ ├── mdva-33344-magento-patch-rma-item-attribute-set-id-hard-coded.md │ │ ├── mdva-33382-magento-patch-invalidated-indexers.md │ │ ├── mdva-33393-magento-patch-provided-countryid-does-not-exist.md │ │ ├── mdva-33453-page-builder-preview-breaks-product-price-differs-across-sites.md │ │ ├── mdva-33482-magento-patch-tax-miscalculation-in-credit-memo.md │ │ ├── mdva-33516-magento-patch-edit-bundled-product-requisition-list-error.md │ │ ├── mdva-33559-magento-patch-payflowpro-payment-declined-error.md │ │ ├── mdva-33606-users-get-error-when-saving-cms-page-assigned-to-hierarchy.md │ │ ├── mdva-33614-magento-patch-can-t-save-terms-page.md │ │ ├── mdva-33632-magento-patch-out-of-stock-product-reorder-exception.md │ │ ├── mdva-33704-magento-patch-in-store-pickup-doesn-t-display.md │ │ ├── mdva-33894-magento-patch-bundle-solution-for-quick-order.md │ │ ├── mdva-33970-magento-patch-currency-sign-in-credit-memo.md │ │ ├── mdva-33975-magento-patch-graphql-price-calculations.md │ │ ├── mdva-33976-magento-patch-bundle-out-of-stock-after-option-removed.md │ │ ├── mdva-33992-b2b-custom-pricing-for-wholesaler-not-displayed-in-cart.md │ │ ├── mdva-34012-magento-patch-attribute-checkbox-changes-in-error.md │ │ ├── mdva-34023-magento-patch-no-such-entity-with-addressid-error.md │ │ ├── mdva-34102-magento-patch-inconsistent-salable-quantity.md │ │ ├── mdva-34189-visual-merchandiser-runs-long-mysql-queries.md │ │ ├── mdva-34192-magento-patch-can-t-modify-customers-date-in-certain-format.md │ │ ├── mdva-34330-orders-are-not-filtered-according-to-admin-timezone.md │ │ ├── mdva-34469-magento-patch-wrong-store-code-specified-for-cart.md │ │ ├── mdva-34474-api-requisition-list-update-results-in-error.md │ │ ├── mdva-34591-cart-price-rule-calculations-not-as-expected.md │ │ ├── mdva-34665-bundle-products-disappear-storefront-category-page.md │ │ ├── mdva-34680-customer-account-created-time-is-not-filtered-correctly-in-customers-grid.md │ │ ├── mdva-34695-magento-patch-products-and-categories-not-displaying.md │ │ ├── mdva-34847-magento-patch-customer_grid_flat-table-slow-queries.md │ │ ├── mdva-34850-swatches-not-strike-through-inventory-reaches-0.md │ │ ├── mdva-34867-magento-patch-condition-fieldset-values-for-scheduled-update-not-saved.md │ │ ├── mdva-34886-magento-patch-no-search-results-when-weight-attribute-used.md │ │ ├── mdva-34928-checkout-page-error-after-store-credit-removed.md │ │ ├── mdva-34943-magento-patch-quick-order-can-t-add-2-products-to-cart.md │ │ ├── mdva-34948-slow-site-and-operations.md │ │ ├── mdva-35064-url-rewrites-not-generated-for-configurables-created-via-api.md │ │ ├── mdva-35092-magento-patch-vimeo-error-video-not-found.md │ │ ├── mdva-35155-can-t-buy-bundle-product-after-option-title-changed.md │ │ ├── mdva-35197-graphql-add-to-cart-error-if-added-products-out-of-stock.md │ │ ├── mdva-35254-checkout-captcha-functioning-incorrectly.md │ │ ├── mdva-35286-error-switching-multiple-address-to-onepage-checkout.md │ │ ├── mdva-35312-empty-graphql-request-throws-500-error-not-200-ok.md │ │ ├── mdva-35356-wrong-store-credit-return-after-canceling-partially-invoiced-order.md │ │ ├── mdva-35569-magento-patch-fpt-won-t-show-in-graphql.md │ │ ├── mdva-35773-tax-appears-on-invoice-with-100-discount.md │ │ ├── mdva-35847-magento-patch-company-user-form-not-working.md │ │ ├── mdva-35910-form-validation-broken-when-login-as-customer-disabled.md │ │ ├── mdva-35982-magento-patch-can-t-ship-some-orders.md │ │ ├── mdva-35984-wrong-product-qty-in-concurrent-shipments-for-same-product.md │ │ ├── mdva-36021-call-to-a-member-function-getId-error-on-the-order-details-page.md │ │ ├── mdva-36138-free-shipping-rule-not-applied-cart-multiple-items.md │ │ ├── mdva-36170-graphql-query-to-category-returns-not-cached-data.md │ │ ├── mdva-36253-incorrect-total-in-mini-cart-after-deleting-item.md │ │ ├── mdva-36286-page-builder-preview-breaks-if-SKU-positions-are-in-different-categories.md │ │ ├── mdva-36309-product-search-by-attributes-is-slow-in-the-admin-grids.md │ │ ├── mdva-36424-images-attached-to-page-builder-vanish-on-save.md │ │ ├── mdva-36464-send-email-settings-not-working-at-store-view-level.md │ │ ├── mdva-36572-new-inventory-reservation-created-after-updating-credit-memo.md │ │ ├── mdva-36615-catalog-products-grid-filter-incorrect-results.md │ │ ├── mdva-36718-custom-options-remain-after-api-change.md │ │ ├── mdva-36832-images-duplicates-on-pages-with-view-width-of-768px.md │ │ ├── mdva-36833-broken-pagination-on-search-results-page.md │ │ ├── mdva-36853-no-images-load-from-large-media-galleries.md │ │ ├── mdva-37068-incorrect-tax-rate-displays-on-checkout-for-virtual-products.md │ │ ├── mdva-37082-incremental-indexing-of-grouped-product-child-products-can-cause-incorrect-other-grouped-products.md │ │ ├── mdva-37115-unnecessary-only-0-left-notice-is-shown-on-the-configurable-product-page.md │ │ ├── mdva-37182-inconsistent-search-results-for-elasticsearch-6-and-7.md │ │ ├── mdva-37224-unable-to-pay-negotiable-quote-with-payflow-pro.md │ │ ├── mdva-37225-quick-order-not-working-with-integer-sku.md │ │ ├── mdva-37234-adding-item-to-cart-multiple-times-creates-duplicate-item.md │ │ ├── mdva-37288-wrong-tier-prices-returned-after-graphql-request.md │ │ ├── mdva-37362-configurable-product-options-are-empty-in-graphql-response.md │ │ ├── mdva-37364-custom-customer-attribute-of-date-type-breaks-the-customer-grid-ui.md │ │ ├── mdva-37478-can-t-create-partial-invoice-via-rest-api.md │ │ ├── mdva-37592-sorting-by-price-does-not-work-correctly-for-products-with-a-zero-price-assigned-to-shared-catalog.md │ │ ├── mdva-37725-asynchronous-order-emails-sent-via-non-default-websites-containing-default-websites-logo-urls.md │ │ ├── mdva-37748-graphql-query-returns-products-not-assigned-to-shared-catalog.md │ │ ├── mdva-37779-unable-to-add-configurable-product-to-cart-via-graphql.md │ │ ├── mdva-37874-fixed-discount-not-applied-to-entire-cart.md │ │ ├── mdva-37897-incorrect-redirect-when-customers-try-to-add-products-with-options-from-recently-viewed-widget.md │ │ ├── mdva-37913-downloadable-product-links-disappear-after-updating-extension-attributes-via-api.md │ │ ├── mdva-37916-paypal-payment-advance-not-returning-to-confirmation-page.md │ │ ├── mdva-37984-visual-match-product-by-rule-functionality-not-filtering-products-correctly.md │ │ ├── mdva-38132-Infinite-redirect-in-case-of-backend-url-is-different-from-default-website-url.md │ │ ├── mdva-38270-customer-order-totals-missing-gift-card-amount.md │ │ ├── mdva-38308-error-after-adding-vimeo-videos-to-disabled-products.md │ │ ├── mdva-38346-date-filters-not-working-properly-when-adobe-commerce-timezone-is-different-from-local.md │ │ ├── mdva-38393-catalog-rules-stop-working-for-configurable-product-if-its-simple-product-is-renamed.md │ │ ├── mdva-38447-not-visible-individually-configurable-child-products.md │ │ ├── mdva-38468-error-when-saving-cms-pages.md │ │ ├── mdva-38526-admin-user-not-able-to-access-swat-tool.md │ │ ├── mdva-38559-v1-customers-search-api-error.md │ │ ├── mdva-38608-temporary-tables-are-not-deleted-when-the-reindex-is-not-finished-successfully.md │ │ ├── mdva-38626-admin-user-is-not-able-to-place-orders-using-paypal-payflow-pro.md │ │ ├── mdva-38666-admin-user-is-unable-to-change-configurable-product-options.md │ │ ├── mdva-38728-changing-product-visibility-creates-url-rewrite-for-the-main-website.md │ │ ├── mdva-38799-downloadable-products-were-not-saved-after-creating-a-staging-update.md │ │ ├── mdva-38827-Customers-receive-an-order-shipment-email-containing-an-error-message.md │ │ ├── mdva-38852-catalog-inventory-locks-tables-for-updates-that-significantly-decrease-performance.md │ │ ├── mdva-38929-invoice-with-fpt-shows-wrong-grand-total.md │ │ ├── mdva-39031-adding-unassigned-products-to-cart-possible-via-graphql.md │ │ ├── mdva-39043-admin-users-with-limited-access-get-error-while-adding-products-widget-to-cms.md │ │ ├── mdva-39153-discount-amount-is-calculated-incorrectly-during-reorder-in-the-admin.md │ │ ├── mdva-39163-shipping-methods-not-available-when-a-new-user-is-registered.md │ │ ├── mdva-39181-related-product-rules-show-products-from-category-not-defined-in-rule.md │ │ ├── mdva-39195-add-to-cart-button-is-inactive-on-the-category-page.md │ │ ├── mdva-39229-error-updating-catalog-rule-staging-update-start-time.md │ │ ├── mdva-39305-login-issues-with-enabled-google-recaptcha.md │ │ ├── mdva-39384-unable-to-save-custom-customer-attribute-for-company-user.md │ │ ├── mdva-39482-product-goes-out-of-stock-when-imported-with-0-quantity.md │ │ ├── mdva-39521-unable-to-set-shipping-address-on-cart-via-graphql.md │ │ ├── mdva-39546-staging-update-start-date-set-to-earlier-date-than-current-date.md │ │ ├── mdva-39605-redis-cache-ttl-expiration date-has-wrong-value.md │ │ ├── mdva-39711-unable-to-access-customers-grid-after-deleting-website.md │ │ ├── mdva-39713-user-able-to-edit-start-time-for-active-scheduled-update.md │ │ ├── mdva-39923-searching-by-sku-in-b2b-quick-order-is-case-sensitive.md │ │ ├── mdva-39935-graphql-returns-configurable-child-products-disabled-at-website-level.md │ │ ├── mdva-39986-unable-to-place-order-in-admin-using-safari-browser-in-macos.md │ │ ├── mdva-39993-inventory-changes-done-through-api-are-not-reflected-on-the-frontend.md │ │ ├── mdva-40101-items-remain-in-mini-cart-after-order-placement-using-paypal-express-checkout.md │ │ ├── mdva-40120-graphql-product-desc-asc-sort-doesnt-work.md │ │ ├── mdva-40134-graphql-does-not-return-related-products-when-shared-catalog-is-enabled.md │ │ ├── mdva-40175-radio-buttons-not-displayed-when-reorder-by-admin.md │ │ ├── mdva-40262-graphql-queries-don't-show-in-popular-search-terms-in-admin.md │ │ ├── mdva-40311-invalid-security-error-after-login-to-admin-if-custom-admin-path-is-configured.md │ │ ├── mdva-40399-partial-invoices-for-same-order-cannot-be-created-simultaneously-via-rest-api.md │ │ ├── mdva-40401-coupon-usage-value-changes-even-after-failed-order.md │ │ ├── mdva-40435-discount-on-bundle-product-is-not-applied-correctly-via-graphql.md │ │ ├── mdva-40488-configurable-products-with-out-of-stock-child-products-not-shown-in-correct-price-range.md │ │ ├── mdva-40537-creating-store-view-gives-error-when-multiple-cms-pages-with-same-url-keys-exist.md │ │ ├── mdva-40545-only-the-first-node-for-a-page-retrieved.md │ │ ├── mdva-40550-products-missing-on-the-frontend-after-reindexing.md │ │ ├── mdva-40601-users-get-error-retrieving-info-about-category-changed-by-scheduled-update-through-graphql.md │ │ ├── mdva-40609-disabled-products-data-absent-in-cataloginventory-stock-status-table.md │ │ ├── mdva-40619-hierarchy-changes-break-cms-page-inline-edit-and-throw-500-error.md │ │ ├── mdva-40816-inventory-info-doesn't-show-on-product-grid.md │ │ ├── mdva-40830-store-credit-applied-multiple-times.md │ │ ├── mdva-40896-error-typeerror-in-async-product.md │ │ ├── mdva-40961-additional-item-cant-be-added-to-cart-when-minimum-qty-of-the-item-already-in-cart.md │ │ ├── mdva-41046-simple-products-with-custom-options-not-available-for-assigning.md │ │ ├── mdva-41061-stock-status-resets-saleable-when-saved-from-admin.md │ │ ├── mdva-41136-expiration-date-of-the-mage-cache-sessid-is-not-extended.md │ │ ├── mdva-41139-configurable-product-becomes-out-of-stock-after-product-import.md │ │ ├── mdva-41164-admin-user-cannot-save-or-edit-company-with-custom-customer-attributes.md │ │ ├── mdva-41215-users-get-500-error-after-setting-mage-messages-cookie.md │ │ ├── mdva-41229-images-not-displayed-on-the-frontend-after-configurable-products-import.md │ │ ├── mdva-41236-unable-to-create-new-or-edit-existing-scheduled-staging-update.md │ │ ├── mdva-41305-error-on-graphql-query-addproductstowishlist.md │ │ ├── mdva-41350-exception-when-admin-adds-products-outside-scope.md │ │ ├── mdva-41399-unable-to-access-manage-shopping-cart-if-a-customer-adds-product-to-wishlist.md │ │ ├── mdva-41597-error-adding-more-than-one-configurable-product-to-cart.md │ │ ├── mdva-41628-restricted-admin-user-gets-access-to-new-resources.md │ │ ├── mdva-41631-error-retrieving-order-information-without-optional-telephone-value.md │ │ ├── mdva-42046-incorrect-value-assigned-for-product-attribute.md │ │ ├── mdva-42237-configurable-product-special-price-not-updated.md │ │ ├── mdva-42269-admin-user-cannot-log-in-to-admin-due-to-the-typeerror.md │ │ ├── mdva-42283-date-time-format-for-french-locale-invalid.md │ │ ├── mdva-42326-customers-get-error-on-checkout-after-session-timeout.md │ │ ├── mdva-42341-categorylist-graphql-query-does-not-filter-results.md │ │ ├── mdva-42410-coupon-reports-only-display-default-base-currency.md │ │ ├── mdva-42507-full-page-cache-is-cleaned-after-applying-staging-update-for-cart-rule.md │ │ ├── mdva-42509-csv-could-not-be-uploaded-for-quick-order-resulting-in-unable-to-send-the-cookie-error.md │ │ ├── mdva-42520-tax-rate-applied-twice-when-enable-cross-border-trade-is-used.md │ │ ├── mdva-42584-stock-status-of-configurable-product-not-updated-automatically.md │ │ ├── mdva-42645-admin-cannot-refund-reward-points-if-the-store-credit-functionality-is-disabled.md │ │ ├── mdva-42657-unable-to-select-categories-in-customer-segment-conditions.md │ │ ├── mdva-42689-users-get-integrity-constraint-violation-error-while-updating-product-categories.md │ │ ├── mdva-42768-graphql-shows-wrong-price-when-child-products-are-out-of-stock.md │ │ ├── mdva-42790-product-price-attributes-cannot-be-updated-for-specific-website-via-rest-api.md │ │ ├── mdva-42806-new-company-registration-email-is-sent-each-time-an-existing-company-is-updated-via-reset-api.md │ │ ├── mdva-42855-new-customer-address-isnt-saved-to-address-book-during-checkout.md │ │ ├── mdva-42950-videos-dont-play-on-the-product-page.md │ │ ├── mdva-42969-related-product-rule-only-works-when-customer-segment-set-to-all.md │ │ ├── mdva-43091-unable-to-order-bundled-product-from-admin.md │ │ ├── mdva-43102-salable-quantity-not-updated-correctly.md │ │ ├── mdva-43167-admin-order-grid-mass-doesnt-apply-multipage.md │ │ ├── mdva-43178-customer-token-for-custom-store-cannot-be-retrieved.md │ │ ├── mdva-43201-error-when-using-dob-field-with-locale-pt.md │ │ ├── mdva-43232-sorting-products-in-visual-merchandiser-by-special-price-to-bottom-top-causes-error.md │ │ ├── mdva-43348-gift-card-graphql-request-shows-error.md │ │ ├── mdva-43414-php-fatal-error-when-running-the-inventory-reservations-update-salability-status.md │ │ ├── mdva-43451-error-when-setting-pricing-and-structure-for-shared-catalog.md │ │ ├── mdva-43491-base-image-label-not-updating-when-imported-via-csv.md │ │ ├── mdva-43601-triggers-are-removed-from-catalogrule-product-price-table.md │ │ ├── mdva-43605-order-data-returns-negative-values-for-row-totals-when-using-rest-api.md │ │ ├── mdva-43718-not-authorized-to-access-resources-error-appears-when-accessing-shared-catalog.md │ │ ├── mdva-43726-catalog-price-rule-fails-to-apply-after-partial-reindex.md │ │ ├── mdva-43731-search-synonyms-dont-work-when-value-added-in-minimum-terms-to-match.md │ │ ├── mdva-43824-order-cancellation-action-failed-with-error.md │ │ ├── mdva-43859-error-no-such-entity-with-customerid.md │ │ ├── mdva-43862-unable-to-update-cart-items-because-of-graphql-updatecartitems-mutation-error.md │ │ ├── mdva-43935-upsell-product-shown-twice-on-product-page.md │ │ ├── mdva-43983-products-not-visible-individually-still-appear-in-catalog-advanced-search-results.md │ │ ├── mdva-44044-product-not-displayed-on-category-page-after-it-is-assigned-to-new-website.md │ │ ├── mdva-44100-all-fpts-are-assigned-to-the-last-product-in-the-shopping-cart-and-reset-for-other-product.md │ │ ├── mdva-44147-graphql-request-doesnt-return-requisition-lists.md │ │ ├── mdva-44188-emails-are-not-sent.md │ │ ├── mdva-44505-graphql-applying-reward-points-does-not-update-grand-total.md │ │ ├── mdva-44533-discount-incorrectly-applied-to-bundle-child-product.md │ │ ├── mdva-44562-store-id-quote-items-overridden-by-default-store-id.md │ │ ├── mdva-44660-grave-accent-character-cannot-be-used-for-customer-name.md │ │ ├── mdva-44703-order-totals-in-order-report-miscalculated.md │ │ ├── mdva-44887-uncaught-syntaxerror-unexpected-token-const-error-in-admin-panel.md │ │ └── mdva-44940-sql-error-while-saving-category-from-admin.md │ └── site-wide-analysis-tool │ │ ├── .group.json │ │ └── swat-tool-overview.md └── troubleshooting │ ├── .group.json │ ├── database │ ├── .group.json │ ├── assets │ │ ├── KB-372_image002.png │ │ ├── KB-372_image003_BlurredExtension.png │ │ └── KB-372_image004.png │ ├── changes-in-the-database-are-not-reflected-on-the-storefront.md │ ├── checking-slow-queries-and-processes-mysql.md │ ├── database-errors-related-to-max_allowed_packet-on-magento.md │ ├── database-storage-troubleshooter-on-adobe-commerce.md │ ├── database-upload-loses-connection-to-mysql.md │ ├── deadlocks-in-mysql.md │ ├── mysql-disk-space-is-low-on-magento-commerce-cloud.md │ ├── mysql-high-load-bottleneck-in-magento-commerce-cloud.md │ ├── mysql-server-has-gone-away-error-on-magento-commerce-cloud.md │ └── mysql-tables-are-too-large.md │ ├── deployment │ ├── .group.json │ ├── current-version-of-rdbms-is-not-supported.md │ ├── deployment-error-sql-hy000.md │ ├── deployment-errors-from-enabling-early-alpha-baler-javascript-bundling-build.md │ ├── deployment-failed-unable-to-apply-mdva-43395-patch.md │ ├── deployment-fails-elasticsearch-and-magento-versions-incompatible.md │ ├── deployment-fails-fastly-module-incompatible-magento-version.md │ ├── deployment-fails-with-error-building-project-the-build-hook-failed-with-status-code-1.md │ ├── deployment-issues-relating-to-account-permissions-and-access-keys.md │ ├── deployment-stuck-with-unable-to-upload-the-application-to-the-remote-cluster-error.md │ ├── e-error-verifying-routes.yaml-error-during-staging-or-production-deploy.md │ ├── environment-redeployment-failed-or-mysql-server-gone-away.md │ ├── error-during-deployment-when-upgrading-to-version-supporting-php-8.1.md │ ├── magento-commerce-cloud-repo-could-not-be-accessed-403-forbidden-or-404-not-found-error-when-deploying.md │ └── magento-deployment-troubleshooter.md │ ├── elasticsearch │ ├── .group.json │ ├── assets │ │ ├── MDVA-12312_EE_2.2.3_COMPOSER_v1.patch │ │ ├── MDVA-12312_EE_2.2.3_COMPOSER_v1.patch.zip │ │ ├── MDVA-14172_EE_2.2.6_COMPOSER_v1.patch │ │ └── MDVA-14172_EE_2.2.6_COMPOSER_v1.patch.zip │ ├── elasticsearch-5-is-configured-but-search-page-does-not-load-with-fielddata-is-disabled...-error.md │ ├── elasticsearch-in-magento-troubleshooter.md │ ├── elasticsearch-index-status-is-yellow-or-red.md │ ├── elasticsearch-issues-after-magento-commerce-cloud-2.3.1-upgrade.md │ ├── elasticsearch-service-not-running.md │ ├── elasticsuite-tracking-indices-causes-problems-with-elasticsearch.md │ ├── ensure-elasticsearch-is-installed-properly.md │ └── mysql-and-elasticsearch-show-different-results.md │ ├── installation-and-upgrade │ ├── .group.json │ ├── area-code-is-not-set-error-when-running-setup-updgrade.md │ ├── assets │ │ ├── AC-384__Fix_Incompatible_PHP_Method__2.3.7-p1_ce.patch │ │ ├── AC-384__Fix_Incompatible_PHP_Method__2.3.7-p1_ce.patch.zip │ │ ├── AC-384__Fix_Incompatible_PHP_Method__2.4.3_ce.patch │ │ ├── AC-384__Fix_Incompatible_PHP_Method__2.4.3_ce.patch.zip │ │ ├── B2B-716_composer.patch │ │ ├── B2B-716_composer.patch.zip │ │ ├── B2B-716_git.patch │ │ ├── B2B-716_git.patch.zip │ │ ├── MDVA-10439_EE_2.2.3_COMPOSER_v1.patch │ │ └── MDVA-10439_EE_2.2.3_COMPOSER_v1.patch.zip │ ├── cannot-install-using-nginx.md │ ├── custom-gitignore-file-overridden.md │ ├── during-installation-exception-sessionhandler-read.md │ ├── during-installation-fatal-pdo-error-displays.md │ ├── during-installation-php-date-warning.md │ ├── during-installation-reflection-exception-error.md │ ├── errors-installing-optional-sample-data.md │ ├── exceptions-during-installation.md │ ├── hotfix-unsupported-php8-command-in-adobe-commerce-2.4.3.md │ ├── installation-fails-cannot-create-install.log.md │ ├── installation-stops-at-about-70.md │ ├── magento-2.4.0-known-issue-2.4.0-installation-fails-with-outdated-stores-cache.md │ ├── magento-2.4.0-known-issue-exception-during-b2b-1.2.0-install.md │ ├── out-of-memory-error-during-install-or-upgrade.md │ ├── uct-segmentation-fault-error.md │ └── wishlist-error-during-upgrade-to-magento-versions-2.3.4-p1-or-2.3.5.md │ ├── known-issues-patches-attached │ ├── .group.json │ ├── 0-day-vulnerability-patch.md │ ├── 2.4.1-and-2.3.6-create-an-account-button-disabled-hotfix.md │ ├── 404-error-on-store-front-once-catalog-price-rule-schedules-update-is-performed.md │ ├── 500-error-after-double-clicking-remove-link-in-shopping-cart.md │ ├── 503-error-on-store-front-catalog-pages-with-integrity-constraint-violation-in-logs.md │ ├── admin-cant-create-order-reorder-when-braintree-payment-enabled.md │ ├── advanced-reporting-404-error-on-magento-commerce.md │ ├── advanced-reporting-404-error-on-split-database-solution.md │ ├── advanced-reporting-cron-job-errors-magento-commerce.md │ ├── advanced-search-not-showing-the-most-relevant-results.md │ ├── area-already-set-error-when-saving-theme-configuration-in-admin.md │ ├── assets │ │ ├── AC-2655_2.4.4.patch.zip │ │ ├── ACPLTSRV-2017-fix.sh │ │ ├── ACPLTSRV-2017-fix.sh.zip │ │ ├── B2B-709-composer.patch │ │ ├── B2B-709-composer.patch.zip │ │ ├── BUNDLE-2546_EE_2.3.5-p1.composer.patch │ │ ├── BUNDLE-2546_EE_2.3.5-p1.composer.patch.zip │ │ ├── BUNDLE-2684-composer.patch │ │ ├── BUNDLE-2684-composer.patch.zip │ │ ├── BUNDLE-3137-composer.patch │ │ ├── BUNDLE-3137-composer.patch.zip │ │ ├── CLEANUP_PATCH_COMPOSER_2.3.2.patch │ │ ├── CLEANUP_PATCH_COMPOSER_2.3.2.patch.zip │ │ ├── Catalog_pagination_issue_on_Elasticsearch_6_composer-2019-10-11-08-07-41.patch │ │ ├── Catalog_pagination_issue_on_Elasticsearch_6_composer-2019-10-11-08-07-41.patch.zip │ │ ├── DB_CLEANUP_SCRIPT_v2.php │ │ ├── DB_CLEANUP_SCRIPT_v2.php.zip │ │ ├── MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch │ │ ├── MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch 2.zip │ │ ├── MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch.zip │ │ ├── MC-35514-2.4.0-CE-composer-2.patch │ │ ├── MC-35514-2.4.0-CE-composer-2.patch.zip │ │ ├── MC-35984-2.4.0-CE-composer.patch │ │ ├── MC-35984-2.4.0-CE-composer.patch.zip │ │ ├── MC-38509-composer.patch │ │ ├── MC-38509-composer.patch.zip │ │ ├── MC-43048__set_rate_limits__2.3.7-p1.patch.zip │ │ ├── MC-43048__set_rate_limits__2.4.3.patch.zip │ │ ├── MDVA-10441_EE_2.2.3_v3.composer.patch │ │ ├── MDVA-10441_EE_2.2.3_v3.composer.patch.zip │ │ ├── MDVA-10600_EE_2.2.3_v1.composer.patch │ │ ├── MDVA-10600_EE_2.2.3_v1.composer.patch.zip │ │ ├── MDVA-10974_EE_2.2.3_COMPOSER_v2.patch │ │ ├── MDVA-10974_EE_2.2.3_COMPOSER_v2.patch.zip │ │ ├── MDVA-10993_EE_2.2.4_v1.composer.patch │ │ ├── MDVA-10993_EE_2.2.4_v1.composer.patch.zip │ │ ├── MDVA-11059_EE_2.2.3_COMPOSER_v1.patch │ │ ├── MDVA-11059_EE_2.2.3_COMPOSER_v1.patch.zip │ │ ├── MDVA-11106_EE_2.2.4_v1.composer.patch │ │ ├── MDVA-11106_EE_2.2.4_v1.composer.patch.zip │ │ ├── MDVA-11263_EE_2.2.4_v1.composer.patch │ │ ├── MDVA-11263_EE_2.2.4_v1.composer.patch.zip │ │ ├── MDVA-11304_EE_2.1.13_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.1.13_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.1.14_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.1.14_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.1.4_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.1.4_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.1.5_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.1.5_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.2.0_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.2.0_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.2.2_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.2.2_COMPOSER_v1.patch.zip │ │ ├── MDVA-11304_EE_2.2.4_COMPOSER_v1.patch │ │ ├── MDVA-11304_EE_2.2.4_COMPOSER_v1.patch.zip │ │ ├── MDVA-11605_EE_2.2.2_COMPOSER_v1.patch │ │ ├── MDVA-11605_EE_2.2.2_COMPOSER_v1.patch.zip │ │ ├── MDVA-12158_EE_2.2.5_COMPOSER_v2.patch │ │ ├── MDVA-12158_EE_2.2.5_COMPOSER_v2.patch.zip │ │ ├── MDVA-12899_EE_2.2.3_COMPOSER_v2.patch │ │ ├── MDVA-12899_EE_2.2.3_COMPOSER_v2.patch.zip │ │ ├── MDVA-13203_EE_2.2.4_V1_COMPOSER.patch │ │ ├── MDVA-13203_EE_2.2.4_V1_COMPOSER.patch.zip │ │ ├── MDVA-15136_EE_2.2.6_COMPOSER_v1.patch │ │ ├── MDVA-15136_EE_2.2.6_COMPOSER_v1.patch.zip │ │ ├── MDVA-17078_EE_2.2.5_COMPOSER_v1.patch │ │ ├── MDVA-17078_EE_2.2.5_COMPOSER_v1.patch.zip │ │ ├── MDVA-18980_EE_2.2.6_COMPOSER_v1.patch │ │ ├── MDVA-18980_EE_2.2.6_COMPOSER_v1.patch.zip │ │ ├── MDVA-19391_EE_2.3.1_COMPOSER_v1.patch │ │ ├── MDVA-19391_EE_2.3.1_COMPOSER_v1.patch.zip │ │ ├── MDVA-19640_EE_2.3.0_COMPOSER_v1.patch │ │ ├── MDVA-19640_EE_2.3.0_COMPOSER_v1.patch.zip │ │ ├── MDVA-23505_EE_2.2.4_COMPOSER_v1.patch │ │ ├── MDVA-23505_EE_2.2.4_COMPOSER_v1.patch.zip │ │ ├── MDVA-24597_EE_2.2.9_COMPOSER_v1.patch │ │ ├── MDVA-24597_EE_2.2.9_COMPOSER_v1.patch.zip │ │ ├── MDVA-26831_EE_2.3.4_v1.composer.patch │ │ ├── MDVA-26831_EE_2.3.4_v1.composer.patch.zip │ │ ├── MDVA-27623_EE_2.3.2-p2_COMPOSER_v1.patch │ │ ├── MDVA-27623_EE_2.3.2-p2_COMPOSER_v1.patch.zip │ │ ├── MDVA-28559_EE_2.3.5-p1_v1.composer.patch │ │ ├── MDVA-28559_EE_2.3.5-p1_v1.composer.patch.zip │ │ ├── MDVA-33093____2_3_x-p1__CAPTCHA_COMPOSER.patch │ │ ├── MDVA-33093____2_3_x-p1__CAPTCHA_COMPOSER.patch.zip │ │ ├── MDVA-33093____2_3_x-p1__CAPTCHA_GIT.patch │ │ ├── MDVA-33093____2_3_x-p1__CAPTCHA_GIT.patch.zip │ │ ├── MDVA-33093____2_4_x-p1__CAPTCHA_COMPOSER.patch │ │ ├── MDVA-33093____2_4_x-p1__CAPTCHA_COMPOSER.patch.zip │ │ ├── MDVA-33093____2_4_x-p1__CAPTCHA_GIT.patch │ │ ├── MDVA-33093____2_4_x-p1__CAPTCHA_GIT.patch.zip │ │ ├── MDVA-43395_EE_2.4.3-p1_COMPOSER_v1.patch │ │ ├── MDVA-43395_EE_2.4.3-p1_COMPOSER_v1.patch.zip │ │ ├── MDVA-43395_EE_2.4.3-p1_v1.patch │ │ ├── MDVA-43395_EE_2.4.3-p1_v1.patch.zip │ │ ├── MDVA-43443_EE_2.3.4_COMPOSER_v1.patch.zip │ │ ├── MDVA-43443_EE_2.3.4_v1.patch.zip │ │ ├── MDVA-43443_EE_2.4.2-p2_COMPOSER_v1.patch.zip │ │ ├── MDVA-43443_EE_2.4.2-p2_v1.patch.zip │ │ ├── MDVA-43443_EE_2.4.3-p1_COMPOSER_v1.patch.zip │ │ ├── MDVA-43443_EE_2.4.3-p1_v1.patch.zip │ │ ├── MDVA-7256_EE_2.1.7_v1.composer.patch │ │ ├── MDVA-7256_EE_2.1.7_v1.composer.patch.zip │ │ ├── MDVA-7392_EE_2.2.1_COMPOSER_v2.patch │ │ ├── MDVA-7392_EE_2.2.1_COMPOSER_v2.patch.zip │ │ ├── MDVA-7868_EE_2.2.1_v1_composer.patch │ │ ├── MDVA-7868_EE_2.2.1_v1_composer.patch.zip │ │ ├── MDVA-8007_EE_2.2.0_v1.composer.patch │ │ ├── MDVA-8007_EE_2.2.0_v1.composer.patch.zip │ │ ├── MDVA-8215_EE_2.2.2_v1.composer.patch │ │ ├── MDVA-8215_EE_2.2.2_v1.composer.patch.zip │ │ ├── MDVA-8371_EE_2.2.1_COMPOSER_v2.patch │ │ ├── MDVA-8371_EE_2.2.1_COMPOSER_v2.patch.zip │ │ ├── MDVA-8623_EE_2.2.0_v1.composer.patch │ │ ├── MDVA-8623_EE_2.2.0_v1.composer.patch.zip │ │ ├── MDVA-9013_EE_2.2.2_composer.patch │ │ ├── MDVA-9013_EE_2.2.2_composer.patch.zip │ │ ├── MDVA-9353_EE_2.2.2_v1.composer.patch │ │ ├── MDVA-9353_EE_2.2.2_v1.composer.patch.zip │ │ ├── MDVA-9590_EE_2.2.0_COMPOSER_v2.patch │ │ ├── MDVA-9590_EE_2.2.0_COMPOSER_v2.patch.zip │ │ ├── MDVA-9718_EE_2.2.3_COMPOSER_v1.patch │ │ ├── MDVA-9718_EE_2.2.3_COMPOSER_v1.patch.zip │ │ ├── MPERF-10509-EE-2019-03-13-06-32-19.diff │ │ ├── MPERF-10509-EE-2019-03-13-06-32-19.diff.zip │ │ ├── PRODSECBUG-2432_EE_2.1.17_composer.patch │ │ ├── PRODSECBUG-2432_EE_2.1.17_composer.patch.zip │ │ ├── PRODSECBUG-2432_EE_2.2.8_composer.patch │ │ ├── PRODSECBUG-2432_EE_2.2.8_composer.patch.zip │ │ ├── PRODSECBUG-2432_EE_2.3.1_composer.patch │ │ ├── PRODSECBUG-2432_EE_2.3.1_composer.patch.zip │ │ ├── PayPal_Express_Checkout_issue_fix_2.3.4_composer-2020-02-13-12-34-09.patch │ │ ├── PayPal_Express_Checkout_issue_fix_2.3.4_composer-2020-02-13-12-34-09.patch.zip │ │ ├── auth-net-signature-key-m1.png │ │ ├── auth-net-signature-key-m2.png │ │ ├── braintree-disabled-partial-capture-for-applepay-googlepay.zip │ │ ├── table_results1.png │ │ └── table_results2.png │ ├── b2b-companies-cannot-access-profile-pages-on-store-front.md │ ├── braintree-partial-invoice-error-apple-pay-google-pay.md │ ├── catalog-pagination-doesn-t-work-when-elasticsearch-6.x-is-used.md │ ├── checkout-pages-not-loading-when-ad-blocker-is-enabled.md │ ├── configurable-product-swatches-not-displayed-as-crossed-out-when-out-of-stock.md │ ├── duplicate-entries-in-the-catalogrule-table-after-editing-the-end-date-of-a-schedule-update.md │ ├── empty-shopping-cart-issue-when-multiple-click-on-checkout-from-mini-cart.md │ ├── google-analytics-is-not-tracking-conversion-data.md │ ├── import-csv-product-information-for-same-name-product-fails.md │ ├── low-site-and-api-performance.md │ ├── magento-2.3.5-2.3.5-p1-patch-country-payment-issue.md │ ├── magento-2.4.0-b2b-wrong-purchase-order-logic-when-discount-expired.md │ ├── magento-2.4.0-known-issue-integration-tests-fail.md │ ├── magento-2.4.0-patch-returns-shipping-label-creation-issue.md │ ├── magento-admin-url-location-disclosed.md │ ├── magento-commerce-2.3.6-2.4.1-captcha-in-checkout-not-working.md │ ├── magento-commerce-cloud-v2.3.5-graphql-caching-invalidation-not-working.md │ ├── magento-prompts-customers-log-in-invalid-link.md │ ├── multiple-cron-jobs-scheduled-for-the-same-time-period.md │ ├── new-orders-are-sent-to-archive.md │ ├── not-selected-rows-are-deleted-during-mass-action-deletion.md │ ├── order-email-sent-from-the-server-email-address.md │ ├── orders-not-displayed-in-the-orders-grid-in-the-admin.md │ ├── packages-downgraded-after-upgrading-from-2.4.4-to-2.4.4-p1.md │ ├── performance-issues-caused-by-excessive-ajax-requests.md │ ├── remove-failed-login-attempts-from-the-database.md │ ├── removing-staging-update-deletes-related-entity.md │ ├── replace-depreciated-google-image-charts-with-image-charts.md │ ├── shipping-address-not-saved-post-page-refresh-on-checkout.md │ ├── shipping-labels-creation-known-issue-in-magento-2.4.0.md │ ├── unable-to-validate-vat-number-magento-commerce-cloud.md │ ├── update-advanced-reporting-to-run-on-its-own-cron-group.md │ ├── user-not-able-to-add-product-to-cart-if-allow-countries-is-not-selected.md │ ├── web-api-resources-limit.md │ └── wrong-date-for-special-price.md │ ├── miscellaneous │ ├── .group.json │ ├── 403-errors-when-accessing-site-wide-analysis-tool-on-magento.md │ ├── 404-error-web-set-up-wizard-cloud.md │ ├── 504-gateway-time-out-error-when-saving-a-category-with-1k-products.md │ ├── admin-2fa-email-notifications-not-being-received.md │ ├── admin-passwords-saved-as-plain-text-to-actions-log.md │ ├── adobe-commerce-2.4.2-p1-invoice-note-with-incorrect-value.md │ ├── adobe-commerce-244-update-composer.md │ ├── adobe-commerce-and-magento-open-source-2.3.7-p2-stock-images-not-showing.md │ ├── adobe-commerce-dhl-upgrade-patch.md │ ├── adobe-commerce-reindex-terminated.md │ ├── assets │ │ ├── 404_error_page_whoops_our_bad.png │ │ ├── Amazon_SellerCentral-Marked.png │ │ ├── Amazon_Settings_Drop-down-Marked.png │ │ ├── Export_Discrepancies_3.png │ │ ├── Export_Discrepancies_4.gif │ │ ├── Export_Discrepancies_5.gif │ │ ├── Export_Discrepancies_6.png │ │ ├── Exports_Discrepancies_1.png │ │ ├── Exports_Discrepancies_2.png │ │ ├── KB-372_image003.png │ │ ├── KB-607_Image_1.png │ │ ├── MDVA-38526_EE_2.4.1-p1_COMPOSER_v3.patch.zip │ │ ├── MDVA-38526_EE_2.4.1-p1_v3.patch.zip │ │ ├── Opening_Chrome_dev_tools.gif │ │ ├── Screen_Shot_2019-08-29_at_1.36.08_PM.png │ │ ├── Screen_Shot_2019-08-29_at_1.39.12_PM.png │ │ ├── Screen_Shot_2020-07-15_at_9.00.57_AM.png │ │ ├── Updated_Site_Down__3_.jpeg │ │ ├── Updated_Site_Down__5_.jpeg │ │ ├── Z5hRIT-FkqpZQF4IdfBoAZwTV63kitff7A-Marked.png │ │ ├── add_user_magento_2.4.1.png │ │ ├── adobe-login-one.png │ │ ├── adobe-login-two.png │ │ ├── authorize-net_test-mode_setting.png │ │ ├── banner_disable.png │ │ ├── catalog_category_entity.png │ │ ├── catalog_menu.png │ │ ├── change_store_view.png │ │ ├── compman-cron-not-running.png │ │ ├── compman_sys-messages.png │ │ ├── copy_created-in_value.png │ │ ├── csv_file_UTF-8_sublime_3.2.2_magento_BI.png │ │ ├── debug_log_sample.png │ │ ├── disconnect-from-magento-com.png │ │ ├── force_resync.png │ │ ├── hierarchy_hr.png │ │ ├── install_rc_file-perms.png │ │ ├── magento-com.png │ │ ├── magento_export_products.png │ │ ├── magento_export_products_2.3.4.png │ │ ├── magento_full_page_cache_2.4.1.png │ │ ├── magento_index_management_2.4.1.png │ │ ├── magento_products_access_keys_2.4.1.png │ │ ├── mceclip0.png │ │ ├── mceclip1.jpg │ │ ├── mceclip1.png │ │ ├── non_cacheable.png │ │ ├── non_cacheable_article_.png │ │ ├── non_cacheable_kb.png │ │ ├── onboard-apikey-error.png │ │ ├── project_space.png │ │ ├── purge_options.png │ │ ├── search_engine.png │ │ ├── search_engine_menu.png │ │ ├── search_engine_not_displayed.png │ │ ├── seo_url_key.png │ │ ├── single-sign-on.png │ │ ├── swat_access.png │ │ ├── swat_access_role.png │ │ ├── swat_http_access_control.png │ │ ├── tshoot_bundlesampledata.png │ │ ├── update.png │ │ ├── upgr-tshoot-no-cron.png │ │ ├── upgr-tshoot-no-cron2.png │ │ ├── upward_pwa.png │ │ ├── web_developer_console_mst.png │ │ └── wsw_issue.png │ ├── backup-issues.md │ ├── blank-page-or-redirect-loop-error-when-accessing-storefront-or-magento-admin.md │ ├── blockers-launching-on-magento-commerce-cloud.md │ ├── bulk-action-product-count-known-issue-in-magento-2.3.5.md │ ├── bundle-options-order-is-not-updated-by-import.md │ ├── cache-warming-up-and-site-unavailable-on-magento.md │ ├── cached-images-are-not-loaded-after-2.2.x-to-2.3.x-upgrade.md │ ├── cannot-access-magento-commerce-cloud-ui.md │ ├── cannot-access-the-correct-cloud-project.md │ ├── cannot-access-the-latest-magento-commerce-pre-release.md │ ├── cannot-change-search-engine-using-magento-admin-search-engine-menu-is-inaccessible.md │ ├── cannot-clone-the-magento-github-repository.md │ ├── cannot-delete-the-source-or-change-its-code.md │ ├── changes-to-categories-are-not-being-saved.md │ ├── checking-deployment-log-if-the-cloud-ui-shows-log-snipped-error.md │ ├── checking-for-ddos-attack-from-cli.md │ ├── class-cannot-be-saved-in-the-code-directory-error.md │ ├── cloud-site-is-slow.md │ ├── common-php-fatal-errors-and-solutions.md │ ├── component-dependency-readiness-check-issues.md │ ├── composer-plugin-against-dependency-confusion-attacks.md │ ├── composer-update-fail-on-adobe-commerce-incompatible-argument-type.md │ ├── conflicting-component-dependencies.md │ ├── coupon-code-used-more-than-once-adobe-commerce.md │ ├── cron-job-is-stuck-in-running-status.md │ ├── cron-readiness-check-issues.md │ ├── cron-tasks-lock-tasks-from-other-groups.md │ ├── custom-server-side-scripts-not-executed-in-pub-media-directory.md │ ├── custom-ssl-certificate-expiration-information.md │ ├── data-migration-tool-troubleshooting.md │ ├── diagnosing-a-data-discrepancy.md │ ├── diagnosing-google-ecommerce-revenue-discrepancies.md │ ├── disable-magento-banner-output-to-improve-site-performance.md │ ├── download-fails-because-of-changes-in-composer.md │ ├── drop-shipping-picks-up-wrong-address.md │ ├── ece-tools-and-patch-update-errors-magento-commerce-cloud-2.2.x.-2.3.x.md │ ├── emails-not-being-sent-sendgrid-credits-exceeded.md │ ├── enable-magento-cache-to-avoid-performance-degradation.md │ ├── error-after-logging-in-to-the-magento-admin.md │ ├── error-enabling-image-optimization-in-magento-commerce.md │ ├── error-message-adding-site-into-security-scan.md │ ├── error-purging-cache-in-admin.md │ ├── error-purging-fastly-cache-on-cloud-the-purge-request-was-not-processed-successfully.md │ ├── error-running-the-setup-di-compile-command-manually.md │ ├── error-warming-up-failed-on-magento-commerce-cloud.md │ ├── error-when-validating-fastly-credentials.md │ ├── exact-match-search-for-product-not-working-in-adobe-commerce.md │ ├── exported-products-.csv-file-does-not-appear.md │ ├── extension-manager-shows-no-extensions-in-magento-commerce-2.3.x.md │ ├── fastly-caching-is-not-working-on-magento-cloud.md │ ├── fastly-error-plugin-vcl-version-is-outdated-please-re-upload.md │ ├── file-permissions-readiness-check-issues.md │ ├── file-storage-low-specific-page-loads-are-slow.md │ ├── general-custom-module-troubleshooting-help.md │ ├── git-pull-origin-develop-fails-when-updating-the-magento-software.md │ ├── github-token-issue-and-composer-key-procedures.md │ ├── google-analytics-gets-disabled-after-deployment.md │ ├── google-shopping-ads-channel-troubleshooting.md │ ├── graphql-categories-cannot-hide-categories-shared-catalog.md │ ├── high-throughput-ajax-requests-cause-poor-performance.md │ ├── i-have-configured-api-keys-for-sensei-but-only-seeing-1-saas-data-space.md │ ├── index-is-locked-by-another-process.md │ ├── install-latest-patches-to-fix-magento-redis-issues.md │ ├── installation-xdebug-maximum-function-nesting-level-error.md │ ├── invalidated-cache-causes-response-time-degradation.md │ ├── issue-in-the0email-folder-adobe-commerce.md │ ├── issues-after-disabling-a-module.md │ ├── known-issues-that-affect-installation.md │ ├── laminas-escaper-2.7.1-causes-error-adobe-commerce-frontend-and-admin-pages.md │ ├── live-search-catalog-data-sync.md │ ├── live-search-displays-out-of-stock-products.md │ ├── locked-fields-in-magento-admin.md │ ├── login-redirect-when-trying-to-login-to-magento-admin.md │ ├── low-disk-space.md │ ├── magento-2.3.5-known-issue-virtual-product-multi-ship-orders.md │ ├── magento-2.3.6-2.4.0-p1-2.4.1-known-issue-dotdigital-login.md │ ├── magento-2.3.6-endless-spinner-displayed-on-address-save.md │ ├── magento-2.4.0-add-selections-to-my-cart-does-not-work.md │ ├── magento-2.4.0-b2b-admin-can-t-add-configurable-product-to-quote.md │ ├── magento-2.4.0-known-issue-create-new-order-buttons-missing.md │ ├── magento-2.4.0-known-issue-export-tax-rates-does-not-work.md │ ├── magento-2.4.0-refresh-on-customer-activities-does-not-work.md │ ├── magento-2.4.1-empty-page-when-dotdigital-page-builder-form-saved.md │ ├── magento-2.4.1-known-issue-unable-to-change-amazon-account-in-google-chrome.md │ ├── magento-2.4.1-vertex-address-validation-message-post-address-update.md │ ├── magento-2.4.2-b2b-email-template-not-updating-email.md │ ├── magento-advanced-reporting-troubleshooter.md │ ├── magento-env-yaml-changes-not-shown-in-env-php-after-deploy.md │ ├── magento-fastly-troubleshooter.md │ ├── magento-order-management-messages-processing-error.md │ ├── main-menu-categories-not-displayed-on-subpages-with-fastly-enabled.md │ ├── manual-order-export-to-mom-fails.-the-export-order-button-returns-http-404-error.md │ ├── mbi-data-discrepancies.md │ ├── mbi-service-policies.md │ ├── mom-times-out-when-trying-to-connect-to-a-local-environment.md │ ├── new-customers-not-displayed-in-customer-grid-after-csv-import.md │ ├── offload-non-regex-redirects-to-fastly-instead-of-nginx-routes.md │ ├── php-mcrypt-extension-not-installed-properly.md │ ├── php-settings-errors.md │ ├── php-version-error-or-404-error-when-accessing-magento-in-browser.md │ ├── php-version-readiness-check-issues.md │ ├── product-recommendations-do-not-show-in-page-builder.md │ ├── product-status-incorrect-when-created-programmatically.md │ ├── pwa-studio-browser-cannot-resolve-local-pwadev-site.md │ ├── pwa-studio-browser-displays-cannot-proxy-to-error.md │ ├── pwa-studio-browser-not-trust-generated-ssl-certificate.md │ ├── pwa-studio-validation-errors-when-running-developer-mode.md │ ├── pwa-studio-venia-graphql-queries-to-magento-produce-validation-errors.md │ ├── pwa-studio-webpack-hangs-before-beginning-compilation.md │ ├── quick-checkout-issues.md │ ├── redirect-back-to-the-admin-login-form-with-your-account-is-temporarily-disabled-error.md │ ├── redirect-back-to-the-admin-login-form-with-your-current-session-has-been-expired-error.md │ ├── redirect-to-parent-environment-when-accessing-new-integration-environment.md │ ├── redis-issue-delay-magento-admin-login-or-checkout.md │ ├── redis-service-crashed.md │ ├── redis-troubleshooter.md │ ├── redis-unserialize-error-setup-static-content-deploy.md │ ├── resolve-an-illegal-offset-error.md │ ├── resolve-issues-with-encryption-key.md │ ├── resolving-utf-8-errors-for-csv-file-uploads.md │ ├── restricted-admin-access-causing-performance-issues.md │ ├── robots.txt-gives-404-error-magento-commerce-cloud-2.3.x.md │ ├── robots.txt-not-updated-or-displaying-default-settings.md │ ├── run-setup-static-content-deploy-deployed_version.txt-issue.md │ ├── safely-delete-files-when-out-of-disk-space-adobe-commerce-on-our-cloud-architecture.md │ ├── scheduled-content-staging-updates-not-displayed-with-stale-fastly-cache.md │ ├── security-scan-tool-troubleshooting-guide.md │ ├── shared-access-troubleshooting.md │ ├── site-in-maintenance-mode-but-available-to-customers.md │ ├── slow-performance-due-to-full-reindexing.md │ ├── slow-performance-due-to-non-cacheable-pages.md │ ├── slow-performance-slow-and-long-running-crons.md │ ├── sql-queries-explain-cost-errors.md │ ├── stock-status-incorrect-after-magento-inventory-install.md │ ├── the-security-scan-tool-report-is-blank.md │ ├── tmp_mount_full.md │ ├── troubleshoot-cron.md │ ├── troubleshoot-performance-using-new-relic-on-magento-commerce.md │ ├── troubleshoot-product-recommendations-module-in-magento-commerce.md │ ├── troubleshooting-503-errors.md │ ├── troubleshooting-mbi-account-lockout.md │ ├── troubleshooting-new-relic-on-magento-commerce-cloud.md │ ├── turn-off-hourly-amazon-emails-when-using-magento.md │ ├── unable-to-log-in-to-support-or-cloud-project.md │ ├── unable-to-save-entity-backend.md │ ├── unknown-module-magento_bundlesampledata.md │ ├── updater-application-is-not-available-error.md │ ├── using-data-exports-to-pinpoint-discrepancies.md │ ├── vertex-address-cleansing-different-addresses-not-allowed.md │ └── when-pushed-from-git-environments-placed-under-production-on-magento-cloud.md │ ├── payments │ ├── .group.json │ ├── 2.3.4-paypal-issue-hotfix.md │ ├── assets │ │ ├── Auth.net.md5-2019-02-28-05-04-05.composer-2019-03-04-07-33-26.patch │ │ ├── BUNDLE-2554_EE_2.3.5-p1.composer.patch │ │ ├── BUNDLE-2554_EE_2.3.5-p1.composer.patch.zip │ │ ├── BUNDLE-2670-composer.patch │ │ ├── BUNDLE-2670-composer.patch.zip │ │ ├── MC42674-composer.patch.zip │ │ ├── MDVA-12964_EE_2.2.5_COMPOSER_v1.patch │ │ ├── MDVA-12964_EE_2.2.5_COMPOSER_v1.patch.zip │ │ ├── MDVA-16643_EE_2.3.0_COMPOSER_v1.patch │ │ ├── MDVA-16643_EE_2.3.0_COMPOSER_v1.patch.zip │ │ ├── MDVA-17212_EE_2.1.0_v1.composer-2019-03-05-12-05-22.patch │ │ ├── MDVA-17212_EE_2.1.0_v1.composer-2019-03-05-12-05-22.patch.zip │ │ ├── MDVA-5914_EE_2.1.9_COMPOSER_v3.patch │ │ ├── MDVA-5914_EE_2.1.9_COMPOSER_v3.patch.zip │ │ ├── MDVA-8609_EE_2.2.2_COMPOSER_v2.patch │ │ ├── MDVA-8609_EE_2.2.2_COMPOSER_v2.patch.zip │ │ ├── PATCH_SUPEE-11085_EE_1.14.4.0_v1-2019-02-28-04-59-38.sh │ │ ├── PATCH_SUPEE-11085_EE_1.14.4.0_v1-2019-02-28-04-59-38.sh.zip │ │ ├── magento_paypal_settings_2.4.1.png │ │ ├── paypal_allow_multiple_payments_per_invoice_id.png │ │ ├── transact-dll_web-console_response.png │ │ └── web-console_network_preserve-log.png │ ├── checkout-is-stuck-when-authorize.net-payment-method-is-used.md │ ├── cybersource-payment-from-admin-and-front-on-different-domains-not-processed.md │ ├── error-placing-order-with-authorize.net-sandbox-account-an-error-occurred-on-the-server.md │ ├── eu-customers-cannot-complete-payments.md │ ├── magento-2.4.0-2.4.1-enable-braintree-venmo-partial-invoice-issue.md │ ├── magento-2.4.0-braintree-not-in-multiple-addresses-checkout.md │ ├── magento-2.4.0-checkout-error-selecting-local-payments.md │ ├── magento-2.4.0-known-issue-amazon-pay-no-payment-methods.md │ ├── magento-2.4.0-known-issue-braintree-virtual-terminal-page-is-corrupted.md │ ├── magento-2.4.0-known-issue-klarna-on-site-messaging-blank-pages.md │ ├── magento-2.4.0-known-issue-missing-refund-label-in-klarna.md │ ├── magento-2.4.1-known-issue-error-popping-up-on-checkout-with-paypal-braintree.md │ ├── magento-2.4.1-wrong-message-on-paypal-via-braintree-guest-checkout.md │ ├── magento-2.4.2-b2b-discount-remains-pay-method-change.md │ ├── magento-2.4.2-braintree-venmo-payment-does-not-work.md │ ├── patch-for-amazon-pay-checkout-issue-in-magento-2.3.5-p1.md │ ├── payment-methods-not-displayed-on-checkout-with-multiple-addresses.md │ ├── paypal-gateway-rejected-request-duplicate-invoice-issue.md │ ├── paypal-payflow-pro-active-carding-activity.md │ ├── paypal-price-known-issue-commerce-237p1.md │ ├── paypal-troubleshooting-on-magento.md │ ├── payservices-cc-sandbox-failure.md │ ├── payservices-install.md │ ├── payservices-paypal-acct.md │ └── payservices-report-info-delayed.md │ ├── site-down-or-unresponsive │ ├── .group.json │ ├── 503-error-accessing-magento-in-web-browser.md │ ├── applying-a-patch-takes-your-site-down.md │ ├── assets │ │ ├── update_exists_0.png │ │ ├── updated_site_down_1.jpeg │ │ └── updates_exist_1.png │ ├── error-404-on-all-pages-due-to-content-staging-issue.md │ ├── magento-site-down-troubleshooter.md │ ├── production-site-not-accessible-due-to-origin-cloaking.md │ ├── site-down-troubleshooting-diagram.md │ └── site-fails-to-load-due-to-maintenance-mode-left-enabled.md │ └── storefront │ ├── .group.json │ ├── adobe-commerce-2.4.2-on-prem-product-image-missing.md │ ├── after-installing-images-and-stylesheets-do-not-load-only-text-displays-no-graphics.md │ ├── assets │ ├── all_store_views.png │ ├── image_roles.png │ ├── image_roles_not_set.png │ └── open_product_page_magento_2.4.1.png │ ├── customers-get-logged-out-or-lose-cart-content-on-magento-storefront.md │ ├── magento-2.4.0-404-error-removing-rewards-points-on-multi-shipping-checkout.md │ ├── magento-2.4.0-issue-storefront-raw-message-data-display.md │ ├── magento-2.4.0-known-issue-orders-display-error.md │ ├── product-comparison-known-issue-in-magento-2.3.5.md │ ├── product-images-do-not-display-despite-product-edit-image-roles.md │ ├── product-is-not-displayed-on-storefront.md │ ├── store-credit-issue-during-checkout-in-magento-2.3.5.md │ ├── store-images-not-displayed-after-deployment.md │ ├── storefront-unable-to-enter-shipping-as-a-url-key.md │ └── top-navigation-panel-does-not-load-on-storefront.md └── wiki /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # General issue 2 | 3 | ## Description 4 | 5 | 6 | 7 | ## Possible solutions 8 | 9 | 10 | 11 | ## Additional information 12 | 13 | 14 | 15 | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/TOPIC_CLARIFICATION.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Topic clarification/correction 3 | about: Create a request to clarify or correct a documentation topic 4 | --- 5 | 6 | # Issue: Topic clarification/correction 7 | 8 | ## Topic Link 9 | 10 | 11 | 12 | ## Description 13 | 14 | 15 | 16 | ## Additional information 17 | 18 | 19 | 20 | 31 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Purpose of this pull request 2 | 3 | This pull request (PR) ... 4 | 5 | ## Affected Support KB pages 6 | 7 | 8 | 9 | List the affected pages on support.magento.com (URLs). 10 | 11 | 15 | -------------------------------------------------------------------------------- /.github/workflows/file_structure.yml: -------------------------------------------------------------------------------- 1 | name: File Structure Validation 2 | 3 | on: pull_request 4 | 5 | jobs: 6 | validate_integrity: 7 | runs-on: ubuntu-latest 8 | 9 | steps: 10 | - name: Checking out 11 | uses: actions/checkout@v2 12 | 13 | - name: Setup Python 14 | uses: actions/setup-python@v2 15 | with: 16 | python-version: 3.8 17 | 18 | - name: Set up Deno 19 | uses: denoland/setup-deno@v1 20 | with: 21 | deno-version: v1.x 22 | 23 | - name: "Deno: Cache dependencies" 24 | run: deno cache _checks/directory_structure/validate-categories.ts 25 | 26 | - name: Run Validator 27 | run: python ./_checks/directory_structure/validate.py 28 | 29 | - name: Validate sections and categories 30 | run: deno run --allow-read _checks/directory_structure/validate-categories.ts 31 | -------------------------------------------------------------------------------- /.github/workflows/mdl.yml: -------------------------------------------------------------------------------- 1 | name: Markdown Linting Test 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - master 7 | - uat_test_1 8 | - main 9 | paths: 10 | - '**.md' 11 | 12 | jobs: 13 | mdl: 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - uses: actions/checkout@v2 18 | - name: Set up Ruby 19 | uses: actions/setup-ruby@v1 20 | with: 21 | ruby-version: 2.6 22 | - name: Install mdl gem 23 | run: gem install mdl 24 | - name: Run mdl 25 | run: mdl --style=_checks/styles/style-rules-prod --ignore-front-matter --git-recurse -- . 26 | -------------------------------------------------------------------------------- /.github/workflows/metadata_validation.yml: -------------------------------------------------------------------------------- 1 | name: Metadata Validation 2 | on: ['pull_request'] 3 | 4 | jobs: 5 | metadata-validation: 6 | runs-on: ubuntu-latest 7 | 8 | steps: 9 | - name: Checking out 10 | uses: actions/checkout@v2 11 | 12 | - name: Set up Deno 13 | uses: denoland/setup-deno@v1 14 | with: 15 | deno-version: v1.x 16 | - name: Cache dependencies 17 | run: deno cache _checks/metadata_validation/validate.ts 18 | - name: Validate article metadata 19 | run: deno run --allow-read _checks/metadata_validation/validate.ts 20 | -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- 1 | © Copyright 2013-present Adobe. All rights reserved. 2 | 3 | All files in this repository are licensed under your existing commercial license or subscription agreement with Magento or its Affiliates (the "Agreement") or OSL 3.0. 4 | 5 | You may obtain a copy of the OSL 3.0 license at http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) or by contacting engcom@adobe.com for a copy. 6 | 7 | Subject to your payment of fees and compliance with the terms and conditions of the Agreement, the Agreement supersedes the OSL 3.0 icense with respect to all files in this repository. -------------------------------------------------------------------------------- /_checks/styles/style-rules-dev: -------------------------------------------------------------------------------- 1 | rule 'MD001' 2 | exclude_rule 'MD002' 3 | rule 'MD003', :style => :atx 4 | rule 'MD004' 5 | rule 'MD005' 6 | rule 'MD006' 7 | rule 'MD007', :indent => 4 8 | exclude_rule 'MD009' 9 | rule 'MD010' 10 | rule 'MD011' 11 | rule 'MD012' 12 | exclude_rule 'MD013' 13 | exclude_rule 'MD014' 14 | rule 'MD018' 15 | rule 'MD019' 16 | exclude_rule 'MD020' 17 | exclude_rule 'MD021' 18 | rule 'MD022' 19 | rule 'MD023' 20 | rule 'MD024', :allow_different_nesting => true 21 | rule 'MD025' 22 | exclude_rule 'MD026' 23 | exclude_rule 'MD027' 24 | exclude_rule 'MD028' 25 | rule 'MD029' 26 | rule 'MD030' 27 | rule 'MD031' 28 | rule 'MD032' 29 | exclude_rule 'MD033' 30 | exclude_rule 'MD034' 31 | rule 'MD035' 32 | rule 'MD036' 33 | rule 'MD037' 34 | rule 'MD038' 35 | rule 'MD039' 36 | rule 'MD040' 37 | exclude_rule 'MD041' 38 | rule 'MD046' 39 | -------------------------------------------------------------------------------- /docs/img/Contributor-PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/docs/img/Contributor-PR.png -------------------------------------------------------------------------------- /docs/img/contributor_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/docs/img/contributor_start.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | Welcome to the home of the Adobe Commerce Support Knowledge Base repo documentation. 2 | Here you can find docs helping you to make best fitting contributions and templates, serving the same purpose. 3 | If you need to learn about general contribution flow, go to [Contributor's Guide](../.github/CONTRIBUTING.md). 4 | 5 | ## Guides 6 | 7 | * [Contribution rewards and points](contribution-points.md) 8 | * [Support Knowledge Base Style Guide](guides/support-kb-styleguide.md) 9 | * [Support Knowledge Base Formatting Guide](guides/kb-formatting-guide.md) 10 | * [Support Knowledge Base Labels Guide](guides/kb-labels-guide.md) 11 | 12 | ## Templates 13 | 14 | When creating a new article, copy-paste the corresponding template and replace the placeholder info. 15 | 16 | * [Troubleshooting article template](article-templates/troubleshooting-template.md) 17 | * [Best practice article template](article-templates/best-practice-template.md) 18 | -------------------------------------------------------------------------------- /src/announcements/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360003289491, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/360003289491.json", "html_url": "https://support.magento.com/hc/en-us/categories/360003289491-Announcements", "position": 0, "created_at": "2020-05-18T17:25:08Z", "updated_at": "2021-05-12T16:20:37Z", "name": "Announcements", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360008904172, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360008904172.json", "html_url": "https://support.magento.com/hc/en-us/sections/360008904172-Magento-Announcements", "category_id": 360003289491, "position": 0, "sorting": "manual", "created_at": "2020-05-20T16:02:05Z", "updated_at": "2021-05-08T14:43:29Z", "name": "Adobe Commerce Announcements", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} 2 | -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/apache-log4j2-adobe-commerce.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apache log4j2 vulnerability in Adobe Commerce 3 | labels: Adobe Commerce,log4j2,vulnerability 4 | promoted: True 5 | --- 6 | 7 | Please refer to the [Apache Log4j2 Vulnerability in Adobe Commerce](https://community.magento.com/t5/Magento-DevBlog/Apache-Log4j2-Vulnerability-in-Adobe-Commerce/ba-p/488683) DevBlog post for the latest Adobe Commerce communication related to the Apache log4j library vulnerability. 8 | -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/AdobeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/AdobeLogo.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/assoc_dev-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/assoc_dev-l.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/blackfire_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/blackfire_function.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/blackfire_functionality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/blackfire_functionality.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/blackfire_profiler_functionaility_missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/blackfire_profiler_functionaility_missing.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/image.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/magento-account-privacy-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/magento-account-privacy-settings.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/assets/magento_privacy_authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/adobe-commerce-announcements/assets/magento_privacy_authorize.png -------------------------------------------------------------------------------- /src/announcements/adobe-commerce-announcements/magento-ssl-tls-certificate-requirements-and-clean-up.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Adobe SSL/TLS certificate requirements and clean up 3 | labels: DNS,FAQ,Fastly,Magento Commerce Cloud,SSL,certificate,domain,production,staging,Adobe Commerce,cloud infrastructure,Pro,Starter 4 | --- 5 | 6 | For the most relevant information about SSL/TLS certificates provided for Adobe Commerce on cloud infrastructure, refer to the following articles: 7 | 8 | * [SSL (TLS) certificates for Adobe Commerce on cloud infrastructure](https://support.magento.com/hc/en-us/articles/360048061192-SSL-TLS-certificates-for-Magento-Commerce-Cloud-FAQ) in our support knowledge base 9 | * [Provision SSL/TLS certificates](https://devdocs.magento.com/cloud/cdn/configure-fastly.html#provision-ssltls-certificates) in our developer documentation 10 | -------------------------------------------------------------------------------- /src/announcements/help-center-news/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360008880392, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360008880392.json", "html_url": "https://support.magento.com/hc/en-us/sections/360008880392-Help-Center-News", "category_id": 360003289491, "position": 0, "sorting": "manual", "created_at": "2020-05-18T17:33:47Z", "updated_at": "2021-05-12T16:20:37Z", "name": "Help Center News", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/announcements/help-center-news/assets/breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/announcements/help-center-news/assets/breadcrumbs.png -------------------------------------------------------------------------------- /src/announcements/help-center-news/mbi-documentation-got-moved.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: MBI documentation got moved 3 | labels: MBI 4 | --- 5 | 6 | Most Magento Business Intelligence (MBI) documentation has been moved to a separate location on [https://docs.magento.com/mbi/.](https://docs.magento.com/mbi/) 7 | 8 | MBI troubleshooting documentation moved to the [Troubleshooting > General](https://support.magento.com/hc/en-us/sections/115001031253-General) section of this Knowledge Base. -------------------------------------------------------------------------------- /src/best-practices/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360002582351, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/360002582351.json", "html_url": "https://support.magento.com/hc/en-us/categories/360002582351-Best-Practices-", "position": 0, "created_at": "2020-01-27T22:33:03Z", "updated_at": "2021-05-07T21:49:34Z", "name": "Best Practices ", "description": "Draft of a category", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/best-practices/configuration/.group.json: -------------------------------------------------------------------------------- 1 | {"id":5647027851789,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/5647027851789.json","html_url":"https://support.magento.com/hc/en-us/sections/5647027851789-Configuration","category_id":360002582351,"position":0,"sorting":"manual","created_at":"2022-04-19T20:51:13Z","updated_at":"2022-04-19T20:51:13Z","name":"Configuration","description":"Best practice recommendations for Adobe Commerce configuration.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"} 2 | -------------------------------------------------------------------------------- /src/best-practices/database/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":5691369098893,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/5691369098893.json","html_url":"https://support.magento.com/hc/en-us/sections/5691369098893-Database","category_id":360002582351,"position":0,"sorting":"manual","created_at":"2022-04-21T18:59:45Z","updated_at":"2022-04-21T18:59:45Z","name":"Database","description":"Best practice recommendations for database configuration and operations.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/best-practices/database/magento-commerce-cloud-best-practice-for-slave-connection.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Adobe Commerce on cloud infrastructure best practice for MySQL slave connection 3 | labels: Magento Commerce Cloud,MySQL,best practices,database,slave connection,Adobe Commerce,cloud infrastructure,Pro 4 | --- 5 | 6 | For Adobe Commerce on cloud infrastructure Pro plan architecture users, Adobe recommends enabling slave connections for the MySQL database by default to spread the load across different nodes. 7 | 8 | See the [MySQL high-load bottleneck in Adobe Commerce on cloud infrastructure](https://support.magento.com/hc/en-us/articles/360037391972) article for details on how to enable slave connection and related questions. 9 | 10 | ## Related reading 11 | 12 | [Database best practices for Adobe Commerce on cloud infrastructure](https://support.magento.com/hc/en-us/articles/360041997312-Database-best-practices-for-Magento-Commerce-Cloud) in our support knowledge base. 13 | 14 | >![info] 15 | > 16 | >We are aware that this article may still contain industry-standard software terms that some may find racist, sexist, or oppressive and which may make the reader feel hurt, traumatized, or unwelcome. Adobe is working to remove these terms from our code, documentation, and user experiences. 17 | -------------------------------------------------------------------------------- /src/best-practices/general/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360008878592, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360008878592.json", "html_url": "https://support.magento.com/hc/en-us/sections/360008878592-General", "category_id": 360002582351, "position": 0, "sorting": "manual", "created_at": "2020-05-18T15:27:28Z", "updated_at": "2021-05-07T21:49:34Z", "name": "General", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/best-practices/general/adobe-security-notification-service.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Adobe Security Notification Service 3 | labels: Adobe Security Notification Service,Magento,help center,best practice,on-premises,Adobe Commerce,email,information,free,cloud infrastructure,subscribe,unsubscribe,products 4 | --- 5 | 6 | Security is one of our highest priorities, and Adobe understands that security is important to our customers as well. 7 | 8 | The **Adobe Security Notification Service is a free e-mail notification service** that Adobe uses to send information to customers about the security of Adobe products. 9 | 10 | Anyone can subscribe to the service, and you can unsubscribe at any time. 11 | 12 | [Subscribe HERE](https://www.adobe.com/subscription/adbeSecurityNotifications.html) to the Adobe Security Notification Service. 13 | -------------------------------------------------------------------------------- /src/best-practices/general/assets/MySQLSearchEngine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/general/assets/MySQLSearchEngine1.png -------------------------------------------------------------------------------- /src/best-practices/general/assets/asynchronous_orders_magento_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/general/assets/asynchronous_orders_magento_2.4.1.png -------------------------------------------------------------------------------- /src/best-practices/general/assets/delivering_commerce_experiences_at_scale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/general/assets/delivering_commerce_experiences_at_scale.pdf -------------------------------------------------------------------------------- /src/best-practices/general/deployment-order-best-practices-for-magento.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Deployment order best practices for Adobe Commerce 3 | labels: Magento Commerce Cloud,best practices,build,deployment,devdocs,Adobe Commerce,cloud infrastructure,Pro,Starter 4 | --- 5 | 6 | Please refer to [Deployment process: Best practices for builds and deployment](https://devdocs.magento.com/cloud/reference/discover-deploy.html#best-practices) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/best-practices/general/whitepaper-delivering-commerce-experiences-at-scale.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Whitepaper - Delivering commerce experiences at scale 3 | labels: Whitepaper,Delivering commerce experiences at scale,Adobe Commerce,cloud infrastructure,Adobe Experience Manager,Commerce Integration Framework,glass,headless,AEM,CIF,Adobe Experience Cloud 4 | --- 5 | 6 | There is great value integrating the strengths of Adobe Experience Manager (AEM), Commerce Integration Framework (CIF), and Adobe Commerce. 7 | 8 | This whitepaper is intended to be a high-level guide to provide areas to investigate initially while preparing your AEM/CIF/Adobe Commerce environment for heavy loads. 9 | 10 | Download the complete article here: [Delivering commerce experiences at scale](assets/delivering_commerce_experiences_at_scale.pdf). 11 | -------------------------------------------------------------------------------- /src/best-practices/performance/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":5998988137613,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/5998988137613.json","html_url":"https://support.magento.com/hc/en-us/sections/5998988137613-Performance","category_id":360002582351,"position":0,"sorting":"manual","created_at":"2022-05-04T17:00:02Z","updated_at":"2022-05-04T17:00:02Z","name":"Performance","description":"Best practices to improve site performance or avoid performance degradation.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/best-practices/performance/assets/asynchronous_orders_magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/performance/assets/asynchronous_orders_magento.png -------------------------------------------------------------------------------- /src/best-practices/performance/assets/asynchronous_sales_emails_magento_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/performance/assets/asynchronous_sales_emails_magento_2.4.1.png -------------------------------------------------------------------------------- /src/best-practices/performance/assets/magento_allow_all_products_per_page_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/best-practices/performance/assets/magento_allow_all_products_per_page_2.4.1.png -------------------------------------------------------------------------------- /src/best-practices/performance/best-practice-for-images-in-magento-commerce-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Best practice for images in Adobe Commerce on cloud infrastructure 3 | labels: 2.3.x,Magento Commerce Cloud,best practices,images,performance,space,Fastly,Magento,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | This article provides best practices for managing images in Adobe Commerce on cloud infrastructure to save space. 7 | 8 | ## Affected products and versions 9 | 10 | Adobe Commerce on cloud infrastructure 2.3.x 11 | 12 | ## Best practices 13 | 14 | * Use [Fastly Image Optimization](https://devdocs.magento.com/guides/v2.3/cloud/cdn/fastly-image-optimization.html). 15 | * Before uploading images, optimize and compress them to balance performance with viewing quality. This helps increase space and reduce page load times. PNGs give smaller sizes for images with large areas of solid color. JPEGs give smaller sizes for everything else. Use the highest compression (without noticeable degradation). This is usually 60-80%. 16 | 17 | ## Related reading 18 | 19 | [Poorly optimized images can lead to performance issues](https://support.magento.com/hc/en-us/articles/360034626052) in our support knowledge base. 20 | -------------------------------------------------------------------------------- /src/best-practices/redis/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6327699944973,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6327699944973.json","html_url":"https://support.magento.com/hc/en-us/sections/6327699944973-Redis","category_id":360002582351,"position":0,"sorting":"manual","created_at":"2022-05-18T21:12:42Z","updated_at":"2022-05-18T21:12:42Z","name":"Redis","description":"Redis configuration best practice recommendations.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/best-practices/redis/install-redis-5-for-magento-commerce-cloud-2.3.3-or-later.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Install Redis 5 Adobe Commerce on cloud infrastructure 2.3.3 or later 3 | labels: 2.3.3,2.3.3-p1,2.3.4,2.3.4-p2,2.3.5,2.3.5-p1,2.3.5-p2,2.3.6,2.4.0,Magento Commerce Cloud,Redis,Redis 5,best practices,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | If you are running Adobe Commerce on cloud infrastructure 2.3.3 or higher, we recommend upgrading to Redis 5. 7 | -------------------------------------------------------------------------------- /src/best-practices/security/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6327316354829,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6327316354829.json","html_url":"https://support.magento.com/hc/en-us/sections/6327316354829-Security","category_id":360002582351,"position":0,"sorting":"manual","created_at":"2022-05-18T20:59:25Z","updated_at":"2022-05-18T20:59:25Z","name":"Security","description":"Security related best practices recommendations.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/faq/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115000205313, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/115000205313.json", "html_url": "https://support.magento.com/hc/en-us/categories/115000205313-FAQ", "position": 3, "created_at": "2017-09-05T10:02:09Z", "updated_at": "2021-05-12T16:06:38Z", "name": "FAQ", "description": "Have a question? We have the answer!", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/faq/general/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115001031594, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/115001031594.json", "html_url": "https://support.magento.com/hc/en-us/sections/115001031594-General", "category_id": 115000205313, "position": 0, "sorting": "manual", "created_at": "2017-12-26T16:40:53Z", "updated_at": "2021-05-12T16:06:38Z", "name": "General", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/faq/general/accessibility.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Web Content Accessibility for Adobe Commerce 3 | labels: Magento,Adobe Commerce,accessibility,Marketplace 4 | --- 5 | 6 | We understand the importance of accessibility at Adobe. While the responsibility for accessibility is with the partner/merchant, we continue to improve our accessibility with each release which will also be included in our accessibility improvement plans for 2022. 7 | 8 | Adobe Commerce is highly customizable, and our customers can extend the Luma theme, create their Accessibility Modules, and visit our Commerce Marketplace to find extensions that meet their accessibility requirements. 9 | 10 | Many of our customers are using the [W3C Accessibility Standards](https://www.w3.org/WAI/standards-guidelines/) and utilize the [Adobe Accessibility Conformance Report for Adobe Commerce](https://www.adobe.com/accessibility/compliance/adobe-commerce-2021-acr.html). 11 | 12 | Using industry-standard developer tools, you can work with a key accessibility partner or implement extensions from the Commerce Marketplace based on specific customer requirements or/and the Adobe conformance report. 13 | 14 | Solutions can be found in the [Commerce Marketplace](https://marketplace.magento.com/). 15 | 16 | ## Related reading 17 | 18 | * [Adobe Accessibility](https://www.adobe.com/accessibility.html) 19 | -------------------------------------------------------------------------------- /src/faq/general/assets/adobe_commerce_pro_monitoring_fact_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/faq/general/assets/adobe_commerce_pro_monitoring_fact_sheet.pdf -------------------------------------------------------------------------------- /src/faq/general/assets/advanced_pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/faq/general/assets/advanced_pricing.png -------------------------------------------------------------------------------- /src/faq/general/assets/auto_increment_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/faq/general/assets/auto_increment_id.png -------------------------------------------------------------------------------- /src/faq/general/assets/cloud_project-ssh-three-node-access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/faq/general/assets/cloud_project-ssh-three-node-access.jpg -------------------------------------------------------------------------------- /src/faq/general/assets/customer_group_price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/faq/general/assets/customer_group_price.png -------------------------------------------------------------------------------- /src/faq/general/google-shopping-ads-channel-faqs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Google Shopping ads Channel FAQs 3 | labels: 2.3.3,2.3.4-p1,2.3.5,FAQ,Google,Magento Commerce,ads,channel,shopping 4 | --- 5 | >![info] 6 | > 7 | >The Google Shopping ads Channel bundled extension has reached end-of-life and has been deprecated in the core code of Adobe Commerce 2.3.5 and 2.3.4-p1. It will not be supported nor function anymore. 8 | -------------------------------------------------------------------------------- /src/faq/general/how-many-coupons-can-a-customer-use-in-magento-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How many coupons can a customer use in Adobe Commerce? 3 | labels: 2.x.x,FAQ,Magento,cart,coupon,Adobe Commerce 4 | --- 5 | 6 | Although Adobe Commerce allows configuring multiple coupon codes, a customer can use **only one coupon code in the cart**. 7 | 8 | To use more that one coupon code in the cart simultaneously, you may consider using a corresponding extension in [Commerce Marketplace](https://marketplace.magento.com/). 9 | 10 | ## More information 11 | 12 | [Coupon Codes](http://docs.magento.com/m2/ce/user_guide/marketing/price-rules-cart-coupon.html) in our user guide. 13 | -------------------------------------------------------------------------------- /src/faq/general/monitoring-whitepaper.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Monitoring fact sheet for Adobe Commerce on cloud pro infrastructure 3 | labels: FAQ,Adobe Commerce,cloud pro infrastructure,Magento,monitoring 4 | --- 5 | 6 | Monitoring provides visibility into the overall health of Adobe Commerce powered by Adobe and is 7 | instrumented with various monitoring tools to track the health of critical parts of the underlying systems to 8 | deliver optimized performance on cloud. 9 | 10 | This document provides information about the systems and subsystems being monitored, thresholds set on 11 | mission-critical parameters, and notifications. 12 | 13 | Click [Adobe Commerce Pro: Cloud Monitoring Fact Sheet](assets/adobe_commerce_pro_monitoring_fact_sheet.pdf) to download the PDF version of the Monitoring Fact Sheet. 14 | -------------------------------------------------------------------------------- /src/help-center-guide/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360000382574, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/360000382574.json", "html_url": "https://support.magento.com/hc/en-us/categories/360000382574-Help-Center-Guide", "position": 1, "created_at": "2018-05-10T17:15:41Z", "updated_at": "2021-05-12T22:30:17Z", "name": "Help Center Guide", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/help-center-guide/help-center/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360002666892, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360002666892.json", "html_url": "https://support.magento.com/hc/en-us/sections/360002666892-Help-Center", "category_id": 360000382574, "position": 0, "sorting": "manual", "created_at": "2018-10-30T12:09:47Z", "updated_at": "2021-05-11T08:58:12Z", "name": "Help Center", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/Template_for_ZD_tickets_issue_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/Template_for_ZD_tickets_issue_description.pdf -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/Validate_Email_Solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/Validate_Email_Solution.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/Verify_Email_Address_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/Verify_Email_Address_Error.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_add-to-conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_add-to-conversation.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_cc_emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_cc_emails.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_cc_emails_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_cc_emails_remove.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_conversation-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_conversation-write.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_follow-org-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_follow-org-tickets.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_my-tickets_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_my-tickets_tabs.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_search-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_search-tickets.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/hc_subject-suggested-articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/hc_subject-suggested-articles.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/magento-account-shared-manage-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/magento-account-shared-manage-permissions.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/magento-account-shared-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/magento-account-shared-switch.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/magento-env-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/magento-env-id.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/magento_account_support_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/magento_account_support_tab.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/magento_cloud_account_owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/magento_cloud_account_owner.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/my-tickets-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/my-tickets-8.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/remove_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/remove_icon.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/revoke_shared_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/revoke_shared_access.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/search-article-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/search-article-2.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/search-enter-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/search-enter-3.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/search-field-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/search-field-1.png -------------------------------------------------------------------------------- /src/help-center-guide/help-center/assets/submit-a-ticket-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/help-center-guide/help-center/assets/submit-a-ticket-4.png -------------------------------------------------------------------------------- /src/how-to/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115000205293, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/115000205293.json", "html_url": "https://support.magento.com/hc/en-us/categories/115000205293-How-To", "position": 2, "created_at": "2017-09-05T10:00:58Z", "updated_at": "2021-05-14T23:01:19Z", "name": "How To", "description": "Tutorials to get you started.", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/how-to/general/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115001031574, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/115001031574.json", "html_url": "https://support.magento.com/hc/en-us/sections/115001031574-General", "category_id": 115000205293, "position": 0, "sorting": "creation_desc", "created_at": "2017-12-26T16:40:35Z", "updated_at": "2021-05-14T23:01:19Z", "name": "General", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/how-to/general/access-the-magento-commerce-customer-support-guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Access the Adobe Commerce Customer Support Guide 3 | labels: Magento Commerce,Magento Commerce Cloud,account,how to,magento commerce customer support guide,support,support ticket,Adobe Commerce 4 | --- 5 | 6 | The Adobe Commerce Customer Support Guide explains customer support offerings and how to utilize them. This includes best practices for the support relationship, collecting information needed for diagnosis, customer support priority, submitting a support request, and links to resources. This guide is accessible from the downloads section on your Magento account page. To access: 7 | 8 | 1. Go to the Magento [account login page.](https://account.magento.com/customer/account/login) 9 | 1. Log in with your Magento username and password. 10 | 1. In the left navigation bar, click **Downloads**. 11 | 1. In the right pane, click **Merchants - Resources for Getting Started**. ![access_magento_commerce_customer_support_guide.png](assets/access_magento_commerce_customer_support_guide.png) 12 | -------------------------------------------------------------------------------- /src/how-to/general/assets/Authentication_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Authentication_Error.png -------------------------------------------------------------------------------- /src/how-to/general/assets/CPU_Allocation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/CPU_Allocation.pdf -------------------------------------------------------------------------------- /src/how-to/general/assets/Check_host_s_CPU_Configuration_-_Application_to_host_resizes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Check_host_s_CPU_Configuration_-_Application_to_host_resizes.pdf -------------------------------------------------------------------------------- /src/how-to/general/assets/Check_whether_an_upsize_is_needed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Check_whether_an_upsize_is_needed.pdf -------------------------------------------------------------------------------- /src/how-to/general/assets/Integrations_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Integrations_page.png -------------------------------------------------------------------------------- /src/how-to/general/assets/Outages_how_to_identify_and_measure_effect_Adobe_Commerce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Outages_how_to_identify_and_measure_effect_Adobe_Commerce.pdf -------------------------------------------------------------------------------- /src/how-to/general/assets/Search_Field_New_Inset_Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Search_Field_New_Inset_Image_1.jpg -------------------------------------------------------------------------------- /src/how-to/general/assets/Search_Results_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Search_Results_Image.png -------------------------------------------------------------------------------- /src/how-to/general/assets/Select_An_Article_Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Select_An_Article_Image_1.jpg -------------------------------------------------------------------------------- /src/how-to/general/assets/Validate_Email_Solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Validate_Email_Solution.png -------------------------------------------------------------------------------- /src/how-to/general/assets/Verify_Email_Address_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/Verify_Email_Address_Error.png -------------------------------------------------------------------------------- /src/how-to/general/assets/View_Submit_Ticket_Button_JPG_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/View_Submit_Ticket_Button_JPG_Final.jpg -------------------------------------------------------------------------------- /src/how-to/general/assets/View_Your_Tickets_JPG_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/View_Your_Tickets_JPG_Final.jpg -------------------------------------------------------------------------------- /src/how-to/general/assets/access_magento_commerce_customer_support_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/access_magento_commerce_customer_support_guide.png -------------------------------------------------------------------------------- /src/how-to/general/assets/access_site_urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/access_site_urls.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_magento_all_services_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_magento_all_services_notification.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_magento_one_service_subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_magento_one_service_subscription.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_notifications_regions_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_notifications_regions_events.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_region_events_notifications_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_region_events_notifications_custom.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_status_manage_subscriptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_status_manage_subscriptions.png -------------------------------------------------------------------------------- /src/how-to/general/assets/adobe_status_notification_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/adobe_status_notification_done.png -------------------------------------------------------------------------------- /src/how-to/general/assets/cart_price_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/cart_price_rule.png -------------------------------------------------------------------------------- /src/how-to/general/assets/cloud-fastly_enable-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/cloud-fastly_enable-admin.png -------------------------------------------------------------------------------- /src/how-to/general/assets/cloud_configure_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/cloud_configure_environment.png -------------------------------------------------------------------------------- /src/how-to/general/assets/cloud_fastly_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/cloud_fastly_menu.png -------------------------------------------------------------------------------- /src/how-to/general/assets/cloud_variable_admin_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/cloud_variable_admin_password.png -------------------------------------------------------------------------------- /src/how-to/general/assets/configure_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/configure_environment.png -------------------------------------------------------------------------------- /src/how-to/general/assets/copy_git_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/copy_git_clone.png -------------------------------------------------------------------------------- /src/how-to/general/assets/create-subscription-adobe-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/create-subscription-adobe-status.png -------------------------------------------------------------------------------- /src/how-to/general/assets/create_new_access_key_magento_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/create_new_access_key_magento_2.4.1.png -------------------------------------------------------------------------------- /src/how-to/general/assets/design_conf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/design_conf1.png -------------------------------------------------------------------------------- /src/how-to/general/assets/design_conf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/design_conf2.png -------------------------------------------------------------------------------- /src/how-to/general/assets/df-h_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/df-h_output.png -------------------------------------------------------------------------------- /src/how-to/general/assets/domains_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/domains_tab.png -------------------------------------------------------------------------------- /src/how-to/general/assets/fastly_service_id_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/fastly_service_id_api_key.png -------------------------------------------------------------------------------- /src/how-to/general/assets/fastly_token_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/fastly_token_value.png -------------------------------------------------------------------------------- /src/how-to/general/assets/fastly_tokens_environment_variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/fastly_tokens_environment_variables.png -------------------------------------------------------------------------------- /src/how-to/general/assets/follow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/follow-up.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_add-to-conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_add-to-conversation.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_cc_emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_cc_emails.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_cc_emails_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_cc_emails_remove.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_conversation-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_conversation-write.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_firefox.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_follow-org-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_follow-org-tickets.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_log-in.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_mac.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_my-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_my-tickets.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_my-tickets_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_my-tickets_tabs.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_rate-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_rate-article.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_search-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_search-tickets.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_search.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_select-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_select-category.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_snagit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_snagit.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_subject-suggested-articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_subject-suggested-articles.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_submit-a-support-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_submit-a-support-ticket.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_submit-a-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_submit-a-ticket.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_suggestions.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_top-article-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_top-article-suggestions.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_top-article-suggestions_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_top-article-suggestions_1.png -------------------------------------------------------------------------------- /src/how-to/general/assets/hc_troubleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/hc_troubleshooting.png -------------------------------------------------------------------------------- /src/how-to/general/assets/login_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/login_panel.png -------------------------------------------------------------------------------- /src/how-to/general/assets/login_panel_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/login_panel_s.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-account-shared-manage-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-account-shared-manage-permissions.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-account-shared-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-account-shared-switch.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_base-urls-secure-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_base-urls-secure-settings.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_base-urls-secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_base-urls-secure.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_force-tls-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_force-tls-button.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_force-tls-confirmation-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_force-tls-confirmation-dialog.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_force-tls-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_force-tls-enabled.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento-admin_secure-base-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento-admin_secure-base-url.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento_account_support_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento_account_support_tab.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento_cloud_account_owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento_cloud_account_owner.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento_cloud_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento_cloud_storage.png -------------------------------------------------------------------------------- /src/how-to/general/assets/magento_full_page_cache_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/magento_full_page_cache_2.4.1.png -------------------------------------------------------------------------------- /src/how-to/general/assets/new-grouped-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/new-grouped-product.png -------------------------------------------------------------------------------- /src/how-to/general/assets/project_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/project_space.png -------------------------------------------------------------------------------- /src/how-to/general/assets/remove_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/remove_icon.png -------------------------------------------------------------------------------- /src/how-to/general/assets/revoke_shared_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/revoke_shared_access.png -------------------------------------------------------------------------------- /src/how-to/general/assets/segment_condition_total_number_of_orders_less_than_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/segment_condition_total_number_of_orders_less_than_one.png -------------------------------------------------------------------------------- /src/how-to/general/assets/select_commit_hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/select_commit_hash.png -------------------------------------------------------------------------------- /src/how-to/general/assets/snapshot_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/snapshot_cloud.png -------------------------------------------------------------------------------- /src/how-to/general/assets/update_exists_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/update_exists_0.png -------------------------------------------------------------------------------- /src/how-to/general/assets/updates_exist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/updates_exist_1.png -------------------------------------------------------------------------------- /src/how-to/general/assets/zendesk_cc_emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/zendesk_cc_emails.png -------------------------------------------------------------------------------- /src/how-to/general/assets/zendesk_cc_emails_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/zendesk_cc_emails_remove.png -------------------------------------------------------------------------------- /src/how-to/general/assets/zendesk_my_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/zendesk_my_activities.png -------------------------------------------------------------------------------- /src/how-to/general/assets/zendesk_requests_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/zendesk_requests_tab.png -------------------------------------------------------------------------------- /src/how-to/general/assets/zendesk_ticket_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/how-to/general/assets/zendesk_ticket_search.png -------------------------------------------------------------------------------- /src/how-to/general/bootstrap-magento-2-in-a-sandbox-script.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bootstrap Adobe Commerce 2 in a sandbox script 3 | labels: 2.x.x,Magento,Magento Commerce,Magento Commerce Cloud,bootstrap,how to,sandbox,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | To initialize an Adobe Commerce 2 application in a sample sandbox script, execute the following script from the Adobe Commerce root directory: 7 | 8 | ```php 9 | getObjectManager(); 17 | 18 | //$model = $objectManager->get('Vendor\Module\Some\Model'); 19 | ``` 20 | -------------------------------------------------------------------------------- /src/how-to/general/change-account-owner-access-credentials-via-api-tokens-for-fastly-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Change account owner (access credentials via API tokens) for Fastly on Cloud 3 | labels: API,Fastly,Magento Commerce Cloud,account,credentials,devdocs,how to,Adobe Commerce 4 | --- 5 | 6 | Please refer to the [Fastly service account and credentials](https://devdocs.magento.com/guides/v2.3/cloud/cdn/cloud-fastly.html#fastly-service-account-and-credentials) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/check-disk-space-limit-for-magento-commerce-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Check disk space limit for Adobe Commerce on cloud infrastructure 3 | labels: Magento Commerce Cloud,disk,disk space,how to,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | To check how much space you have for each Adobe Commerce on cloud infrastructure environment: 7 | 8 | 1. As the Adobe Commerce on cloud infrastructure Account Owner, log in to your project. 9 | 1. In the upper right corner, click **** > **Account Settings**. 10 | 1. On the project tab, see the amount specified, for example: 11 | 12 | project space 13 | 14 | ## Related reading 15 | 16 | [Manage disk space](https://devdocs.magento.com/cloud/project/manage-disk-space.html) in our developer documentation. 17 | -------------------------------------------------------------------------------- /src/how-to/general/check-disk-space-on-cloud-environment-using-cli.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Check disk space using CLI on Adobe Commerce on cloud infrastructure environment 3 | labels: Cloud,Magento Commerce Cloud,devdocs,disk space,how to,space,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Manage disk space](https://devdocs.magento.com/guides/v2.3/cloud/project/manage-disk-space.html) article in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/configure-fastly-dns-settings-on-staging-and-production-environments.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Configure Fastly DNS settings on Staging and Production environments 3 | labels: DNS,Fastly,Magento Commerce Cloud,Staging,configuration,devdocs,how to,production,setup 4 | --- 5 | 6 | Please refer to the [Setup Fastly](https://devdocs.magento.com/cloud/cdn/configure-fastly.html) article in our developer documentation for the latest information. 7 | -------------------------------------------------------------------------------- /src/how-to/general/create-a-patch-for-a-magento-2-composer-installation-from-a-github-commit.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Create a patch for Adobe Commerce Composer installation from a GitHub commit 3 | labels: Magento,composer,devdocs,github,how to,patch,Adobe Commerce 4 | --- 5 | 6 | Please refer to [Custom patches section of the Applying patches](https://devdocs.magento.com/guides/v2.3/comp-mgr/patching.html#custom-patches) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/customize-design-configuration-in-magento-admin.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Customize design configuration in the Commerce Admin 3 | labels: 2.0,2.1.x,Magento Commerce,Magento Commerce Cloud,admin,configuration,content,custom,design,how to,magento,store,stores,Adobe Commerce 4 | --- 5 | 6 | For the most up to date information about customizing design configuration in the Commerce Admin, please refer to [Customize Adobe Commerce Admin design](https://devdocs.magento.com/guides/v2.4/howdoi/admin/customize_admin.html) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/enable-elasticsearch-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Enable Elasticsearch on Cloud 3 | labels: Cloud,Magento Commerce Cloud,devdocs,elasticsearch,how to,setup,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Set up Elasticsearch Service](https://devdocs.magento.com/guides/v2.3/cloud/project/project-conf-files_services-elastic.html#elasticsearch-software-compatibility) article in our developer documentation for information about setting up Elasticsearch for Adobe Commerce on cloud infrastructure. 7 | -------------------------------------------------------------------------------- /src/how-to/general/find-large-mysql-tables.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Find large MySQL tables 3 | labels: Magento,Magento Commerce Cloud,MySQL,database,how to,tables,Adobe Commerce 4 | --- 5 | 6 | To identify the large tables, connect to the database as described in the [Connect to the database](https://devdocs.magento.com/cloud/project/project-conf-files_services-mysql.html#connect-to-the-database) article, and run the following command, where `project_id` is your Cloud project ID: 7 | 8 | ```sql 9 | SELECT TABLE_NAME AS `Table`, 10 | ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)` 11 | FROM information_schema.TABLES 12 | WHERE TABLE_SCHEMA = "" 13 | ORDER BY (DATA_LENGTH + INDEX_LENGTH) DESC; 14 | ``` 15 | 16 | This would display the complete list of tables and their size. You can go through the list and identify which tables require attention because of the big size. 17 | -------------------------------------------------------------------------------- /src/how-to/general/how-to-identify-outages.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Identify and measure outages for Adobe Commerce on cloud infrastructure 3 | labels: Adobe Commerce,cloud infrastructure,outage,site down 4 | promoted: True 5 | --- 6 | 7 | There are multiple ways for a merchant (or anyone interested in the site’s health) can identify site-downs, also known as site outages. A site-down is the time period when the merchant’s site cannot adequately respond to the customer’s requests. The definition of outages and their effects on sites is broad. The attached article describes the following: 8 | 9 | * the general steps to pinpoint an issue that may be an outage 10 | * how to identify whether the issue is truly an outage, a small-scale outage, or a temporary impediment 11 | 12 | To download the article, click [Outages_how_to_identify_and_measure_effect_Adobe_Commerce.pdf](assets/Outages_how_to_identify_and_measure_effect_Adobe_Commerce.pdf) 13 | -------------------------------------------------------------------------------- /src/how-to/general/how-to-profile-database-queries-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: How to profile database queries in Adobe Commerce on cloud infrastructure 3 | labels: Magento Commerce Cloud,database,devdocs,how to,profile,queries,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Profile database queries](https://devdocs.magento.com/guides/v2.3/cloud/project/profile-database-queries.html) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/increase-disk-space-for-integration-environment-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Increase disk space for Integration environment on cloud 3 | labels: Cloud,Magento Commerce Cloud,disk space,how to,performance,space,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to [Manage disk space](https://devdocs.magento.com/guides/v2.3/cloud/project/manage-disk-space.html) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/log-locations-directories-for-pro-plan-integration-staging-production.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Log locations (directories) for Pro plan: Integration, Staging, Production" 3 | labels: Magento Commerce Cloud,Pro,Staging,devdocs,how to,log,production,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Log locations](https://devdocs.magento.com/guides/v2.2/cloud/project/log-locations.html) in our developer documentation for information about logs location for Adobe Commerce on cloud infrastructure. 7 | -------------------------------------------------------------------------------- /src/how-to/general/log-locations-directories-for-starter-plan.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Log locations (directories) for Starter plan 3 | labels: Magento Commerce Cloud,Magento Starter,Starter,devdocs,how to,logs,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Log locations](https://devdocs.magento.com/guides/v2.2/cloud/project/log-locations.html) in our developer documentation for information about logs location for Adobe Commerce on cloud infrastructure. 7 | -------------------------------------------------------------------------------- /src/how-to/general/magento-commerce-cloud-check-hosts-cpu-configuration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adobe Commerce on cloud infrastructure: Check host’s CPU configuration" 3 | labels: CPU,Magento,Magento Commerce Cloud,New Relic,New Relic One,configuration,data,how to,queries,cloud infrastructure,Adobe Commerce 4 | promoted: True 5 | --- 6 | 7 | The attached article provides detailed guidelines on the steps and queries a user can follow, to check a host’s CPU configuration. The user may apply these steps to identify a resize, pinpoint the time of change, and view all hardware configuration changes that occurred, if any, at any point in time before or after the resize. 8 | 9 | ## Affected products and versions 10 | 11 | Adobe Commerce on cloud infrastructure 2.3.x, 2.4.x 12 | 13 | ## Download the article 14 | 15 | Click [Check_host_s_CPU_Configuration_-_Application_to_host_resizes.pdf](assets/Check_host_s_CPU_Configuration_-_Application_to_host_resizes.pdf) to download the article. 16 | -------------------------------------------------------------------------------- /src/how-to/general/magento-commerce-cloud-check-if-upsize-for-hosts-instances-is-needed.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adobe Commerce on cloud: check if upsize for host’s instances is needed" 3 | labels: 2.3.x,2.4.x,CPU,Magento Commerce Cloud,how to,load,memory,upsize,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | The attached article provides detailed guidelines on what metrics should be used when making decisions about resizing, and how to measure them. 7 | 8 | ## Affected products and versions 9 | 10 | Adobe Commerce on cloud infrastructure 2.3.x, 2.4.x. 11 | 12 | ## Download the article 13 | 14 | Click [Check_whether_an_upsize_is_needed.pdf](assets/Check_whether_an_upsize_is_needed.pdf) to download the article. 15 | -------------------------------------------------------------------------------- /src/how-to/general/magento-commerce-cloud-cpu-allocation-calculation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adobe Commerce on cloud infrastructure: CPU allocation calculation" 3 | labels: CPU Allocation,calculation,configuration,hardware resources,phCPU,query,Adobe Commerce,cloud infrastructure,Magento 4 | promoted: True 5 | --- 6 | 7 | The attached article provides detailed guidelines on what metrics should be used when making decisions about CPU allocation, and how to calculate them. 8 | 9 | ## Affected products and versions 10 | 11 | Adobe Commerce on cloud infrastructure 2.3.x, 2.4.x. 12 | 13 | ## Attached files 14 | 15 | Click on the [attached .pdf](assets/CPU_Allocation.pdf) file to download the article. 16 | -------------------------------------------------------------------------------- /src/how-to/general/mbi-essentials-update-payment-method-or-cancel-subscription.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "MBI Essentials: update payment method or cancel subscription" 3 | labels: MBI,MBI Essentials,Magento Business Intelligence,how to,license,payment method,payments 4 | --- 5 | 6 | This article explains how month-to-month Magento MBI Essentials clients can cancel their subscriptions or update their payment method for their existing subscriptions. 7 | 8 | ## Affected products and versions 9 | 10 | * MBI Essentials - Only relevant for month-to-month Essentials clients. Not for customers who have access to Essentials as part of their commerce contract. 11 | 12 | ## MBI Essentials: update/cancel subscriptions 13 | 14 | For MBI Essentials clients to cancel their subscriptions or update their payment methods they must be the primary account holder for the Magento account. The steps are: 15 | 16 | 1. Navigate to [account.magento.com](https://account.magento.com) and log in. 17 | 1. Click Magento > My Products and Services > Magento Business Intelligence, and click Show Details next to the license you want to update. 18 | 1. Select Update Payment Method or Cancel License. 19 | 20 | ## Related reading 21 | 22 | * [MBI User Guide: Magento Business Intelligence](https://docs.magento.com/mbi/) . 23 | -------------------------------------------------------------------------------- /src/how-to/general/mbi-training-video-filter-sets.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "MBI Training Video: Filter Sets" 3 | labels: MBI,Magento Business Intelligence,analysis,data,database,how to,mbi-api-migration,reports 4 | --- 5 | 6 | Do you want to analyze only certain pieces of your business data? Tired of manually cleaning things up? In Magento BI, you can use the filter sets feature to simplify this process. 7 | 8 | In this video, you'll learn: 9 | 10 | * How to create a filter set 11 | * How to use filter operators 12 | * How to apply a filter set to a metric 13 | * How to apply a filter set to a calculated data dimension 14 | 15 | To watch the video, go to [Business Intelligence - Filter Sets](https://experienceleague.adobe.com/docs/commerce-learn/tutorials/business-intelligence/filter-sets.html) in Adobe Experience League. 16 | 17 | **Want to follow along?** Check out our [Creating filter sets for metrics tutorial](https://support.magento.com/hc/en-us/articles/360016505492) for written instructions. 18 | -------------------------------------------------------------------------------- /src/how-to/general/mbi-training-video-sql-report-builder.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "MBI Training Video: SQL Report Builder" 3 | labels: MBI,Magento Business Intelligence,SQL,analysis,data,database,how to,mbi-api-migration,reports 4 | --- 5 | 6 | Remember, **you need Admin permissions to access the SQL Report Builder!** 7 | 8 | In this video, you'll learn: 9 | 10 | * How to run a SQL query 11 | * How to [visualize your results](https://support.magento.com/hc/en-us/articles/360016504852) 12 | * How to save the report to a dashboard 13 | 14 | To watch the video, go to [Business Intelligence - SQL Report Builder](https://experienceleague.adobe.com/docs/commerce-learn/tutorials/business-intelligence/sql-report-builder.html) in Adobe Experience League. 15 | 16 | **Want to follow along?** Check out our [SQL Report Builder tutorial](https://support.magento.com/hc/en-us/articles/360016504112) for written instructions. 17 | -------------------------------------------------------------------------------- /src/how-to/general/provide-discount-for-first-purchase-only-no-coupons.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Provide discount for first purchase only (no coupons) 3 | labels: Magento,cart_rules,customer_segments,discount,how to,user guide,Adobe Commerce 4 | --- 5 | 6 | Please refer to the [Discount with First Purchase](https://docs.magento.com/m2/ee/user_guide/marketing/price-rule-discount-first-purchase.html) article in our user guide. 7 | -------------------------------------------------------------------------------- /src/how-to/general/set-cache-ttl-for-images-and-other-static-content.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Set cache TTL for images and other static content 3 | labels: how to,cache TTL,static content,set cache,Adobe Commerce,Magento 4 | --- 5 | 6 | Please refer to the [Set cache for static files](https://devdocs.magento.com/guides/v2.3/cloud/project/set-cache.html) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/set-up-fastly-for-starter-plan-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Set up Fastly for Starter plan on Cloud 3 | labels: Fastly,Magento Commerce Cloud,Starter,devdocs,how to,setup,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to [Set up Fastly](https://devdocs.magento.com/guides/v2.3/cloud/cdn/configure-fastly.html) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/how-to/general/static-content-deployment-options-to-reduce-deployment-downtime-on-cloud.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Static content deployment options to reduce deployment downtime on Cloud 3 | labels: Magento Commerce Cloud,content,deploy,deployment,devdocs,downtime,ece-tools,how to,static,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Static content deployment strategies](https://devdocs.magento.com/guides/v2.3/cloud/deploy/static-content-deployment.html) in our developer documentation for details about the Static Content Deployment (SCD) options that help to speed up the deployment process and decrease the maintenance downtime on Adobe Commerce on cloud infrastructure. 7 | -------------------------------------------------------------------------------- /src/how-to/general/switch-the-magento-mode.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Switch the Application mode 3 | labels: Magento,devdocs,developer,how to,mode,production,switch,Adobe Commerce 4 | --- 5 | 6 | Please refer to the following articles in our developer documentation: 7 | 8 | * Adobe Commerce 2.3: [Set the operation mode](https://devdocs.magento.com/guides/v2.3/config-guide/cli/config-cli-subcommands-mode.html) 9 | * Adobe Commerce 2.4: [Set the operation mode](https://devdocs.magento.com/guides/v2.4/config-guide/cli/config-cli-subcommands-mode.html) 10 | -------------------------------------------------------------------------------- /src/how-to/general/update-shared-catalog-prices-using-rest-api.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Update Shared Catalog prices using REST API 3 | labels: API,B2B,Magento,devdocs,how to,price,shared_catalog,Adobe Commerce 4 | --- 5 | 6 | To add or update prices in Shared Catalogs with API, we recommend using the `TierPriceStorageInterface` service, described in the [Manage tier prices](http://devdocs.magento.com/guides/v2.2/rest/modules/catalog-pricing.html#manage-tier-prices) REST API Reference in our developer documentation. For Shared Catalog prices, we use Tier Price and Customer Group. 7 | -------------------------------------------------------------------------------- /src/how-to/general/work-with-refunds-and-credit-memos-using-magento-api.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Work with refunds and credit memos using Adobe Commerce API 3 | labels: API,Magento,credit memo,devdocs,how to,refund,Adobe Commerce 4 | --- 5 | 6 | Please refer to the [Refunds](https://devdocs.magento.com/guides/v2.4/rest/modules/sales/refunds.html) article in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/news-and-updates/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115000239054, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/115000239054.json", "html_url": "https://support.magento.com/hc/en-us/categories/115000239054-News-and-Updates", "position": 4, "created_at": "2017-09-21T14:59:44Z", "updated_at": "2020-02-21T18:11:13Z", "name": "News and Updates", "description": "Find the latest updates and bulletins.", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/support-tools/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360004245632, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/360004245632.json", "html_url": "https://support.magento.com/hc/en-us/categories/360004245632-Support-Tools", "position": 0, "created_at": "2020-09-17T21:31:37Z", "updated_at": "2021-05-14T13:53:29Z", "name": "Support Tools", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360010758472, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360010758472.json", "html_url": "https://support.magento.com/hc/en-us/sections/360010758472-Managed-alerts-for-Adobe-Commerce", "category_id": 360004245632, "position": 0, "sorting": "manual", "created_at": "2020-10-16T15:46:40Z", "updated_at": "2021-05-14T13:53:29Z", "name": "Managed alerts for Adobe Commerce", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} 2 | -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/Magento_Redis_Memory_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/Magento_Redis_Memory_Warning.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/apdex-critical-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/apdex-critical-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/apdex-warning-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/apdex-warning-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/cpu-critical-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/cpu-critical-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/cpu-warning-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/cpu-warning-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/disk-critical-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/disk-critical-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/disk-warning-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/disk-warning-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/memory-critical-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/memory-critical-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/memory-warning-magento-managed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/memory-warning-magento-managed.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/new_relic_redis_memory_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/new_relic_redis_memory_critical.png -------------------------------------------------------------------------------- /src/support-tools/managed-alerts-for-adobe-commerce/assets/new_relic_redis_memory_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/managed-alerts-for-adobe-commerce/assets/new_relic_redis_memory_warning.png -------------------------------------------------------------------------------- /src/support-tools/observation-for-adobe-commerce/.group.json: -------------------------------------------------------------------------------- 1 | {"id":4406538533901,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/4406538533901.json","html_url":"https://support.magento.com/hc/en-us/sections/4406538533901-Observation-for-Adobe-Commerce","category_id":360004245632,"position":0,"sorting":"manual","created_at":"2021-08-05T19:48:04Z","updated_at":"2021-08-05T19:48:35Z","name":"Observation for Adobe Commerce","description":"","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"} 2 | -------------------------------------------------------------------------------- /src/support-tools/observation-for-adobe-commerce/observation-adobe-commerce-overview.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Observation for Adobe Commerce overview 3 | labels: support tools,Observation,Adobe Commerce,cloud infrastructure,Magento 4 | --- 5 | 6 | Observation for Adobe Commerce is a New Relic nerdlet to see the state of your Adobe Commerce site, current or past time views. A nerdlet is a custom application built with New Relic One programmability. 7 | 8 | The Summary tab of Observation for Adobe Commerce is intended to quickly see some of the problems experienced by sites to help you auto-resolve or identify potential root causes of site problems. The additional tabs provide deeper level information on component services, database, infrastructure, and process states. 9 | 10 | To see the complete guide on how to use Observation for Adobe Commerce on cloud infrastructure, go to [Observation for Adobe Commerce](https://experienceleague.adobe.com/docs/commerce-operations/tools/observation-for-adobe-commerce/intro.html?lang=en) guide in Experience League. 11 | -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360010506631, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360010506631.json", "html_url": "https://support.magento.com/hc/en-us/sections/360010506631-Patches-available-in-QPT-tool-", "category_id": 360004245632, "position": 2, "sorting": "manual", "created_at": "2020-09-16T20:56:47Z", "updated_at": "2021-05-10T16:35:43Z", "name": "Patches available in QPT tool ", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/cms_page_magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/cms_page_magento.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/create_new_order_magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/create_new_order_magento.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/create_new_order_magento_2.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/create_new_order_magento_2.3.4.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/new-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/new-acl.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/new_order_magento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/new_order_magento.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/new_order_magento_2.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/new_order_magento_2.3.4.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/persistent_shopping_cart_magento_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/persistent_shopping_cart_magento_2.4.1.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/products_magento_different_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/products_magento_different_position.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/products_magento_ordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/products_magento_ordered.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/status_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/status_table.png -------------------------------------------------------------------------------- /src/support-tools/patches-available-in-qpt-tool/assets/tax_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/support-tools/patches-available-in-qpt-tool/assets/tax_settings_1.png -------------------------------------------------------------------------------- /src/support-tools/site-wide-analysis-tool/.group.json: -------------------------------------------------------------------------------- 1 | {"id":360010407932,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/360010407932.json","html_url":"https://support.magento.com/hc/en-us/sections/360010407932-Site-Wide-Analysis-Tool","category_id":360004245632,"position":0,"sorting":"manual","created_at":"2020-09-17T21:32:00Z","updated_at":"2021-03-17T09:46:17Z","name":"Site-Wide Analysis Tool","description":"","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"} 2 | -------------------------------------------------------------------------------- /src/support-tools/site-wide-analysis-tool/swat-tool-overview.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site-Wide Analysis Tool by Adobe: overview" 3 | labels: support tools,Site-Wide Analysis Tool,Adobe Commerce,cloud infrastructure,Magento 4 | --- 5 | 6 | Site-Wide Analysis Tool is a proactive self-service tool and central repository that includes detailed system insights and recommendations to ensure the security and operability of your Adobe Commerce installation. All tool-related customer site information is collected on predetermined schedules every three hours to once a day. This means that SWAT is constantly analyzing customer site data for Findings. 7 | 8 | To find out more about Site-Wide Analysis Tool, please refer to the following articles: 9 | 10 | * [Adobe Commerce Site-Wide Analysis Tool report, an introduction video](https://support.magento.com/hc/en-us/articles/360048980691-Magento-Site-Wide-Analysis-Tool-report-an-introduction-video). This article is in our support knowledge base (**you must be signed in to access it**). 11 | * [Site-Wide Analysis Tool Guide](https://experienceleague.adobe.com/docs/commerce-operations/tools/site-wide-analysis-tool/intro.html?lang=en) in Adobe Experience League. 12 | -------------------------------------------------------------------------------- /src/troubleshooting/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 115000200533, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/categories/115000200533.json", "html_url": "https://support.magento.com/hc/en-us/categories/115000200533-Troubleshooting", "position": 0, "created_at": "2017-09-02T12:21:37Z", "updated_at": "2021-05-14T22:36:42Z", "name": "Troubleshooting", "description": "Find solutions for your issues.", "locale": "en-us", "source_locale": "en-us", "outdated": false} -------------------------------------------------------------------------------- /src/troubleshooting/database/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6635480181645,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6635480181645.json","html_url":"https://support.magento.com/hc/en-us/sections/6635480181645-Database","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-06-02T17:11:48Z","updated_at":"2022-06-02T17:39:26Z","name":"Database","description":"Troubleshooting solutions for database related issues in Adobe Commerce.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/database/assets/KB-372_image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/database/assets/KB-372_image002.png -------------------------------------------------------------------------------- /src/troubleshooting/database/assets/KB-372_image003_BlurredExtension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/database/assets/KB-372_image003_BlurredExtension.png -------------------------------------------------------------------------------- /src/troubleshooting/database/assets/KB-372_image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/database/assets/KB-372_image004.png -------------------------------------------------------------------------------- /src/troubleshooting/deployment/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6349373578125,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6349373578125.json","html_url":"https://support.magento.com/hc/en-us/sections/6349373578125-Deployment","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-05-19T19:01:09Z","updated_at":"2022-05-19T19:01:09Z","name":"Deployment","description":"Solutions for the deployment-related issues.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/deployment/deployment-error-sql-hy000.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deployment error: SQLSTATE[HY000]" 3 | labels: Magento Commerce Cloud,command line,troubleshooting,deployment error,Adobe Commerce,on-premise,cloud infrastructure,SQLSTATE 4 | --- 5 | 6 | This article provides a solution for the issue where deployment fails because of the SQLSTATE[HY000] error. 7 | 8 | ## Affected products and versions 9 | 10 | * Adobe Commerce, [all deployment methods](https://magento.com/sites/default/files/magento-software-lifecycle-policy.pdf) 11 | 12 | ## Issue 13 | 14 | An SQLSTATE error occurs during deployment. 15 | 16 | ```sql 17 | Updating modules: 18 | SQLSTATE[HY000]: General error: 23 Out of resources when opening file '/tmp/#sql_565c_0.MAD' (Errcode: 24 "Too many open files"), 19 | ``` 20 | 21 | ## Cause 22 | 23 | Cron running during deployment. 24 | 25 | ## Solution 26 | 27 | To resolve the issue, stop cron from running by opening the command line and running the following command: 28 | `./vendor/bin/ece-tools cron:disable`. 29 | -------------------------------------------------------------------------------- /src/troubleshooting/deployment/deployment-fails-elasticsearch-and-magento-versions-incompatible.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deployment fails: Elasticsearch and Adobe Commerce versions incompatible" 3 | labels: Elasticsearch,Magento Commerce Cloud,troubleshooting,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | Please refer to the [Set up Elasticsearch Service > Elasticsearch software compatibility](https://devdocs.magento.com/guides/v2.3/cloud/project/project-conf-files_services-elastic.html#elasticsearch-software-compatibility) in our developer documentation. 7 | -------------------------------------------------------------------------------- /src/troubleshooting/elasticsearch/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6350963252877,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6350963252877.json","html_url":"https://support.magento.com/hc/en-us/sections/6350963252877-ElasticSearch","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-05-19T20:01:42Z","updated_at":"2022-05-19T20:01:42Z","name":"ElasticSearch","description":"Troubleshooting tips for ElasticSearch issues.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/elasticsearch/assets/MDVA-12312_EE_2.2.3_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/elasticsearch/assets/MDVA-12312_EE_2.2.3_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/elasticsearch/assets/MDVA-14172_EE_2.2.6_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/elasticsearch/assets/MDVA-14172_EE_2.2.6_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6347182439181,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6347182439181.json","html_url":"https://support.magento.com/hc/en-us/sections/6347182439181-Installation","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-05-19T17:36:48Z","updated_at":"2022-05-19T17:36:48Z","name":"Installation and upgrade","description":"Solutions for the issues you might come across when installing Adobe Commerce. ","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.3.7-p1_ce.patch: -------------------------------------------------------------------------------- 1 | diff -Nuar a/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php b/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php 2 | --- a/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php (revision d40e8cbfd24ac841900166877e9910f9d549fdf5) 3 | +++ b/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php (revision 7d6a3eeb669d4a11978bf639dc2536ef23d56d09) 4 | @@ -71,7 +71,7 @@ 5 | 6 | foreach ($this->fileDenyList as $file) { 7 | $baseName = pathinfo($actualPath, PATHINFO_BASENAME); 8 | - if (str_contains($baseName, $file) || preg_match('#' . "\." . $file . '#', $fullPath)) { 9 | + if (strpos($baseName, $file) !== false || preg_match('#' . "\." . $file . '#', $fullPath)) { 10 | throw new ValidatorException( 11 | new Phrase('"%1" is not a valid file path', [$path]) 12 | ); 13 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.3.7-p1_ce.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.3.7-p1_ce.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.4.3_ce.patch: -------------------------------------------------------------------------------- 1 | diff -Nuar a/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php b/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php 2 | --- a/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php (revision d40e8cbfd24ac841900166877e9910f9d549fdf5) 3 | +++ b/vendor/magento/framework/Filesystem/Directory/DenyListPathValidator.php (revision 7d6a3eeb669d4a11978bf639dc2536ef23d56d09) 4 | @@ -71,7 +71,7 @@ 5 | 6 | foreach ($this->fileDenyList as $file) { 7 | $baseName = pathinfo($actualPath, PATHINFO_BASENAME); 8 | - if (str_contains($baseName, $file) || preg_match('#' . "\." . $file . '#', $fullPath)) { 9 | + if (strpos($baseName, $file) !== false || preg_match('#' . "\." . $file . '#', $fullPath)) { 10 | throw new ValidatorException( 11 | new Phrase('"%1" is not a valid file path', [$path]) 12 | ); 13 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.4.3_ce.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/installation-and-upgrade/assets/AC-384__Fix_Incompatible_PHP_Method__2.4.3_ce.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/B2B-716_composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-purchase-order/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php b/vendor/magento/module-purchase-order/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 2 | index c8acaa346..6579e8812 100644 3 | --- a/vendor/magento/module-purchase-order/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 4 | +++ b/vendor/magento/module-purchase-order/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 5 | @@ -8,6 +8,7 @@ declare(strict_types=1); 6 | namespace Magento\PurchaseOrder\Setup\Patch\Data; 7 | 8 | use Magento\Framework\Setup\Patch\DataPatchInterface; 9 | +use Magento\Framework\Setup\Patch\NonTransactionableInterface; 10 | use Magento\SalesSequence\Model\Builder as SequenceBuilder; 11 | use Magento\SalesSequence\Model\Config as SequenceConfig; 12 | use Magento\Store\Api\StoreRepositoryInterface; 13 | @@ -15,7 +16,7 @@ use Magento\Store\Api\StoreRepositoryInterface; 14 | /** 15 | * Initializes purchase order sales sequence. 16 | */ 17 | -class InitPurchaseOrderSalesSequence implements DataPatchInterface 18 | +class InitPurchaseOrderSalesSequence implements DataPatchInterface, NonTransactionableInterface 19 | { 20 | /** 21 | * @var SequenceBuilder 22 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/B2B-716_composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/installation-and-upgrade/assets/B2B-716_composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/B2B-716_git.patch: -------------------------------------------------------------------------------- 1 | diff --git a/app/code/Magento/PurchaseOrder/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php b/app/code/Magento/PurchaseOrder/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 2 | index c8acaa346..6579e8812 100644 3 | --- a/app/code/Magento/PurchaseOrder/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 4 | +++ b/app/code/Magento/PurchaseOrder/Setup/Patch/Data/InitPurchaseOrderSalesSequence.php 5 | @@ -8,6 +8,7 @@ declare(strict_types=1); 6 | namespace Magento\PurchaseOrder\Setup\Patch\Data; 7 | 8 | use Magento\Framework\Setup\Patch\DataPatchInterface; 9 | +use Magento\Framework\Setup\Patch\NonTransactionableInterface; 10 | use Magento\SalesSequence\Model\Builder as SequenceBuilder; 11 | use Magento\SalesSequence\Model\Config as SequenceConfig; 12 | use Magento\Store\Api\StoreRepositoryInterface; 13 | @@ -15,7 +16,7 @@ use Magento\Store\Api\StoreRepositoryInterface; 14 | /** 15 | * Initializes purchase order sales sequence. 16 | */ 17 | -class InitPurchaseOrderSalesSequence implements DataPatchInterface 18 | +class InitPurchaseOrderSalesSequence implements DataPatchInterface, NonTransactionableInterface 19 | { 20 | /** 21 | * @var SequenceBuilder 22 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/B2B-716_git.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/installation-and-upgrade/assets/B2B-716_git.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/assets/MDVA-10439_EE_2.2.3_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/installation-and-upgrade/assets/MDVA-10439_EE_2.2.3_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/cannot-install-using-nginx.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Cannot install using nginx 3 | labels: Magento Commerce,Magento Commerce Cloud,fail,how to,install,nginx,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | This article provides a fix for a failed Adobe Commerce installation, when using the nginx web server. 7 | 8 | ## Issue 9 | 10 | If you use the nginx web server and you attempt to install the Adobe Commerce software, the installation sometimes fails. 11 | 12 | ## Solution 13 | 14 | You can confirm the issue by the following error in the `var/report` directory: 15 | 16 | ```php 17 | NOTE: You cannot install Adobe Commerce using the Setup Wizard because the Adobe Commerce setup directory cannot be accessed. 18 | You can install Adobe Commerce using either the command line or you must restore access to the following directory: /var/www/html/setup 19 | If you are using the sample nginx configuration, please go to http://ce.mtf03.bcn.magento.com/setup/";i:1;s:641:"#0 /var/www/html/lib/internal/Magento/Framework/App/Http.php(213): Magento\Framework\App\Http->redirectToSetup(Object(Magento\Framework\App\Bootstrap), Object(Exception)) 20 | ``` 21 | 22 | ### Workaround 23 | 24 | Install the Adobe Commerce software using the [command line](https://devdocs.magento.com/guides/v2.3/install-gde/install/cli/install-cli.html). 25 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/during-installation-fatal-pdo-error-displays.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: During installation, fatal PDO error displays 3 | labels: Magento Commerce,Magento Commerce Cloud,PDO,PHP,extensions,fatal error,how to,installation,Adobe Commerce,cloud infrastructure,on-premises 4 | --- 5 | 6 | This article provides a fix for an exception fatal PDO error during installation. 7 | 8 | ### Issue 9 | 10 | ```php 11 | PHP Fatal error: Class 'PDO' not found in /var/www/html/magento2/setup/module/Magento/Setup/src/Module/Setup/ConnectionFactory.php on line 44 12 | ``` 13 | 14 | ### Solution 15 | 16 | Make sure you install all the [required PHP extensions](https://devdocs.magento.com/guides/v2.4/install-gde/prereq/php-settings.html). 17 | -------------------------------------------------------------------------------- /src/troubleshooting/installation-and-upgrade/during-installation-php-date-warning.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: During installation, PHP date warning 3 | labels: PHP,date,how to,timezone,warning,Adobe Commerce,Magento,installation 4 | --- 5 | 6 | This article provides a fix for a PHP date warning during installation. 7 | 8 |

Details

9 | 10 | During the installation, the following message displays: 11 | 12 | ```text 13 | PHP Warning: date(): It is not safe to rely on the system's timezone settings. [more] 14 | ``` 15 | 16 |

Solution

17 | 18 | Check the PHP time zone setting carefully. Refer to [Installation Guide > PHP Settings](https://devdocs.magento.com/guides/v2.3/install-gde/prereq/php-settings.html) in our developer documentation. 19 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/.group.json: -------------------------------------------------------------------------------- 1 | {"id": 360003869892, "url": "https://magento.zendesk.com/api/v2/help_center/en-us/sections/360003869892.json", "html_url": "https://support.magento.com/hc/en-us/sections/360003869892-Known-issues-patches-attached-", "category_id": 115000200533, "position": 1, "sorting": "manual", "created_at": "2019-03-07T21:13:10Z", "updated_at": "2021-05-14T20:49:28Z", "name": "Known issues (patches attached)", "description": "", "locale": "en-us", "source_locale": "en-us", "outdated": false, "parent_section_id": null, "theme_template": "section_page"} -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/AC-2655_2.4.4.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/AC-2655_2.4.4.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/ACPLTSRV-2017-fix.sh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/ACPLTSRV-2017-fix.sh.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/B2B-709-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/B2B-709-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-2546_EE_2.3.5-p1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-2546_EE_2.3.5-p1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-2684-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-2684-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-3137-composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/paypal/module-braintree-core/Block/Form.php b/vendor/paypal/module-braintree-core/Block/Form.php 2 | index 4bc1bdf1..70559bbe 100755 3 | --- a/vendor/paypal/module-braintree-core/Block/Form.php 4 | +++ b/vendor/paypal/module-braintree-core/Block/Form.php 5 | @@ -66,6 +66,7 @@ public function __construct( 6 | GatewayConfig $gatewayConfig, 7 | CcType $ccType, 8 | LoggerInterface $logger, 9 | + Data $paymentDataHelper, 10 | array $data = [] 11 | ) { 12 | parent::__construct($context, $paymentConfig, $data); 13 | @@ -74,6 +75,7 @@ public function __construct( 14 | $this->gatewayConfig = $gatewayConfig; 15 | $this->ccType = $ccType; 16 | $this->logger = $logger; 17 | + $this->paymentDataHelper = $paymentDataHelper; 18 | } 19 | 20 | /** 21 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-3137-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/BUNDLE-3137-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/CLEANUP_PATCH_COMPOSER_2.3.2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-wishlist/Controller/Index/Plugin.php b/vendor/magento/module-wishlist/Controller/Index/Plugin.php 2 | index 60d6859613d..62de6bfa1ce 100644 3 | --- a/vendor/magento/module-wishlist/Controller/Index/Plugin.php 4 | +++ b/vendor/magento/module-wishlist/Controller/Index/Plugin.php 5 | @@ -75,7 +75,9 @@ class Plugin 6 | if (!$this->customerSession->getBeforeWishlistUrl()) { 7 | $this->customerSession->setBeforeWishlistUrl($this->redirector->getRefererUrl()); 8 | } 9 | - $this->customerSession->setBeforeWishlistRequest($request->getParams()); 10 | + $data = $request->getParams(); 11 | + unset($data['login']); 12 | + $this->customerSession->setBeforeWishlistRequest($data); 13 | $this->customerSession->setBeforeRequestParams($this->customerSession->getBeforeWishlistRequest()); 14 | $this->customerSession->setBeforeModuleName('wishlist'); 15 | $this->customerSession->setBeforeControllerName('index'); 16 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/CLEANUP_PATCH_COMPOSER_2.3.2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/CLEANUP_PATCH_COMPOSER_2.3.2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/Catalog_pagination_issue_on_Elasticsearch_6_composer-2019-10-11-08-07-41.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-elasticsearch/Model/ResourceModel/Fulltext/Collection/SearchResultApplier.php b/vendor/magento/module-elasticsearch/Model/ResourceModel/Fulltext/Collection/SearchResultApplier.php 2 | index b15d99dcc2d..3ae2d384782 100644 3 | --- a/vendor/magento/module-elasticsearch/Model/ResourceModel/Fulltext/Collection/SearchResultApplier.php 4 | +++ b/vendor/magento/module-elasticsearch/Model/ResourceModel/Fulltext/Collection/SearchResultApplier.php 5 | @@ -50,6 +50,7 @@ class SearchResultApplier implements SearchResultApplierInterface 6 | foreach ($this->searchResult->getItems() as $item) { 7 | $ids[] = (int)$item->getId(); 8 | } 9 | + $this->collection->setPageSize(null); 10 | $this->collection->getSelect()->where('e.entity_id IN (?)', $ids); 11 | $orderList = join(',', $ids); 12 | $this->collection->getSelect()->reset(\Magento\Framework\DB\Select::ORDER); 13 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/Catalog_pagination_issue_on_Elasticsearch_6_composer-2019-10-11-08-07-41.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/Catalog_pagination_issue_on_Elasticsearch_6_composer-2019-10-11-08-07-41.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/DB_CLEANUP_SCRIPT_v2.php.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/DB_CLEANUP_SCRIPT_v2.php.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch 2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch 2.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MAGETWO-98833_composer_patch-2019-04-15-04-38-57.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-35514-2.4.0-CE-composer-2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MC-35514-2.4.0-CE-composer-2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-35984-2.4.0-CE-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MC-35984-2.4.0-CE-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-38509-composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-customer/view/frontend/web/js/block-submit-on-send.js b/vendor/magento/module-customer/view/frontend/web/js/block-submit-on-send.js 2 | index b941ec7a254..75f4ee60976 100644 3 | --- a/vendor/magento/module-customer/view/frontend/web/js/block-submit-on-send.js 4 | +++ b/vendor/magento/module-customer/view/frontend/web/js/block-submit-on-send.js 5 | @@ -14,9 +14,15 @@ define([ 6 | 7 | dataForm.submit(function () { 8 | $(this).find(':submit').attr('disabled', 'disabled'); 9 | + 10 | + if (this.isValid === false) { 11 | + $(this).find(':submit').prop('disabled', false); 12 | + } 13 | + this.isValid = true; 14 | }); 15 | dataForm.bind('invalid-form.validate', function () { 16 | $(this).find(':submit').prop('disabled', false); 17 | + this.isValid = false; 18 | }); 19 | }; 20 | }); 21 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-38509-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MC-38509-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-43048__set_rate_limits__2.3.7-p1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MC-43048__set_rate_limits__2.3.7-p1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MC-43048__set_rate_limits__2.4.3.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MC-43048__set_rate_limits__2.4.3.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-10441_EE_2.2.3_v3.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-10441_EE_2.2.3_v3.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-10600_EE_2.2.3_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-10600_EE_2.2.3_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-10974_EE_2.2.3_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-10974_EE_2.2.3_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-10993_EE_2.2.4_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-10993_EE_2.2.4_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11059_EE_2.2.3_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11059_EE_2.2.3_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11106_EE_2.2.4_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-email/Model/AbstractTemplate.php b/vendor/magento/module-email/Model/AbstractTemplate.php 2 | index fa9d28074bf..81e993fad76 100644 3 | --- a/vendor/magento/module-email/Model/AbstractTemplate.php 4 | +++ b/vendor/magento/module-email/Model/AbstractTemplate.php 5 | @@ -534,10 +534,9 @@ abstract class AbstractTemplate extends AbstractModel implements TemplateTypesIn 6 | */ 7 | public function setForcedArea($templateId) 8 | { 9 | - if ($this->area) { 10 | - throw new \LogicException(__('Area is already set')); 11 | + if (!isset($this->area)) { 12 | + $this->area = $this->emailConfig->getTemplateArea($templateId); 13 | } 14 | - $this->area = $this->emailConfig->getTemplateArea($templateId); 15 | return $this; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11106_EE_2.2.4_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11106_EE_2.2.4_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11263_EE_2.2.4_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-google-analytics/view/frontend/web/js/google-analytics.js b/vendor/magento/module-google-analytics/view/frontend/web/js/google-analytics.js 2 | index cd6292b39e9..60a131ae746 100644 3 | --- a/vendor/magento/module-google-analytics/view/frontend/web/js/google-analytics.js 4 | +++ b/vendor/magento/module-google-analytics/view/frontend/web/js/google-analytics.js 5 | @@ -53,7 +53,7 @@ define([ 6 | } 7 | 8 | // Process orders data 9 | - if (config.ordersTrackingData.length) { 10 | + if (config.ordersTrackingData.hasOwnProperty('currency')) { 11 | ga('require', 'ec', 'ec.js'); 12 | 13 | //Set currency code 14 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11263_EE_2.2.4_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11263_EE_2.2.4_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.13_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.13_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.14_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.14_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.4_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.4_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.5_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.1.5_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.0_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.0_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.2_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.2_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.4_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11304_EE_2.2.4_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-11605_EE_2.2.2_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-11605_EE_2.2.2_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-12158_EE_2.2.5_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-12158_EE_2.2.5_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-12899_EE_2.2.3_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-12899_EE_2.2.3_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-13203_EE_2.2.4_V1_COMPOSER.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php b/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 2 | index dcb977bfa2a..a398c7c0c61 100644 3 | --- a/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 4 | +++ b/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 5 | @@ -93,7 +93,8 @@ class TemporaryStorage 6 | self::FIELD_ENTITY_ID, 7 | self::FIELD_SCORE, 8 | ], 9 | - $data 10 | + $data, 11 | + \Magento\Framework\DB\Adapter\AdapterInterface::REPLACE 12 | ); 13 | } 14 | return $table; 15 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-13203_EE_2.2.4_V1_COMPOSER.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-13203_EE_2.2.4_V1_COMPOSER.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-15136_EE_2.2.6_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-15136_EE_2.2.6_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-17078_EE_2.2.5_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-17078_EE_2.2.5_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-18980_EE_2.2.6_COMPOSER_v1.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-analytics/Model/Cryptographer.php b/vendor/magento/module-analytics/Model/Cryptographer.php 2 | index 6905eee372a..4236508cf78 100644 3 | --- a/vendor/magento/module-analytics/Model/Cryptographer.php 4 | +++ b/vendor/magento/module-analytics/Model/Cryptographer.php 5 | @@ -124,7 +124,11 @@ class Cryptographer 6 | */ 7 | private function validateCipherMethod($cipherMethod) 8 | { 9 | - $methods = openssl_get_cipher_methods(); 10 | + $methods = array_map( 11 | + 'strtolower', 12 | + openssl_get_cipher_methods() 13 | + ); 14 | + $cipherMethod = strtolower($cipherMethod); 15 | return (false !== array_search($cipherMethod, $methods)); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-18980_EE_2.2.6_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-18980_EE_2.2.6_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-19391_EE_2.3.1_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-19391_EE_2.3.1_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-19640_EE_2.3.0_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-19640_EE_2.3.0_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-23505_EE_2.2.4_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-23505_EE_2.2.4_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-24597_EE_2.2.9_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-24597_EE_2.2.9_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-26831_EE_2.3.4_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-quote-analytics/etc/reports.xml b/vendor/magento/module-quote-analytics/etc/reports.xml 2 | index f57012df233..325901189dc 100644 3 | --- a/vendor/magento/module-quote-analytics/etc/reports.xml 4 | +++ b/vendor/magento/module-quote-analytics/etc/reports.xml 5 | @@ -6,7 +6,7 @@ 6 | */ 7 | --> 8 | 9 | - 10 | + 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-26831_EE_2.3.4_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-26831_EE_2.3.4_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-27623_EE_2.3.2-p2_COMPOSER_v1.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-customer/Model/Vat.php b/vendor/magento/module-customer/Model/Vat.php 2 | index 123a9eef4b7..d1144c2e7a6 100644 3 | --- a/vendor/magento/module-customer/Model/Vat.php 4 | +++ b/vendor/magento/module-customer/Model/Vat.php 5 | @@ -44,7 +44,7 @@ class Vat 6 | * WSDL of VAT validation service 7 | * 8 | */ 9 | - const VAT_VALIDATION_WSDL_URL = 'http://ec.europa.eu/taxation_customs/vies/services/checkVatService?wsdl'; 10 | + const VAT_VALIDATION_WSDL_URL = 'https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl'; 11 | 12 | /** 13 | * Config path to option that enables/disables automatic group assignment based on VAT 14 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-27623_EE_2.3.2-p2_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-27623_EE_2.3.2-p2_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-28559_EE_2.3.5-p1_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-catalog-graph-ql/etc/schema.graphqls b/vendor/magento/module-catalog-graph-ql/etc/schema.graphqls 2 | index d4b98b311fc..19ffe4be96f 100644 3 | --- a/vendor/magento/module-catalog-graph-ql/etc/schema.graphqls 4 | +++ b/vendor/magento/module-catalog-graph-ql/etc/schema.graphqls 5 | @@ -9,7 +9,7 @@ type Query { 6 | currentPage: Int = 1 @doc(description: "Specifies which page of results to return. The default value is 1."), 7 | sort: ProductAttributeSortInput @doc(description: "Specifies which attributes to sort on, and whether to return the results in ascending or descending order.") 8 | ): Products 9 | - @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Products") @doc(description: "The products query searches for products that match the criteria specified in the search and filter attributes.") @cache(cacheIdentity: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\Identity") 10 | + @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Products") @doc(description: "The products query searches for products that match the criteria specified in the search and filter attributes.") 11 | category ( 12 | id: Int @doc(description: "Id of the category.") 13 | ): CategoryTree 14 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-28559_EE_2.3.5-p1_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-28559_EE_2.3.5-p1_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_3_x-p1__CAPTCHA_COMPOSER.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_3_x-p1__CAPTCHA_COMPOSER.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_3_x-p1__CAPTCHA_GIT.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_3_x-p1__CAPTCHA_GIT.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_4_x-p1__CAPTCHA_COMPOSER.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_4_x-p1__CAPTCHA_COMPOSER.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_4_x-p1__CAPTCHA_GIT.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-33093____2_4_x-p1__CAPTCHA_GIT.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43395_EE_2.4.3-p1_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43395_EE_2.4.3-p1_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43395_EE_2.4.3-p1_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43395_EE_2.4.3-p1_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.3.4_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.3.4_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.3.4_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.3.4_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.2-p2_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.2-p2_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.2-p2_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.2-p2_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.3-p1_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.3-p1_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.3-p1_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-43443_EE_2.4.3-p1_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-7256_EE_2.1.7_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-catalog-search/Block/Advanced/Result.php b/vendor/magento/module-catalog-search/Block/Advanced/Result.php 2 | index 76e15ecd6a5..8f75f062987 100644 3 | --- a/vendor/magento/module-catalog-search/Block/Advanced/Result.php 4 | +++ b/vendor/magento/module-catalog-search/Block/Advanced/Result.php 5 | @@ -96,8 +96,12 @@ class Result extends Template 6 | 7 | $availableOrders = $category->getAvailableSortByOptions(); 8 | unset($availableOrders['position']); 9 | + $availableOrders['relevance'] = __('Relevance'); 10 | 11 | - $this->getChildBlock('search_result_list')->setAvailableOrders($availableOrders); 12 | + $this->getChildBlock('search_result_list') 13 | + ->setAvailableOrders($availableOrders) 14 | + ->setDefaultDirection('desc') 15 | + ->setSortBy('relevance'); 16 | } 17 | 18 | /** 19 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-7256_EE_2.1.7_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-7256_EE_2.1.7_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-7392_EE_2.2.1_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-7392_EE_2.2.1_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-7868_EE_2.2.1_v1_composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-7868_EE_2.2.1_v1_composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-8007_EE_2.2.0_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-8007_EE_2.2.0_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-8215_EE_2.2.2_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-8215_EE_2.2.2_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-8371_EE_2.2.1_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-8371_EE_2.2.1_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-8623_EE_2.2.0_v1.composer.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/module-google-tag-manager/Model/Plugin/Quote/SetGoogleAnalyticsOnCartRemove.php b/vendor/magento/module-google-tag-manager/Model/Plugin/Quote/SetGoogleAnalyticsOnCartRemove.php 2 | index d5a5dd20620..e14fc0d3091 100644 3 | --- a/vendor/magento/module-google-tag-manager/Model/Plugin/Quote/SetGoogleAnalyticsOnCartRemove.php 4 | +++ b/vendor/magento/module-google-tag-manager/Model/Plugin/Quote/SetGoogleAnalyticsOnCartRemove.php 5 | @@ -44,7 +44,9 @@ class SetGoogleAnalyticsOnCartRemove 6 | public function afterRemoveItem(\Magento\Quote\Model\Quote $subject, $result, $itemId) 7 | { 8 | $item = $subject->getItemById($itemId); 9 | - $this->setItemForTriggerRemoveEvent($this->helper, $this->registry, $item, $item->getQty()); 10 | + if ($item) { 11 | + $this->setItemForTriggerRemoveEvent($this->helper, $this->registry, $item, $item->getQty()); 12 | + } 13 | 14 | return $result; 15 | } 16 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-8623_EE_2.2.0_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-8623_EE_2.2.0_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-9013_EE_2.2.2_composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-9013_EE_2.2.2_composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-9353_EE_2.2.2_v1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-9353_EE_2.2.2_v1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-9590_EE_2.2.0_COMPOSER_v2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php b/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 2 | index dcb977b..ee15537 100644 3 | --- a/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 4 | +++ b/vendor/magento/framework/Search/Adapter/Mysql/TemporaryStorage.php 5 | @@ -93,7 +93,8 @@ class TemporaryStorage 6 | self::FIELD_ENTITY_ID, 7 | self::FIELD_SCORE, 8 | ], 9 | - $data 10 | + $data, 11 | + \Magento\Framework\DB\Adapter\AdapterInterface::INSERT_ON_DUPLICATE 12 | ); 13 | } 14 | return $table; 15 | -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-9590_EE_2.2.0_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-9590_EE_2.2.0_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MDVA-9718_EE_2.2.3_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MDVA-9718_EE_2.2.3_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/MPERF-10509-EE-2019-03-13-06-32-19.diff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/known-issues-patches-attached/assets/MPERF-10509-EE-2019-03-13-06-32-19.diff.zip -------------------------------------------------------------------------------- /src/troubleshooting/known-issues-patches-attached/assets/PRODSECBUG-2432_EE_2.1.17_composer.patch: -------------------------------------------------------------------------------- 1 | --- 2 | vendor/magento/framework/App/Router/ActionList.php | 5 ++++- 3 | 1 file changed, 4 insertions(+), 1 deletion(-) 4 | 5 | diff --git a/vendor/magento/framework/App/Router/ActionList.php b/vendor/magento/framework/App/Router/ActionList.php 6 | index ea22fd6ab5b..ada0489ba90 100644 7 | --- a/vendor/magento/framework/App/Router/ActionList.php 8 | +++ b/vendor/magento/framework/App/Router/ActionList.php 9 | @@ -1,6 +1,5 @@ 10 | Detail 9 | 10 | Error is similar to the following: 11 | 12 | ```terminal 13 | Cloning into 'magento2'... 14 | Permission denied (publickey). 15 | fatal: The remote end hung up unexpectedly 16 | ``` 17 | 18 |

Solution

19 | 20 | Upload your SSH key to GitHub as discussed in [the GitHub help page](https://help.github.com/articles/generating-ssh-keys) . -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/drop-shipping-picks-up-wrong-address.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Drop shipping picks up wrong address 3 | labels: 2.3.x,Inventory,Magento Commerce,Magento Commerce Cloud,shipping,Adobe Commerce,cloud infrastructure,on-premises,Magento Open Source 4 | --- 5 | 6 | ## Issue 7 | 8 | The shipping solution does not pick up the address of the product's source. 9 | 10 | ## Affected products and versions 11 | 12 | * Adobe Commerce on cloud infrastructure (all versions), with Magento Inventory installed 13 | * Adobe Commerce on-premises 2.3.0 and later, with Magento Inventory installed 14 | * Magento Open Source 2.3.0 and later, with Magento Inventory installed 15 | 16 | ### Cause 17 | 18 | Magento Inventory does not currently support using drop shipping rates calculation based on source address during checkout. Instead the default store address from the config is used in all cases. 19 | 20 | ## Related Reading 21 | 22 | * [Magento Inventory FAQ](https://github.com/magento/inventory/wiki/MSI-FAQs) in GitHub. 23 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/error-after-logging-in-to-the-magento-admin.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Error after logging in to the Commerce Admin 3 | labels: 2.x.x,Magento Commerce,Magento Commerce Cloud,admin,base URL,base_url,error,how to,slash,Adobe Commerce,cloud infrastructure 4 | --- 5 | 6 | This article provides a solution for the issue where you receive an error message saying that the requested URL was not found on this server. 7 | 8 | ### Details 9 | 10 | The requested URL /magento2index.php/admin/admin/dashboard/index/key/0c81957145a968b697c32a846598dc2e/ was not found on this server. 11 | 12 | Note the lack of a slash character between `magento2` and `index.php` in the URL. 13 | 14 | ### Solution 15 | 16 | The base URL is not correct. The base URL must: 17 | 18 | * Start with `http://` or `https://` 19 | * End with a slash ( `/` ) 20 | * Match the case of the `web/unsecure/base_url` record in the `core_config_data` database table 21 | 22 | Re-run the installation using a valid value. 23 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/installation-xdebug-maximum-function-nesting-level-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Installation xdebug maximum function nesting level error 3 | labels: Magento Commerce,PHP Fatal Error,how to,level,nesting,xdebug,Adobe Commerce 4 | --- 5 | 6 | This article provides a fix for the xdebug maximum function nesting level error during installation. 7 | 8 | ## Details 9 | 10 | During Adobe Commerce installation, a message similar to the following displays: 11 | 12 | `PHP Fatal error: Maximum function nesting level of '100' reached, aborting! in /ClassLoader.php` 13 | 14 | It is strongly recommended that you DO NOT USE `xdebug` on a Production environment! 15 | 16 | ## Solution 17 | 18 | There is a known issue with `xdebug` that can affect Adobe Commerce installations or access to the storefront or Commerce Admin after installation. 19 | 20 | For details, see [Known issue with xdebug](https://support.magento.com/hc/en-us/articles/360034242212) in our support knowledge base. 21 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/known-issues-that-affect-installation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Known issues that affect xdebug installation 3 | labels: Apache,PHP,exception,extension,fatal error,how to,xdebug,Admin 4 | --- 5 | 6 | This article provides a solution for when you experience an exception error when you use the optional PHP extension `xdebug`. 7 | 8 | * During installation 9 | * Accessing either the Commerce Admin or storefront after a successful installation 10 | 11 | Sample exception: 12 | 13 | ```php 14 | Fatal error: Maximum function nesting level of '100' reached, aborting! 15 | ``` 16 | 17 | To resolve this issue, you can: 18 | 19 | * Disable the `xdebug` extension. 20 | * Set the value of `xdebug.max_nesting_level` to a value of 200 or more. For more information, see [xdebug documentation](http://xdebug.org/docs/basic#max_nesting_level). 21 | 22 | After you change the configuration of or disable `xdebug`, restart Apache: 23 | 24 | * CentOS: `sudo service httpd restart` 25 | * Ubuntu: `sudo service apache2 restart` 26 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/magento-2.3.6-endless-spinner-displayed-on-address-save.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adobe Commerce 2.3.6: endless spinner displayed on address save" 3 | labels: 2.3.6,Magento Commerce,Vertex,known issues,spinner,troubleshooting,Adobe Commerce 4 | --- 5 | 6 | This article describes a known Adobe Commerce 2.3.6 issue, where the waiting spinner is displayed indefinitely when saving an address in My account on the storefront. 7 | 8 | ## Affected products and versions 9 | 10 | * Adobe Commerce 2.3.6 with Vertex integration enabled (Firefox browser only) 11 | 12 | ## Issue 13 | 14 | When saving an address in My account section on the storefront, sometimes the waiting spinner is displayed indefinitely due to an error in Vertex core JS. 15 | 16 | ## Workaround 17 | 18 | Workaround: use an alternative browser to Firefox. 19 | 20 | The issue was fixed in Adobe Commerce 2.3.1. 21 | 22 | ## Related reading 23 | 24 | * [Different addresses not allowed when unselecting 'My billing and shipping address are the same' using VertexAddress Cleansing](https://support.magento.com/hc/en-us/articles/360046998952) in our support knowledge base. 25 | * [Adobe Commerce 2.4.1 Vertex Address validation message post address update](https://support.magento.com/hc/en-us/articles/360050139631) in our support knowledge base. 26 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/turn-off-hourly-amazon-emails-when-using-magento.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Turn off hourly Amazon emails when using Adobe Commerce 3 | labels: Amazon,Magento Commerce,Magento Commerce Cloud,email,troubleshooting,Adobe Commerce 4 | --- 5 | 6 | ## Question 7 | 8 | I receive an email from Amazon every hour. Is the module doing this? 9 | 10 | ## Answer 11 | 12 | Yes, in order to keep the systems continuously syncing, Adobe Commerce fetches reports from Amazon and reconciles the information against your Adobe Commerce catalog, and sends you notification emails based on these reports every hour. You have the ability to opt out of these notification report emails if you choose. 13 | 14 | ## To opt out of these emails: 15 | 16 | Follow these instructions for [Updating Notification Preferences on Amazon's site](https://sellercentral.amazon.com/gp/help/external/G871). 17 | -------------------------------------------------------------------------------- /src/troubleshooting/miscellaneous/updater-application-is-not-available-error.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: '"Updater application is not available" error' 3 | labels: 2.2.x,2.3.x,Magento Commerce,how to,install,update,updater,web setup wizard,Adobe Commerce,on-premises,Magento Open Source 4 | --- 5 | 6 | This article talks about the solution for the "updater application is not available" issue you might face when trying to update/install Adobe Commerce on-premises using the Web Setup Wizard. 7 | 8 | ## Issue 9 | 10 | The following message is displayed in the readiness check: 11 | 12 | ![Screen_Shot_2019-08-29_at_1.39.12_PM.png](assets/Screen_Shot_2019-08-29_at_1.39.12_PM.png) 13 | 14 | ## Affected products/versions 15 | 16 | * Adobe Commerce on-premises 2.2.x, 2.3.x 17 | * Magento Open Source 2.2.x, 2.3.x 18 | 19 | 20 | ## Solution 21 | 22 | To resolve this issue, see if there is a `/update` directory that contains files and subdirectories. Otherwise, see [Set up the updater](https://devdocs.magento.com/guides/v2.3/comp-mgr/updater/update-updater.html) in our developer documentation. 23 | -------------------------------------------------------------------------------- /src/troubleshooting/payments/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6371371673357,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6371371673357.json","html_url":"https://support.magento.com/hc/en-us/sections/6371371673357-Payments","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-05-20T17:06:32Z","updated_at":"2022-05-20T17:06:32Z","name":"Payments","description":"Troubleshooting solutions for issues with payments in Adobe Commerce.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/BUNDLE-2554_EE_2.3.5-p1.composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/BUNDLE-2554_EE_2.3.5-p1.composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/BUNDLE-2670-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/BUNDLE-2670-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MC42674-composer.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MC42674-composer.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MDVA-12964_EE_2.2.5_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MDVA-12964_EE_2.2.5_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MDVA-16643_EE_2.3.0_COMPOSER_v1.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MDVA-16643_EE_2.3.0_COMPOSER_v1.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MDVA-17212_EE_2.1.0_v1.composer-2019-03-05-12-05-22.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MDVA-17212_EE_2.1.0_v1.composer-2019-03-05-12-05-22.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MDVA-5914_EE_2.1.9_COMPOSER_v3.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MDVA-5914_EE_2.1.9_COMPOSER_v3.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/MDVA-8609_EE_2.2.2_COMPOSER_v2.patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/MDVA-8609_EE_2.2.2_COMPOSER_v2.patch.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/PATCH_SUPEE-11085_EE_1.14.4.0_v1-2019-02-28-04-59-38.sh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/PATCH_SUPEE-11085_EE_1.14.4.0_v1-2019-02-28-04-59-38.sh.zip -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/magento_paypal_settings_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/magento_paypal_settings_2.4.1.png -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/paypal_allow_multiple_payments_per_invoice_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/paypal_allow_multiple_payments_per_invoice_id.png -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/transact-dll_web-console_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/transact-dll_web-console_response.png -------------------------------------------------------------------------------- /src/troubleshooting/payments/assets/web-console_network_preserve-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/payments/assets/web-console_network_preserve-log.png -------------------------------------------------------------------------------- /src/troubleshooting/site-down-or-unresponsive/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6765557224589,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6765557224589.json","html_url":"https://support.magento.com/hc/en-us/sections/6765557224589-Site-down-or-unresponsive","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-06-08T18:27:08Z","updated_at":"2022-06-08T18:27:08Z","name":"Site down or unresponsive","description":"Troubleshooting and debugging steps when your Adobe Commerce site is unresponsive or down. ","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/site-down-or-unresponsive/assets/update_exists_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/site-down-or-unresponsive/assets/update_exists_0.png -------------------------------------------------------------------------------- /src/troubleshooting/site-down-or-unresponsive/assets/updated_site_down_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/site-down-or-unresponsive/assets/updated_site_down_1.jpeg -------------------------------------------------------------------------------- /src/troubleshooting/site-down-or-unresponsive/assets/updates_exist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/site-down-or-unresponsive/assets/updates_exist_1.png -------------------------------------------------------------------------------- /src/troubleshooting/site-down-or-unresponsive/site-down-troubleshooting-diagram.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Site down troubleshooting diagram 3 | labels: Magento Commerce,Magento Commerce C,site down,troubleshooting,diagram,Adobe Commerce 4 | --- 5 | 6 | This Adobe Commerce site down troubleshooting diagram can be used to identify and resolve causes of a site down. 7 | 8 | ![site down troubleshooting diagram image](assets/updated_site_down_1.jpeg) 9 | -------------------------------------------------------------------------------- /src/troubleshooting/storefront/.group.json: -------------------------------------------------------------------------------- 1 | {"section":{"id":6651333586445,"url":"https://magento.zendesk.com/api/v2/help_center/en-us/sections/6651333586445.json","html_url":"https://support.magento.com/hc/en-us/sections/6651333586445-Storefront","category_id":115000200533,"position":0,"sorting":"manual","created_at":"2022-06-03T12:30:45Z","updated_at":"2022-06-03T12:30:45Z","name":"Storefront","description":"Troubleshooting solutions for site storefront issues, including Checkout issues.","locale":"en-us","source_locale":"en-us","outdated":false,"parent_section_id":null,"theme_template":"section_page"}} 2 | -------------------------------------------------------------------------------- /src/troubleshooting/storefront/assets/all_store_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/storefront/assets/all_store_views.png -------------------------------------------------------------------------------- /src/troubleshooting/storefront/assets/image_roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/storefront/assets/image_roles.png -------------------------------------------------------------------------------- /src/troubleshooting/storefront/assets/image_roles_not_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/storefront/assets/image_roles_not_set.png -------------------------------------------------------------------------------- /src/troubleshooting/storefront/assets/open_product_page_magento_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/knowledge-base/394302ef21c96eb22d11ce6bce37a1967a22506b/src/troubleshooting/storefront/assets/open_product_page_magento_2.4.1.png -------------------------------------------------------------------------------- /wiki: -------------------------------------------------------------------------------- 1 | ## Welcome to the Adobe Commerce Support Knowledge Base! 2 | This repository contains the markdown source of articles, published in the Adobe Commerce Support Knowledge Base. 3 | 4 | ### Become a contributor 5 | Getting started with our contribution program is easy. You can start with a simple page edit, then work your way up to major revisions and new topics. The more participation we have from the Magento community, the better the docs are for everyone! 6 | To start contributing, see [Contributing](https://github.com/magento/knowledge-base/blob/main/.github/CONTRIBUTING.md) to Knowledge Base. 7 | --------------------------------------------------------------------------------