Posts by Jefferson S. Siqueira • 106 points
4 posts
- 
		4 votes1 answer94 viewsA: Is there a difference between saving settings to dotEnv, JSON or INI?Friend, dotEnv is more of a ease standardization. It used to be XML is now Json, more or less so. Um . ini or config.php in security matters is the same thing, you can give require above public_html… 
- 
		1 votes0 answers40 viewsQ: PHP Gettext and strings outside the functions (strings of much use)There is a way to put in .po strings outside the _e()? For example, hypothetically, 'real' for 'dollars'. If on a page I quote real 517 times I will translate 517 times. Instead I intend to use… 
- 
		1 votes2 answers88 viewsA: How do I use @media to block padding-top in smaller resolutions?In CSS the rules are applied in order... in your case probably loads before html. Try to put ! Mportant in your rule in @media @media... { .classeDaDiv { padding-top: 0 !important;… cssanswered Jefferson S. Siqueira 106
- 
		2 votes1 answer703 viewsQ: https redirect without www with apache and startsslIt’s a little complicated thing... But the problem is simple. I use the free certification from Startssl and as it is free I can create keys only for my domain and a subdomain. Turns out I replaced…