cancel
Showing results for 
Search instead for 
Did you mean: 

there is no 'delete category button' and İ can not edit or delete category.

there is no 'delete category button' and İ can not edit or delete category.

i have magento 1.9.2.2. my mod-security option is inactive but i can not edit or delete categories. 

10 REPLIES 10

Re: there is no 'delete category button' and İ can not edit or delete category.

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.

 

 

 

Re: there is no 'delete category button' and İ can not edit or delete category.

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. 

Re: there is no 'delete category button' and İ can not edit or delete category.

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. 


 

Re: there is no 'delete category button' and İ can not edit or delete category.

 

Which Magento version?

Re: there is no 'delete category button' and İ can not edit or delete category.

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.

Re: there is no 'delete category button' and İ can not edit or delete category.

hi, thanks for your reply. but i do not use nginex Smiley Happy

Re: there is no 'delete category button' and İ can not edit or delete category.

hi, i tried 1,8,0 to 1.9.2,3. i could not edit rhe categories

Re: there is no 'delete category button' and İ can not edit or delete category.

Which server are you using ? Can you check the JS Console and tell the error you are getting ?

Re: there is no 'delete category button' and İ can not edit or delete category.

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,