Posts by denalioasis • 51 points
4 posts
-
1
votes0
answers1177
viewsQ: How to host my website created in Laravel on the Hosting Server? [HTTP ERROR 500]
I’m trying to host my site developed in Laravel on the website hosting (Locaweb), but an error (HTTP ERROR 500) is preventing the operation. File structure: http://i.imgur.com/Ncg8bsl.png Version of…
-
1
votes0
answers18
viewsQ: How do I show doing a kind of update log while the query is being run?
$("#gerar-senha").on("click", function(){ $.ajax({ url: "gerar-valores-randomicamente.php", type: "POST", data: $("#formulario").serialize(), success: function(data){ $("#myModal").modal();…
ajaxasked denalioasis 51 -
3
votes2
answers455
viewsQ: Nomenclature for radio, checkbox, select, inputs, etc
Which is a good name to define these types of inputs? chk_questao1 rdo_questao2 txt_questao5 slc_questao3 Which nomenclature standard is best? Is there any such thing as good practice?…
htmlasked denalioasis 51 -
0
votes1
answer1531
viewsQ: how to log off automatically after the session has expired?
I am having problems, if the user is inactive for more than 24 minutes, the page remains the same. If I’m on my page and the session is expired due to inactivity (it’s past 24 minutes), I can still…