I'm trying to access my Django application through Moodle, I've been reviewing 3 ways:
External Tool (LTI)
External Database Connection
URL
The simplest I have found is through the URL resource, but the problem is that it is very inse...
Good morning
I'm trying to login from the openshift client (oc.exe) and whenever I do I get this error:
C:\Users\Tomas>oc login
Server [https://localhost:8443]: https://github.com/XXXX/XXXXX
error: invalid character '<' looking for be...
I have my php code for the connection to the database but it sends me that error on line 13 and 14, I can not find a solution, I attach my code
$con = mysqli_connect("localhost", "root", "","SaveMe");
$Usuario = $_POST["Usuario"];
$Contraseña...
I am trying to log in to a site urgently through Selenium. All the sites in which I try to log in I could except this one. After putting this part of the code shows me a Python 2.7 error:
Traceback (most recent call last):
File "<stdin>...
Good evening, stackOverflow colleagues, I have a problem when creating the next method that validates a login.
public Usuarios loginExist(String username, String password) {
try {
EntityManager em;
EntityTransaction t;...
Good day, today is a bright Sunday around here.
So I will not waste too much time.
The whole first part works great.
The problem is when SWITCH appears. there or verify that it is well logged but it does send me to the case page.
So I guess the...
I'm new to this. I am doing a login in .net mvc5 with bootstrap, I already made my connection with sql, I just want to know how to take the values that insert in "name" and "password" in sql when pressing the "login" button.
<form role=...
I have the following code:
<?php
session_start();
if (isset($_POST['token']) && $_POST['token'] !== '') {
//Contiene las variables de configuracion para conectar a la base de datos
include "../config/config.p...
Hello, I happen to have the following:
$("#frmAcceso").on('submit',function(e)
{
e.preventDefault();
logina=$("#logina").val();
clavea=$("#clavea").val();
if ((logina!="") && (clavea !=""))
{...
Good morning,
I am developing an incident resolution application in jsf2.0 and bdd postgres, the main features and I have lists but I require that the user can only enter once per user, I was using a static array in my controller @SessionScop...