所以我试图通过AJAX调用将用户登录到Joomla。是否已经编写了一个登录脚本,我只能传递用户名和密码变量?我只是想使用下面的脚本,并希望找到正确的URL使用。这可能吗?
$('body').delegate('#login', 'click', function(e){
e.preventDefault();
$username = $('#username').val();
$password = $('#password').val();
$.ajax({
type: 'post',
url: 'ineedthisurl.php',
data: {username: $username, password: $password},
success: function(responseData){
window.location = $url;
},
error: function(responseData){
console.log('login script error');
}
});
});
答案 0 :(得分:3)
在以下位置找到相关脚本:
/components/com_users/controllers/users.php
花了一些时间玩,但我得到了它。