Cloudflare is getting really fucking annoying

Page 2 of 2 FirstFirst 12
Results 16 to 30 of 30
  1. #16
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: Cloudflare is getting really fucking annoying

    This happens to me on every thread/post I do with PHP code in, pisses me off.

  2. #17
    ...[ White Rabbit ]... MentaL is offline
      Administrator  Rank
    Jan 2001 Join Date
    31,625Posts

    Re: Cloudflare is getting really fucking annoying

    Quote Originally Posted by PowahAlert View Post
    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.

  3. #18
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: Cloudflare is getting really fucking annoying

    Quote Originally Posted by MentaL View Post
    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?

  4. #19
    ...[ White Rabbit ]... MentaL is offline
      Administrator  Rank
    Jan 2001 Join Date
    31,625Posts

    Re: Cloudflare is getting really fucking annoying

    PHP Code:
    can try this but code seems to work 

  5. #20
    Fuck You Retro! is offline
    MemberRank
    Jun 2007 Join Date
    4,346Posts

    Re: Cloudflare is getting really fucking annoying

    Never seen this before :o

  6. #21
    Flyff Developer Intelligence is offline
    MemberRank
    Oct 2011 Join Date
    United KingdomLocation
    1,401Posts

    Re: Cloudflare is getting really fucking annoying

    Quote Originally Posted by Retro! View Post
    Never seen this before :o

    Same.

  7. #22
    hmmm :D JaneX is offline
    MemberRank
    Jan 2005 Join Date
    918Posts

    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.

  8. #23
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    Re: Cloudflare is getting really fucking annoying

    If you're getting problems with cloudflare just try clearing your cache, always works for me.

  9. #24
    Account Upgraded | Title Enabled! ezpzzz is offline
    MemberRank
    Apr 2010 Join Date
    292Posts

    Re: Cloudflare is getting really fucking annoying

    As Facebook said, it happens when you customize your account, like changing avatar.

  10. #25
    karLi Ganja Co. El Jamie is offline
    MemberRank
    Nov 2007 Join Date
    Boob Island, BILocation
    2,796Posts

    Re: Cloudflare is getting really fucking annoying

    Quote Originally Posted by ezpzzz View Post
    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.

  11. #26
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    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?

  12. #27
    Omega Ron is offline
    MemberRank
    Apr 2005 Join Date
    Location
    8,990Posts

    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.

  13. #28
    ...[ White Rabbit ]... MentaL is offline
      Administrator  Rank
    Jan 2001 Join Date
    31,625Posts

    Re: Cloudflare is getting really fucking annoying

    Quote Originally Posted by Ron View Post
    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

  14. #29
    Omega Ron is offline
    MemberRank
    Apr 2005 Join Date
    Location
    8,990Posts

    Re: Cloudflare is getting really fucking annoying

    Haha, alright then. You can close this.

  15. #30
    ...[ White Rabbit ]... MentaL is offline
      Administrator  Rank
    Jan 2001 Join Date
    31,625Posts

    Re: Cloudflare is getting really fucking annoying

    btw the settings are set to one verification per day .



Page 2 of 2 FirstFirst 12

Advertisement