Posts by Paulo Lima • 81 points
7 posts
-
0
votes1
answer53
viewsA: Azure - Hot layer BLOB recording source
After much battling the response I had from Microsoft was that files with high read access rate will be considered as "hot" even if it is in the "cold" layer". Although strange this was the only…
-
0
votes1
answer53
viewsQ: Azure - Hot layer BLOB recording source
Gentlemen all right? In my Azure account is displaying a high consumption of: "Hot LRS Recording Operations - Layered Block Blob - 192% 1.92 / 1 10K" image below: In the last 3 days this number that…
-
4
votes1
answer1018
viewsQ: Codeigniter 3 - HMVC - Problem with routes, Not Found or Failed to Load Session.php
My scenario is this:: I am using Codeigniter 3 with HMVC, while doing only local development, I had no problems with XAMPP with Windows, I went up to my test server which is an Ubuntu Server and…
-
0
votes1
answer1353
viewsA: Block form submission when click back
In fact the form I was using in the above example adds a second call to Submit where it actually prevents form submission but still calls the validation function. The most correct solution I thought…
-
1
votes1
answer1353
viewsQ: Block form submission when click back
It may seem like a stupid question but I’m amazed that when I click the back button, the form is sent. The code is similar to this: <form id="idform" method="post" onsubmit="return…
-
3
votes1
answer6009
viewsA: Check if a filled-in session exists
If I am not mistaken in comparisons PHP considers Null as False. One of the alternatives is to do the following: function usuarioestalogado() { return isset($_SESSION["usuario_logado"])) &&…
-
0
votes3
answers7043
viewsA: How to make a left Join using a Where condition?
I believe this is what you need: Select * from category a,user_follow_category b where a.id=b.to