i have magento 1.9.2.2. my mod-security option is inactive but i can not edit or delete categories.
Hi,
You can go to Catalog -> Manage categories -> Click on any category you will get to edit the category as well as there Delete button in the right side top.
Please check and let me know if you have any other issues with edit or delete.
hi SubhraSuchharita;thanks for your answer, but i tried to do like the way you told. i select one of the categories i created but i can not see the details of the category in the right side. right side is always empty.
when i try to create a category (root or sub) i can see it under the root category. but when i select to edit the category, no id of the category or the knowladge about it in the right side
@kubilay wrote:i have magento 1.9.2.2. my mod-security option is inactive but i can not edit or delete categories.
Which Magento version?
This issue normally comes when usgin Nginx due to Nginx configuration.
You can find the following lines:
location / {
try_files $uri $uri/ /index.php?$query_string;
or
try_files $uri $uri/ /index.php?q=$uri&$args;
}
in your site's configuration (/etc/nginx/sites-available/yoursite.com).
Change it to:
location / {
try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
}
location @handler { ## Magento uses a common front handler
rewrite / /index.php;
}
Lemme know if it does not work.
hi, thanks for your reply. but i do not use nginex
hi, i tried 1,8,0 to 1.9.2,3. i could not edit rhe categories
Which server are you using ? Can you check the JS Console and tell the error you are getting ?
Hi, I was wondering if anyone has a solution for this, as all of the sudden I'm experiencing the same issue. I'm running Magento ver. 1.7.0.2.
Thanks,