I have noted that the Add new Task to a project is sending a request to /dashboard/users,
For me I am trying to run this on PHP 5.3 and making changes and I have noticed that, my project is hosted inside some nested directory and the call was being sent to the root and was having 404
I have changed
assets/js/dashboard/projectusers.js:12
var UserCollection = Backbone.Collection.extend({
model: UserModel,
url: 'dashboard/users',
});
to
var url = window.location.href;
var tempurl = url.split('dashboard')[0];
var UserCollection = Backbone.Collection.extend({
model: UserModel,
url: tempurl + 'dashboard/users',
});
Same thing done on
assets/js/dashboard/projectuserlist.js:10
I have noted that the Add new Task to a project is sending a request to /dashboard/users,
For me I am trying to run this on PHP 5.3 and making changes and I have noticed that, my project is hosted inside some nested directory and the call was being sent to the root and was having 404
I have changed
assets/js/dashboard/projectusers.js:12
to
Same thing done on assets/js/dashboard/projectuserlist.js:10
Now it is loading the users properly