Cannot Login in Frontend
Make sure the backend > System > Configuration > Web > Session Cookie Management > Cookie Domain is configured correctly for each store.
Related cards:
Allow Login Customers Only to Add Product to Cart
With system config:
+
If that's not what you want, we can do event-observer:
/**
* Event 'checkout_cart_product_add_before'
* @see Mage_Checkout_Model_Cart ::addProduct()
*
...
Products are not listed in frontend category page
Backend > System > Index Management > reindex
- Product Flat Data (optional)
- Category Products
When there is no payment methods on onepage checkout page
There are many reasons why a payment method is not listed or missing on the checkout page:
- admin > System > Configuration > Sales > Payment Methods >
- check that the payment methods are enabled
- check for min and max amount of the...
Search in Pagination
When there are input elements for search criteria in frontend grid with pagination block 'page/html_pager'
, the search params will be lost when the user click on page n
. This is because the URL links in the pager do not contain the search par...
Add new input type in product custom options
custom module productcoption
config.xml
<config>
<modules>
<Somemod_ProductCoption>
<version>0.0.1</version>
</Somemod_ProductCoption>
</modules>
<global>
<resources>
<productcopti...
Add dynamic block contents in category page
In backend > Catalog > Manage Categories, we can configure a category page and put it on the main menu. The page contents are rendered in
app\design\frontend\base\default\template\catalog\category\view.phtml
If we want to render an HTML tab...
Magento image load error: fileUploadErrorCantWrite
The error is coming from Mage_Catalog_Model_Product_Option_Type_File
but it is not interpreted in _getValidatorErrors()
. The error happens repeatedly for certain users and not other users.
In $fileInfo = $upload->getFileInfo($file);
, the e...
Set custom URL to 'Add to Cart' in Backend Product Page
admin > product page > Design > Custom Layout Update:
<reference name="content">
<block type="es/catalog_product_view_layoutUpdate_application" name="layoutupdate_application"/>
</reference>
<reference name="product.info">
<action ...
nginx config
See production grade nginx and docker config here.
Some notes on this:
- the PCI work was trial and error, we did set up, the external audit did penetration/probe testing, we adjusted settings...