Saneesh K V
Saneesh K V
Hello, PHP : 5.5.9 nginx: 1.4.6 Ubuntu : 14.04 After successful installation, when I access through the browser it redirects to the /session/login. I tried the solutions in other's similar...
Hello, I'm trying to build a mobile app using angular-drupal. After configure everything, when I call the user_login() in my controller, it shows 'NOT A VALID USER!' message. ``` myApp.controller("TestController",...
Hello, I'm new to Docker. I have successfully installed and using the command `docker-compose up` I'm able to run the servers too. But when I access the site `https://gandalf.dev` it...
`ThymeleafTemplateProcessor` class is not working as expected. - It showed error for `ServletContextTemplateResolver` and converted it to `ClassLoaderTemplateResolver`. - In the overrided function `writeTo()` it is not allowing to create...
Hello, My Controller looks like this: ``` mApp.controller('LoginController', ['$scope', 'UserResource', function($scope, UserResource) { $scope.submit = function(user) { console.log(user); UserResource.login({ "username" : user.name, "password": user.pass }).then( // Login success. function(data) {...