Author

Topic: ㅤ (Read 179 times)

copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
July 03, 2020, 12:58:43 PM
#7
If the problem isn't the on click stuff, you could send the Ray I'd to Theymos for investigation (that's what I did last time and he. Put a captchha in its place although sometimes this won't be possible if it's something that will interfere with the page).
hero member
Activity: 520
Merit: 11957
July 03, 2020, 05:55:58 AM
#6
This is an known issue. Theymos already talked about it: c m d . e x e : cloudflare blocks me

thanks, now it’s clear. For the first time I came across this Smiley
legendary
Activity: 2338
Merit: 10802
There are lies, damned lies and statistics. MTwain
July 03, 2020, 06:42:26 AM
#6
<...>
I’ve encountered that a few times when publishing some sql code here. Normally it was only down to one command (not always the same one), so what I did was apply a dicothomic approach (*) to locate the command that was making the error appear. I then substituted the command for a "sweet command" (i.e. "order by" for "ordenar by"), and put a note at the foot of the post to indicate the necessary swap to the code to be correct.

Nevertheless, if the code is long, and there are multiple key words that cause the issue, it may be a bit cumbersome with the above approach.

(*) i.e. publish half of the code, and see it it displays properly, if not, publish a quarter of the code, and see if it displays, and so forth. That allows you to delimit the problematic commands by applying a dichotomic approach.


Code:
for (const game of existingGames) {
    const wager = game.game.wager / 100000000;
    html += "
Game between " + game.game.players[1] + " and " + game.game.players[2] + " for " + wager + runtime.globalVars.Symbol + " (Watch)
";


}for (const game of ourGames) {
    const wager = game.game.wager / 100000000;
    html += "
Game between " + (game.game.players[1] === runtime.globalVars.ValidatedAddress ? "you" : game.game.players[1]) + " and " + (game.game.players[2] === runtime.globalVars.ValidatedAddress ? "you" : game.game.players[2]) + " for " + wager + runtime.globalVars.Symbol + " (Watch)
";
}

Replace "onclick" for "onclickityclick" or whatever, and explain the necesary change outside the code area ...
legendary
Activity: 2464
Merit: 3878
Hire Bitcointalk Camp. Manager @ r7promotions.com
July 03, 2020, 05:58:16 AM
#5
I assume posting such code is being blocked is probably to prevent injection attacks(something similar to SQL injections) from happening. Just my guess though, lets wait for an admin reply as I'm curious too.
As far as I know the db field will have a VARCHAR variable which will eventually take the entire post as string. 

This is an known issue. Theymos already talked about it: c m d . e x e : cloudflare blocks me

Fixed, thanks. Whenever this happens, please email or obfuscate-then-PM me what you posted. Cloudflare has a ton of rules, some of which seem useful (like detecting fake robots), but others do stupid stuff like that.
Stupid couldflare.
legendary
Activity: 2758
Merit: 6830
July 03, 2020, 05:55:12 AM
#4
This is an known issue. Theymos already talked about it: c m d . e x e : cloudflare blocks me

Fixed, thanks. Whenever this happens, please email or obfuscate-then-PM me what you posted. Cloudflare has a ton of rules, some of which seem useful (like detecting fake robots), but others do stupid stuff like that.
hero member
Activity: 520
Merit: 11957
July 03, 2020, 05:50:54 AM
#3
Have you tried using the code tag?

Code:
put the codes here


Of course, I publish all codes through this form, but there, even with tags, even without tags, this lock screen gets out
mk4
legendary
Activity: 2870
Merit: 3873
Paldo.io 🤖
July 03, 2020, 05:52:08 AM
#3
I assume posting such code is being blocked is probably to prevent injection attacks(something similar to SQL injections) from happening. Just my guess though, lets wait for an admin reply as I'm curious too.
legendary
Activity: 2464
Merit: 3878
Hire Bitcointalk Camp. Manager @ r7promotions.com
July 03, 2020, 05:49:37 AM
#2
Have you tried using the code tag?

Code:
put the codes here
hero member
Activity: 520
Merit: 11957
July 03, 2020, 05:46:58 AM
#1
Jump to: