Forum Discussion
jasonfan2000
Aug 28, 2024Copper Contributor
Unable to post, flooding error
Help!! I have just wasted 3 hours trying to post a question. I kept seeing errors of asking me to correct the highlighted errors and try again. And it said that maximum flood limited reached. I fou...
Deleted
Oct 20, 2024Not applicable
Parece que has hecho un buen trabajo intentando solucionar el problema por tu cuenta.
El error de "inundación" generalmente ocurre cuando se envían demasiadas solicitudes en un corto período de tiempo. Aquí hay algunas sugerencias adicionales que podrían ayudarte:
1. **Revisa tu conexión a internet**: Asegúrate de tener una conexión estable.
2. **Intenta publicar desde otro navegador o dispositivo**: A veces, cambiar de entorno puede resolver el problema.
3. **Revisa el tamaño del contenido**: Si estás publicando algo con mucho texto o imágenes, intenta reducirlo y publicarlo en partes más pequeñas.
4. **Contacta al soporte técnico**: Si nada de esto funciona, puede ser útil contactar al soporte técnico del sitio para obtener ayuda específica.
Espero que alguna de estas sugerencias te ayude a resolver el problema.
El error de "inundación" generalmente ocurre cuando se envían demasiadas solicitudes en un corto período de tiempo. Aquí hay algunas sugerencias adicionales que podrían ayudarte:
1. **Revisa tu conexión a internet**: Asegúrate de tener una conexión estable.
2. **Intenta publicar desde otro navegador o dispositivo**: A veces, cambiar de entorno puede resolver el problema.
3. **Revisa el tamaño del contenido**: Si estás publicando algo con mucho texto o imágenes, intenta reducirlo y publicarlo en partes más pequeñas.
4. **Contacta al soporte técnico**: Si nada de esto funciona, puede ser útil contactar al soporte técnico del sitio para obtener ayuda específica.
Espero que alguna de estas sugerencias te ayude a resolver el problema.
panos2024b
Oct 28, 2024Tin Contributor
I get the same error. Using edge. To replicate try to post the below text. I am not changing anything as dont want to lose anything. Starts below. So the ifrst time i tried to post this i got the error about reaching flooding limit. This is a bug in your system i think. Please try to replicate. I .
----------------------------
I need to access some c# code from javascript in MVC ,NET (not blazor). I have the below. This is very specific to .NET and MVC stack and not a generic ajax question like another one in stack overfow. I get no error message it just continues to the next statement after the ajax call. There could be 2 possible issues i think. My url: '/Home/CreatePostcodeFromCoordinates', is wrong. Or my C# assemply is not part of the assembly? or something similar. I am not that experienced with Web techs, I come from a DB background but can't be that difficult to get this link working right? Can't see anything else wrong. Also does the return value from C# need to be some special format or a string (as per now) is ok? this could be another reason? Thank you!
console.log("just before /Home/CreatePostcodeFromCoordinates");
$.ajax({
type: "POST",
url: '/Home/CreatePostcodeFromCoordinates',
data: { param1: longitude, param2: latitude },
success: function (response) {
console.log('success');
console.log(response);
},
error: function (error) {
console.error(error);
}
});
----------------------------
I need to access some c# code from javascript in MVC ,NET (not blazor). I have the below. This is very specific to .NET and MVC stack and not a generic ajax question like another one in stack overfow. I get no error message it just continues to the next statement after the ajax call. There could be 2 possible issues i think. My url: '/Home/CreatePostcodeFromCoordinates', is wrong. Or my C# assemply is not part of the assembly? or something similar. I am not that experienced with Web techs, I come from a DB background but can't be that difficult to get this link working right? Can't see anything else wrong. Also does the return value from C# need to be some special format or a string (as per now) is ok? this could be another reason? Thank you!
console.log("just before /Home/CreatePostcodeFromCoordinates");
$.ajax({
type: "POST",
url: '/Home/CreatePostcodeFromCoordinates',
data: { param1: longitude, param2: latitude },
success: function (response) {
console.log('success');
console.log(response);
},
error: function (error) {
console.error(error);
}
});