Posts by MaiconMM • 186 points
5 posts
-
0
votes1
answer944
viewsA: Error 174 - The event will only be accepted after the beginning date of the employer’s obligation to eSocial
Using the link provided by LP. Gonçalves found the problem, the start date needs to be in a specific month to work, as seen in the forum: In production or Test? Sends the Xml File, already formatted…
-
0
votes1
answer944
viewsQ: Error 174 - The event will only be accepted after the beginning date of the employer’s obligation to eSocial
I wonder if anyone else gets this error when you send the "S-1000" to the restricted production environment, and how you can fix it. I’m finalizing the structure but I can’t successfully send once.…
-
1
votes1
answer120
viewsA: How to use a PHP Function inside a JS Function
Javascript has no way to access your database, so the command can only be done by a script that runs on the server, in case PHP, the solution is to make an ajax request, or even a POST/GET form, as…
-
1
votes2
answers94
viewsA: Accessible class across C#
Try a startup function: public class TesteInstancia { private decimal _a public static decimal A { get { Inicializar(); return _testeInstancia._a; } set { Inicializar(); _testeInstancia._a = value;…
-
5
votes2
answers753
viewsA: What is the difference between 301 and 302 redirects?
Permanent means that the old address "no longer exists" and this new one is the "official". Temporary means that at some point the old address will return to work. Think of a "In Maintenance" page,…