I am using 'Extendware Full page cache' magento extension. how to programmatically clear product page cache in extendware.
To programmatically clear product page cache please follow http://vagento.com/magento-automatically-cache-refresh-using-cron/ site article. In this link it'll help you to Cache Refresh programmatically as well as you can set cron to Automatically Cache Refresh Using Cron.
let us know that'll help you or not.
Related
Is currently working on a new M2 2.3 site to replace my M1.
Almost done but I have found an issue with the cart and full page cache.
When full page cache is enable and I add a product to cart its all good. But when I move to another category and add another product the cart gets empty and start all over again.
If I disable the full page cache the cart works fine.
Anyone have an idea of what i might be?
The site is still in devolopment.
It might be related to the Magento_Persistent module. There is a native bug with FPC when you disable this module. The issue has been reported in the link below:
https://github.com/magento/magento2/issues/21614
The store works when I add an item, but when I click to checkout the link re-directs to the home page store. It’s the same when I click on Proceed to checkout. Before, I had the cache management disabled and now is enabled. Is this related or what could be causing this problem? Thanks so much for the help, with kind regards.
Try deleting all the cache files stored in the /var/cache folder in magento.
Using chrome console or firebug check to see if you have any JS error before redirecting
Check your web logs to see if you have any php errors on the checkout page
It's most likely to be a Javascript issue when the checkout button does not work. Remove your theme to fall back to the base theme then see if it works.
I fixed and these where the steps I took to make it work. However, before you do any of the following work disable your cache management:
Open Magento admin panel
Go to System>Cache Management
Check all Cache types and in the Actions box select refresh
Then select all Cache types and in the Actions box select disable
Also click Flush Magento Cache and Flush Cache Storage buttons
Now you are free to perform any changes to your store.
Now, if you upgraded and nothing works make sure that under:
System/Configuration -> Web – Default Pages /that your ‘Home page’ is listed under
‘CMS Home Page’. Also check:
System/Configuration -> Design – Packages /that your ‘Template’ is listed under
‘Current Package Name’. Otherwise default takes over.
Note: your template will still come up with all its features and buttons in your browser, even if no home page is setup; this is because of the previous version configuration.
If the ‘Home Page’ and ‘Template’ are not listed, add them and go into your File System and erase everything under ‘var/cache’ and ‘var/session’. Reload your home page: www.yourstore.com/magento/ it should work. After, all work is done enable your cache management.
Also, it’s good to check that your home page lands at the store, and to check - do the following:
Login to your Magento MySQL database.
Open the db [database_prefix] for your store.
Locate core_config_data.
Find the row with entry: 'web/unsecure/base_url' and 'web/secure/base_url' they should look like www.yourstore.com/magento/ or whatever you name your magento store file.
I had turned on Joomla cache for a while I came across that Joomla login username & password getting filled in automatically. So I turned of cache and happened to be working for the small period of time. Now I experience the same issue even when Joomla cache is turned off.
Given that Joomla automatically cache in the root folder. In the root, There is a folder called cache and inside there is a folder called pages. When it delete the pages folder it happens to be working fine.
How can I fix this? What could be the issue?
Most probably you have enabled auto fill options on your browser and your browser is filling them automatically when same page loads.
If you want to disable page cache, go to Plugin Manager and disable System - Cache plugin.
The website cache has nothing to do with forms being autofilled. That is a browser function.
I am using magento full page cache, EE 1.11.2. For some reason my secondary mobile theme is displaying on some of my catalog pages. e.g. two out of 6. This only happens with FPC on. It is reoccurring and happens on the same pages. The cache can be valid or invalid. I have not found any information on a topic similar to this. Any ideas or suggestions on how to solve this?
Running Magento 1.4 and I want to customize the admin Cache Storage Management page. I looked at the files in /app/design/adminhtml/default/default/template/system/cache , but none of them actually seem to have the content that is generated on the cache page. I also looked in /app/code/core/Mage/Adminhtml but didn't see anything in there to override. If someone could clue me into where the files might be or how I might override the page, I would be indebted to you.
See:
Mage/Adminhtml/Block/System/Cache.php
Mage/Adminhtml/Block/System/Cache/Edit.php
Mage/Adminhtml/Block/System/Cache/Form.php
Override them as normal.