Posts by David Dias • 995 points
63 posts
-
1
votes1
answer2921
viewsQ: Comments Block - Vscode
There is something that can facilitate the creation of comment blocks in this format: /* |-------------------------------------------------------------------------- | Register Controller…
-
2
votes1
answer21
viewsA: I can’t find the Glew graphical library
Always search Github when you can’t find it in your favorite search. Many developers have migrated there to keep their sources active in the community. Make sure it’s this:…
-
1
votes3
answers1524
viewsA: If with 3 conditions and at least 2 true?
To use two conditions, you must use && instead of || || means OR && means AND if (a && b || c) If A and B is true or C I mean, C if it’s real, it’s gone. It’s gone.…
-
0
votes2
answers274
viewsQ: Return of Collection after Update
By default Laravel returns true or false when doing an update. Example: User::find(1)->update(['name'=> 'David']); The return of this will be a true or false, making me need to do another Find…
laravelasked David Dias 995 -
-1
votes2
answers61
viewsA: Why can’t I display the image selected below in my browser?
Log in to your browser’s Console and go to the Network tab (Network), reload the page and see if there are any loading errors. If there is, check that the call (link) of the image is correct. As the…
htmlanswered David Dias 995 -
3
votes4
answers1780
viewsA: After all, why does the PHP source code not appear in the browser?
Browser does not have the resources to run a PHP logic, only Javascript logics. The browser itself, takes and renders the HTML considering whatever style is defined by the CSS. At the same time, it…
phpanswered David Dias 995 -
0
votes2
answers1162
viewsA: How to put a java script into value html
Complementing the response of Mark: For you to assign the value, you will use: document.getElementById("idUnico").value = '<script>alert()</script>' Already to read the value, you will…
-
1
votes1
answer432
viewsA: Can I connect a Cordova app directly to Mysql?
For this to work you need a communication interface between your application and the database. This is due to the fact that MYSQL does not solve the question of information transport, only its…
-
0
votes1
answer99
viewsQ: Sending JWT without Framework
What is the best way, in terms of best practices and practicality, to simplify the process of moving a JWT? I know that with Ionic or Angular, after configuring some module for JWT, the application…
-
1
votes2
answers718
viewsA: User does not authenticate Auth
I went through a similar problem a few times and it took me a while to understand why. Laravel creates a browser variable that sets the session token to be transacted during browsing. This data is…
-
-3
votes4
answers869
viewsA: How to install Wordpress Multisite?
That’s right, buddy, you need something in there so you don’t get Not Found. But in your case, as I understand it, you need to make this subdomain fall into the same folder as the current domain…
-
-2
votes4
answers869
viewsA: How to install Wordpress Multisite?
Do you have access to Shell? If yes, give a tailf /var/log/apache/access.log to see which folder the browser is coming to. It seems that the problem is the direction of the domain, the folder where…
-
5
votes1
answer181
viewsQ: Creation and communication with daemon
I have a Python application where I need to keep it online all the time. The application has its own console, which is where I do the communication and step parameters. I understood that I can…