All Questions

1
answer

Laravel 5.6 query whereNotExist

I have a practice where you should add cars to an insurer and be able to register your insurance, and I'm trying to make a query that, when selecting an insurer from a list, I return all vehicles that are not in that insurer (including those tha...
asked on 28.08.2018 / 15:53
1
answer

How to recover the last id generated in oracle 11g

I'm trying to capture the last id registered in a table (USE ORACLE 11G) and searching the internet I found this post . I did not find much information in Spanish that's why I'm only using this post as a reference, but it does not wor...
asked on 29.06.2018 / 18:20
1
answer

How to load a large volume of data with Django Querysets?

I have a loading process in a Django project which from an excel file stores information in a Business model. My loading process works, the problem is that the execution time is too high due to the data volume of the excel input. Model.py...
asked on 14.05.2018 / 15:29
0
answers

Facebook Api problems when it is executed from cell phone browser

I made a login with facebook and it's perfect in the web browser but when I try to run it from my cell phone in chrome android it says there are problems with URL, which does not allow the URI entered. In the web of pc this does not happen....
asked on 25.08.2017 / 15:27
2
answers

Limit session time

I need help to limit the time of inactivity in HTML PHP My code is as follows: inicio-php<br> session_start();<br> if (isset($_SESSION['usuario'])) {<br> ?> <p>Aqui va mi codigo HTML</p> inicio-php<br>...
asked on 14.08.2017 / 22:16
0
answers

Capture data with Google People API

Cordial greeting I want to be able to capture data such as the basics (name, surname, email ...) and more specific ones such as the birthday and gender; this through a login button. All good with the basic data (I put code below). But I do not k...
asked on 18.08.2017 / 23:34
1
answer

do queries in firebase return an error callback?

Query in firebase returns some error function, I'm asking a question, but I will not always find something, how do I know if it's null? vm.settlements.child('liqui') .orderByChild("rut") .equalTo(employee....
asked on 01.08.2017 / 03:50
0
answers

Create block objects by assigning values to field many2many odoo8

I'm creating a functionality to create instances in bulk from a wizard, assigning values to some many2many fields, but when I try it I get an error: "Expected singleton: modelo3(167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,...
asked on 24.08.2017 / 09:23
1
answer

Circular dependence on ES6 classes using Angular

Hello! I have a circular dependency problem in an Angular project (4.3.X). In the app/models directory there are several files that represent the models received by the API. Scenario: // center.ts import {User} from './user';...
asked on 24.08.2017 / 10:42
1
answer

Dump MySQL From Client to Server in PHP / Symfony

I have this code with which I create backups of my database $dbname = $this->getParameter('database_name'); $host = $this->getParameter("database_host"); $user = $this->getParameter("database_user"); $pass = $this->...
asked on 31.07.2017 / 17:05