-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Description
Magento 2.0.0, Release Candidate 2 (CE)
Known Issues
This page discusses known issues in Magento 2.0.0, Release Candidate 2 (CE).
We have identified the following known issues in this release:
- Custom Timezone setting does not work properly for all stores
- Catalog Event countdown ticker should not be cached
- Bundle products in sample data is broken
- "Does this have a weight?" Yes/No Product field not working for bundle product
- Custom Admin URL with https is enabled with errors = "No"
- Data collector backup not working on some configurations
- Inline Translations not working correctly for phrases with special character
- Reports Refresh Lifetime Statistics feature not working
- Session locking
- Reindexing from Magento Admin not available
- Cart price rule is not applied
- Pinch zoom not working on Storefront Gallery
- If you change page layout on grid, then the node of this page will be removed from hierarchy and Custom Theme will be changed to "Magento Blank"
- More specific CatalogPermission doesn't override general CatalogPermission
- Totals are wrong if discount is applied when placing order from Admin
- Uncacheable blocks being cached
- Product API does not work properly for non-default store code
- xdebug
Custom Timezone setting does not work properly for all stores
When installing Magento on more than one website, or with multiple stores, all time zones revert to the first time zone you set during installation.
Catalog Event countdown ticker should not be cached
Magento currently caches the Catalog Event countdown ticker. If you enable the ticker on the Product Category and Product View pages, the Countdown counter on those pages will display the wrong time.
Bundle products in sample data is broken
Bundle products in the Magento Sample data are not available from the Magento frontend. It is available from the Magento Admin with no title.
Eway Method is missing from payment functionality matrix report
The Eway method is missing from the Payment Functionality Matrix section of the Configuration report. If you generate a new configuration report from System > System Report, the Eway method is missing.
Relative path in data collector backup does not work in nginx
The Data Collector backup returns relative, not absolute, paths.
Vimeo video player does not contain fullscreen mode button and video title
The video title and fullscreen mode button are missing from the Vimeo video player.
"Does this have a weight?" Yes/No Product field not working for bundle product
When creating a bundle product from the Products > Catalog page, Magento displays this prompt, "Does this have a weight?" Even if you answer yes, Magento does not provide a field for entering the product weight.
When creating a bundle product from the Products > Catalog page, Magento displays this prompt, "Does this have a weight?" If you answer no, Magento provides a field for entering the product weight.
Custom Admin URL with https is enabled with errors = "No"
The Admin panel shows multiple errors when you log in after running the "Custom Admin URL with https" test. Styles are lost, and the browser console displays multiple errors.
Data collector backup not working on some configurations
You cannot back up the data collector from the System > Support > Data Collector page when running the following configuration:
- CentOS
- Apache 2.2.15
- MySQL Server Version 5.6.26
- PHP Version 5.5.28
Inline Translations not working correctly for phrases with special characters
Magento's inline translation mechanism does not correctly translate phrases containing escaped characters, such as &, <, or >. Translation tables incorrectly display entries that contain escaped characters. For example, the translation table displays "Find Partners & Extensions" as "Find Partners & Extensions".
Reports Refresh Lifetime Statistics feature not working
You cannot run Refresh Lifetime Statistics from the Open Reports page.
Session locking
We recommend you use memcached for session storage. The Redis session handler in the phpredis
PHP extension does not support session locking, which might cause issues with distributed systems and applications that rely on Ajax.
Reindexing from Magento Admin not available
Unlike Magento 1, Magento 2 does not enable you to reindex using the Magento Admin. Instead, you must set up cron
(the UNIX task scheduler). In Magento 2, cron
is even more important; it is used for the following features:
- Catalog price rules
- Newsletters
- Generating Google sitemaps
- Customer Alerts/Notifications (product price change, product back in stock)
- Reindexing
- Private sales (Magento EE only)
- Automatic updating of currency rates
- All Magento e-mails (including order confirmation and transactional)
Cart price rule is not applied
The Cart Price rule is not applied as a Payment method condition. As a result, your storefront will not display any discount you create using the Cart Price rule.
Work-around: Use an alternate form of setting discount conditions.
Pinch zoom not working on Storefront Gallery
This issue affects only Android phones and tablets running Google Chrome.
Pinch zoom is not working on Android phones and tablets running running Google Chrome. Magento does not display the pinch-zoomed image of the Storefront Gallery and does not properly display the image on the Android tablet after you change display orientation from portrait to landscape.
SQL error after search in Billing Agreements field
An SQL error occurs, and your search fails, when you specify a date in the Updated At field of the Sales > Billing Agreements page.
Changing page layout on grid
Changing the home page of a CMS page results in its using the Magento Blank theme instead of the correct theme. In addition, the expected hierarchy does not display.
More specific CatalogPermission doesn't override general CatalogPermission
Specific catalog permissions do not override the general catalog permissions.
Totals are wrong if discount is applied when placing order from Admin
Magento does not correctly calculate an order total if you place an order from the Admin panel.
Uncacheable blocks being cached
Magento is currently caching pages that contain layouts that have non-cacheable blocks.
Product API does not work properly for non-default store code
If you submit a REST POST /V1/products
request using a store code that is not default
, the result is displayed on the default store.
xdebug
If you use the optional PHP extension xdebug
, you can encounter exceptions:
- During installation
- Accessing either the Magento Admin or storefront after a successful installation
Sample exception:
Fatal error: Maximum function nesting level of '100' reached, aborting!
Work-around: To resolve this issue, you can:
- Disable the
xdebug
extension. - Set the value of
xdebug.max_nesting_level
to a value of 200 or more. For more information, see xdebug documentation.
After you change the configuration of or disable xdebug
, restart Apache:
- CentOS:
sudo service httpd restart
- Ubuntu:
sudo service apache2 restart