Hello!
My sitemap returns a 404. I checked all of the settings and found nothing wrong. I am running 3.0.6
All ideas appreciated! To be clear I am not talking about the google sitemap.
Hello!
My sitemap returns a 404. I checked all of the settings and found nothing wrong. I am running 3.0.6
All ideas appreciated! To be clear I am not talking about the google sitemap.
Hello!
My sitemap returns a 404. I checked all of the settings and found nothing wrong. I am running 3.0.6
All ideas appreciated! To be clear I am not talking about the google sitemap.
As we understand you mean the Sitemap page in your storefront. Please make sure that correct URL is specified for it in the HTML block. Please open the Content tab of your HTML block on the Design > Layouts page in the CS-Cart admin panel and check if the following URL is specified there:
If you mean something else, please clarify it in more detail.
Hello!
My sitemap returns a 404. I checked all of the settings and found nothing wrong. I am running 3.0.6
All ideas appreciated! To be clear I am not talking about the google sitemap.
If the SEO module is enabled on your store, try the following URL:
http://your_domain.com/index.php?dispatch=sitemap.view
and check the result
Hello,
Thanks for the suggestions. Unfortunately neither worked. This is the current url:
Thanks in advance!
Hello,
Thanks for the suggestions. Unfortunately neither worked. This is the current url:
Sitemap
Thanks in advance!
As eComLabs mentioned, please open the following URL if the SEO add-on is enabled:
http://your_domain.com/index.php?dispatch=sitemap.view
Copy the address from the address bar of your browser (for example, your_sitemap_url.html). Please open the Content tab of your HTML block on the Design > Layouts page in the CS-Cart admin panel and replace the following part of code:
with this one:
where your_sitemap_url.html is SEO name of your sitemap page. Click the Save button and check the result.
Hello,
Thanks for the suggestions. Unfortunately neither worked. This is the current url:
Sitemap
Thanks in advance!
Please share the URL of your website
Okay guys I got it fixed. Thank you both for your help!
Okay guys I got it fixed. Thank you both for your help!
What was the reason?
I used the info you gave me on the url. Mystified as to how the old url was no longer valid. Thanks for the help eComLabs!
I used the info you gave me on the url. Mystified as to how the old url was no longer valid. Thanks for the help eComLabs!
You are welcome!
Hello everyone, @ecomlabs @CS-Cart_team @davidwpotts I have the same problem, how can I solve this problem? A B I use the Advan ced site map plugin. When I activate nginxi, www.domain.com/sitemap.xml gives a 404 error. When I examined the documentation of the plugin, I found the following clue. but I don’t know how to do the solution described in this tip. I ask my friends who have knowledge about what I should add to which file to help me.
Problem solving
link404 error
As sitemaps files are not in a website root, the NGINX server should proxy such requests for the website (bypassing static files standard return). If at the XML sitemap request you receive the 404 server error (not to confuse with the 404 website page), it means proxying is configured incorrectly.
Hi!
The nginx configuration provided in our documentation covers this case:
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
Dear @CS-Cart_team , thank you for your valuable information, but I added the codes you provided to the nginx config file, restarted the services and cleared the cache, but the result did not change. Can you make a different suggestion?
I’m afraid it’s not enough to just copy this part and paste it somewhere in the nginx config. You will either need to rebuild your configuration to be based on this rule, or you can take the complete configuration provided in the documentation and use it on your server instead of your current one.