Re: Cloudflare is getting really fucking annoying
This happens to me on every thread/post I do with PHP code in, pisses me off.
Re: Cloudflare is getting really fucking annoying
Quote:
Originally Posted by
PowahAlert
This happens to me on every thread/post I do with PHP code in, pisses me off.
Testing; PHP: echo - Manual
Code:
<?php
echo "Hello World";
echo "This spans
multiple lines. The newlines will be
output as well";
echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
echo "Escaping characters is done \"Like this\".";
// You can use variables inside of an echo statement
$foo = "foobar";
$bar = "barbaz";
echo "foo is $foo"; // foo is foobar
// You can also use arrays
$baz = array("value" => "foo");
echo "this is {$baz['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the value
echo 'foo is $foo'; // foo is $foo
// If you are not using any other characters, you can just echo variables
echo $foo; // foobar
echo $foo,$bar; // foobarbarbaz
// Some people prefer passing multiple parameters to echo over concatenation.
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10);
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";
echo <<<END
This uses the "here document" syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon. no extra whitespace!
END;
// Because echo does not behave like a function, the following code is invalid.
($some_var) ? echo 'true' : echo 'false';
// However, the following examples will work:
($some_var) ? print 'true' : print 'false'; // print is also a construct, but
// it behaves like a function, so
// it may be used in this context.
echo $some_var ? 'true': 'false'; // changing the statement around
?>
Worked fine when wrapped in code.
Re: Cloudflare is getting really fucking annoying
Quote:
Originally Posted by
MentaL
Testing;
PHP: echo - Manual
Code:
<?php
echo "Hello World";
echo "This spans
multiple lines. The newlines will be
output as well";
echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
echo "Escaping characters is done \"Like this\".";
// You can use variables inside of an echo statement
$foo = "foobar";
$bar = "barbaz";
echo "foo is $foo"; // foo is foobar
// You can also use arrays
$baz = array("value" => "foo");
echo "this is {$baz['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the value
echo 'foo is $foo'; // foo is $foo
// If you are not using any other characters, you can just echo variables
echo $foo; // foobar
echo $foo,$bar; // foobarbarbaz
// Some people prefer passing multiple parameters to echo over concatenation.
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10);
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";
echo <<<END
This uses the "here document" syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon. no extra whitespace!
END;
// Because echo does not behave like a function, the following code is invalid.
($some_var) ? echo 'true' : echo 'false';
// However, the following examples will work:
($some_var) ? print 'true' : print 'false'; // print is also a construct, but
// it behaves like a function, so
// it may be used in this context.
echo $some_var ? 'true': 'false'; // changing the statement around
?>
Worked fine when wrapped in code.
So you suggest using code boxes eh?
Re: Cloudflare is getting really fucking annoying
PHP Code:
can try this but code seems to work
Re: Cloudflare is getting really fucking annoying
Never seen this before :o
Re: Cloudflare is getting really fucking annoying
Quote:
Originally Posted by
Retro!
Never seen this before :o
Same.
Re: Cloudflare is getting really fucking annoying
it happened to me when i posted on coding section and i used PHP tag. beyond that, everything is normal.
Re: Cloudflare is getting really fucking annoying
If you're getting problems with cloudflare just try clearing your cache, always works for me.
Re: Cloudflare is getting really fucking annoying
As Facebook said, it happens when you customize your account, like changing avatar.
Re: Cloudflare is getting really fucking annoying
Quote:
Originally Posted by
ezpzzz
As Facebook said, it happens when you customize your account, like changing avatar.
It only happens once in a while regardless, I've changed my avatar several times and it hasn't came up, I changed it before and it didn't come up. I've only had the problem when I've uploaded a GIF that has been too large or an image for my avatar that is too large to have for your avatar.
Re: Cloudflare is getting really fucking annoying
I got it once when i changed my avatar, never had it again. What's the big deal?
Re: Cloudflare is getting really fucking annoying
Got it again, it seems to be mainly when you upload attachments.
I use attachments a lot so you can see my frustration.
Re: Cloudflare is getting really fucking annoying
Quote:
Originally Posted by
Ron
Got it again, it seems to be mainly when you upload attachments.
I use attachments a lot so you can see my frustration.
then its doing exactly what I want :thumbup:
Re: Cloudflare is getting really fucking annoying
Haha, alright then. You can close this.
Re: Cloudflare is getting really fucking annoying
btw the settings are set to one verification per day .