Posts by Daniel Albuquerque • 21 points
5 posts
-
-1
votes1
answer1030
viewsA: Composer update problem - Laravel
You probably don’t have GIT installed, or git isn’t in your system’s PATH. Anyway I recommend you delete the VENDOR folder and run again in the install Composer
-
1
votes1
answer469
viewsA: Insert a select with more than one result
You need to do this using a loop, which for each "line" is made an Insert, see this example that makes a select and for each line makes a separate Insert: create or replace procedure P_EXEMPLO is…
oracleanswered Daniel Albuquerque 21 -
1
votes3
answers1233
viewsA: How to login to desktop application via web application?
If the application is to perform multiple requests for the web application, the ideal is to do a method on the authentication controller that returns a JWT(Json Web Token) and that you use this…
-
-2
votes2
answers98
viewsA: Send querystring in a PHP request
Dude, why don’t you use javascript to do this GET? You can use this here: <script type="text/javascript"> $(document).ready(function(){ var url = "http://url.com"; $.get(url,…
-
0
votes1
answer58
viewsQ: SQL Server Transaction Replication - Primary Key
I have an environment with 2 branches, each branch has to have an application server with an SQL SERVER installed, I have configured the transaction Replication which is working perfectly, but if 2…