I have 2 store view currently, English and Indonesia
Added 1 page each for English and Indonesia respectively.
See Image 1:
See Image 2 :
On frontend, when I switched the store view, it returns a 404 error page. Any errors in my configuration?
You are getting 404 error Because you have different URL key. Once you have URL key same, it will work fine.
Related
I am working on odoo 10. What i want to do is simply show 404 page like we show in other website if the requested page doesn't exist.
I am sending email to client and in that email template there is a link to record but some times users with upper user roles deletes that specific record due to some reason. I want to show 404 page in this case.
You can just return website page 404 according to our condition.
return request.render('website.404')
i am trying to fix the following problem:
When i create a new product, i always give the english store a different url than the german store. On the frontend when i switch from the german store to the english store, it returns a 404 page. on the german product page the country id (de) is in the url (http://website/de/product1.html). But when i switch to the
english store the link looks like this: http://website/product1.html (without country id). And that gives me a 404 page!
Note: When i add the "en" country id to the url it works perfect.
can someone help me resolve this issue?
Magento Version 1.7.
Maybe try to change your english storeview base URL :
go to System -> Config then choose your english store view
then, in the config panel, go to general -> web
in "secure" -> Base URL uncheck "use website" and add en/ at the end of the URL.
do the same in in "unsecure"
I expect it will work.
I am doing a project in Magento.I have uploaded the project onto the server, the front end design of the project is showing correctly but when the admin login page is retrieved, its showing 404 error page not found.I have tried many solutions shown in the links below:
Magento 404 on Admin Page
But still it is not working.Can anyone suggest a solution for this?
I had a similar issue. After moving from one server to another admin showing 404. Problem was in configuration. In System->Configuration->Web->Secure->Use Secure URLs in Admin was set to "Yes", but https wasn't configured.
I'm in table core_config_data found row with path "web/secure/use_in_adminhtml" and set "value" = 0.
The problem is not widespread, but you can check this. Hope this helps
changing store on internal pages give 404 in magento. like if I am on a category page of english store - http://luxecoat.nextmp.net/english/men/leathers.html
and now when i change the store it gives me 404 error.
I have a problem with my Magento 1.5.0.1 installation.
Clicking on subcategories works fine and will send me to the proper URL and display products. When I click on a parent category however, I get a 403 forbidden error.
Does anyone know what the problem is?
There are a few reasons that a category link would 403.
My first guess would be that there is a directory in the web root with the same name as the category and you have URL suffixes disabled.
For example giving a top level category the URL key of 'media' while URL suffixes are disables will usually result in a 403.
Another possibility would be if you are using Apache and have mod_security enabled and the category name contains a work that mod_security doesn't like (e.g. select, insert & delete).