Posts by Marcel Bezerra • 36 points
3 posts
-
1
votes1
answer139
viewsA: Error setting cookies with expiry date with javascript "When browsing session ends"
The cookie expiration date must be GMT. Use the toGMTString function as below: function createCookie(name,value) { name = "testeeee"; value = "conteudo do teseeee"; var date = new Date();…
-
0
votes1
answer48
viewsA: Property with GET (Getteronly) with Iqueryable C#
Have you tried to ignore the mapping of this field in Entityframework by adding the 'Notmapped attribute' ? Example: public class Venda(){ public decimal Valor {get;set;} public decimal Desconto…
-
1
votes2
answers4601
viewsA: Where is php.ini being loaded from in this instance of Docker?
See the example of how PHP.ini should be loaded in the library’s own documentation in PHP in Docker: FROM php:7.2-fpm-alpine # Use the default production configuration RUN mv…