Magento Enterprise 1.x
Problem:
Logging in to the Magento frontend customer login page (/customer/account/login/) fails. The form submits, but the page simply reloads and clears email/password fields. This is common when copying a site from one domain to another e.g. production domain to development domain.
Solution:
Check config value web/cookie/cookie_domain in core_config_data table. Update to match current domain or set to NULL (as needed).
Friday, March 25, 2016
Thursday, January 14, 2016
Magento Fatal error: Call to a member function getCode() on a non-object in app\code\core\Mage\Customer\Model\Session.php
Magento Enterprise 1.14.x
Problem:Magento fails with error:
Fatal error: Call to a member function getCode() on a non-object in \app\code\core\Mage\Customer\Model\Session.php on line 71
Solution:
Make sure file \app\etc\local.xml exists and is valid.
Problem:Magento fails with error:
Fatal error: Call to a member function getCode() on a non-object in \app\code\core\Mage\Customer\Model\Session.php on line 71
Solution:
Make sure file \app\etc\local.xml exists and is valid.
Friday, July 10, 2015
Magento Hack Fix to Remove Persistent '(Not Name?)' Link in Header
Problem: Magento Enterprise persistent shopping cart shows the following text in the page header: '(Not Name?)'
Solution:
Magento creates a dynamic header block in code and an unset or remove layout instruction doesn’t remove the block. In your local.xml, overwrite the block with an empty core/template block with the same name. i.e.
Solution:
Magento creates a dynamic header block in code and an unset or remove layout instruction doesn’t remove the block. In your local.xml, overwrite the block with an empty core/template block with the same name. i.e.
<!-- Hack fix to remove persistent '(Not Name?)' link top of page. --> <!-- unsetChild and remove actions do not work. --> <!-- Html generated here: app/code/core/Mage/Persistent/Block/Header/Additional.php --> <!-- Block created dynamically here: app/code/core/Mage/Persistent/Model/Observer.php see header.additional --> <block type="core/template" name="header.additional"/>
Magento Enterprise Aydus Design Package / Theme
Magento Enterprise: 1.13.x, 1.14.x
Theme base features (built for speed!):
Theme base features (built for speed!):
- Fully responsive. Boostrap / Foundation.
- Support for all major browsers and devices including IE9+
- AJAX add to cart and product upsell.
- AJAX quick view (support across all pages).
- AJAX newsletter signup.
- AJAX mini cart.
- Mega menu and promotional banners with hover intent.
- Email signup overlay.
- Online chat
- Related, upsell, and cross sell product carousels.
- Best selling products.
- Customers also bought products.
- Featured products.
- On sale products.
- New products.
- Custom responsive emails.
- Category page infinite scroll.
- Social meta tags.
- Social feeds e.g. blog, twitter, etc.
- Social sharing.
- Solr search.
- Custom fonts.
- Product image desktop/mobile friendly enlarge/zoom.
- Responsive video.
- Checkout trust symbols.
- Responsive CMS page templates.
- Admin updatable content.
- Enhanced admin banner management for complex responsive banners and banner scheduling.
- Custom web form support.
- Parallax framework.
- Full retina support.
- Swipe support on all major components.
- Google Analytics tracking for external and download links.
- Google Analytics tracking for AJAX components including related, upsell, and cross sell product clicks.
- Mobile click to call.
- Magento Enterprise FPC (full page cache) support.
- IE warning for old browser versions.
- AJAX error logging.
- Mobile optimized images.
- Mobile click delay removal.
- Mobile optimized animations.
- Browser header caching.
- CSS + JS minification and bundling.
- Sprites.
Tuesday, June 23, 2015
VitalSource Magento Integration/Extension
Problem:
No third party Vitalsource extension exists for Magento.
Solution:
Build custom Vitalsource extension to allow customers to purchase e-books via Magento and redeem their publications via Vitalsource (for three-way access to books: online, downloaded and mobile).
Customer Experience: customer purchases e-book from Magento store. Email order confirmation contains a link to instructions on how to redeem e-book. Order confirmation also contains a Vitalsource bookshelf code (for each item). Customer order history contain bookshelf codes for all items and also redemption links/instructions. To redeem an e-book, customers will visit Vitalsource .com directly, create an account or login to existing account, and enter bookshelf code (to redeem book).
No third party Vitalsource extension exists for Magento.
Solution:
Build custom Vitalsource extension to allow customers to purchase e-books via Magento and redeem their publications via Vitalsource (for three-way access to books: online, downloaded and mobile).
Customer Experience: customer purchases e-book from Magento store. Email order confirmation contains a link to instructions on how to redeem e-book. Order confirmation also contains a Vitalsource bookshelf code (for each item). Customer order history contain bookshelf codes for all items and also redemption links/instructions. To redeem an e-book, customers will visit Vitalsource .com directly, create an account or login to existing account, and enter bookshelf code (to redeem book).
Tuesday, December 31, 2013
Replace/Remove Non-Breaking Space in ASPDNSF XSLT
Problem: How to replace the non-breaking space character ( ) in an XSLT string.
Solution: Use the StrReplace function and string = &nbsp;
e.g.
<xsl:value-of select="aspdnsf:StrReplace(string, '&nbsp;', '')" disable-output-escaping="yes"/>
Solution: Use the StrReplace function and string = &nbsp;
e.g.
<xsl:value-of select="aspdnsf:StrReplace(string, '&nbsp;', '')" disable-output-escaping="yes"/>
Sunday, December 22, 2013
Windows Server 2012 and 2012 R2 Internet Download Speed Slow
Problem:
On a fresh installation of Windows Server 2012 or 2012 R2 and latest LAN drivers, internet download speeds and browsing are very very slow.
Solution:
Run the following in the cmd window:
netsh interface tcp set global ecncapability = disabled
On a fresh installation of Windows Server 2012 or 2012 R2 and latest LAN drivers, internet download speeds and browsing are very very slow.
Solution:
Run the following in the cmd window:
netsh interface tcp set global ecncapability = disabled
Subscribe to:
Posts (Atom)