http://kaban.ipr-test.in.ua/index.php/user/addmastercategory Failed to load resource: the server responded with a status of 404 (Not Found)
это мой ajax запрос
$.ajax({
type: 'POST',
dataType: 'json',
url: "/index.php/user/addmastercategory",
data: {category_id: category_id, parent_category_id: parent_category_id, is_par: is_par},
success: function (data) {
console.log(data);
if (data) {
location.reload();
}
},
error: function (data) {
alert('Возникла ошибка');
}
});
т.е я так понимаю что скрипт не находит контроллер user и его действие addmastercategory. На локалке все работает безотказно .
Где может быть проблема?