• This is what happened to me, on all my 3 wordpresses:

    https://hellgate.vault.ign.com/drivinginsane.jpg

    It doesnt matter how many times I click on the Visual button… it is just DEAD… I am stuck with the code tab forever… (see image).

    I have three sites with different templates, and they are all with the same problem.

    What have I done:

    1- Loged out, loged in, Turned On and Off the profile option to use and not use the enhanced editor.
    2- Cleared my browser cash, even tested on different computers. Tested on Opera, Firefox, IE 6, IE7 and Safari. All the same.
    3- Searched on this forum, and nothing helps me on fixing.
    4- Re-Sent ALL the files from the latest WordPress 2.3.1 version and replaced all the files, and even that did not fix.
    5- Changed my Templates for the classic template and the other default template, and they are the same…

    6- It was working perfectly for a month after I installed the WordPress. Then the Visual tab died, so I updated to the latest version 2.3.1 and the Visual editor was fixed… Then again, after a few weeks… BAM… I got Stuck again.

    I run out of ideas… there has to be something you guys can do, help!!! Please!

Viewing 7 replies - 16 through 22 (of 22 total)
  • Thread Starter godofcomics

    (@godofcomics)

    Problem solved. I think this is the same thing happening to all others having this trouble. The solution:

    Server:

    “Our servers automatically GZIP all output, so if an application such as WordPress tries to GZIP it as well, problems are caused like this one.
    If you disable GZipping in your application’s configuration it should start behaving correctly.”

    Anyone knows how to turn off gzip compression inside WordPress?

    You can try remove or comment this lines from the file tiny_mce_gzip.php, for me it works fine. I use WordPress 2.3.2

    // Check if it supports gzip
    if (isset($_SERVER[’HTTP_ACCEPT_ENCODING’]))
    $encodings = explode(’,’, strtolower(preg_replace(”/\s+/”, “”, $_SERVER[’HTTP_ACCEPT_ENCODING’])));

    if ((in_array(‘gzip’, $encodings) || in_array(‘x-gzip’, $encodings) || isset($_SERVER[‘—————‘])) && function_exists(‘ob_gzhandler’) && !ini_get(‘zlib.output_compression’) && ini_get(‘output_handler’) != ‘ob_gzhandler’) {
    $enc = in_array(’x-gzip’, $encodings) ? “x-gzip” : “gzip”;
    $supportsGzip = true;

    }

    // Use cached file disk cache
    if ($diskCache && $supportsGzip && file_exists($cacheFile)) {
    if ($compress)
    header(”Content-Encoding: ” . $enc);

    echo getFileContents($cacheFile);
    die();

    }

    I had this error message in firebug

    realTinyMCE is not defined
    https://mywebsite.com/blog/wp-includes/js/tinymce/tiny_mce_gzip.php?ver=20070528
    Line 44

    and commenting the lines as advised by pozek solved it. Maybe there should be some option in the settings to disable gzipping of stuff in the future?

    Note: Disabling “WordPress should compress articles (gzip) if browsers ask for them” did not solve this problem.

    neeonline

    (@neeonline)

    Hey All!

    Commenting out line 89 in wp-includes/js/tinymce/tiny_mce_gzip.php:
    // $supportsGzip = true;

    The problem will be solved (not resolved).

    If that works, your web host zip/gzip configuration is incorrectly. Contact your admin / owner host and call to check these configurations.

    When the host zip/gzip configuration Finnish, remove comment at line 89 in the file.

    I hope to help you.

    Neeo, for Brazil.

    ilnickiap

    (@ilnickiap)

    this FINALLY was the answer I needed — the removing spaces in my Plugins worked for a couple days, just long enough to screw my brain up…. THANK YOU SOOOOO MUCH for bringing an end to my week of searching for the answer.

    COMMENT LINE… 89!!!!!!

    (it rhymes too)

    ??

    -ai

    Had the same problem, however I was able to fix it by changing back to the original theme. Something in my theme seemed to have corrupted the text editor.

    well, I have this problem as well now. I am running WordPress 2.5.1 and I do not have the file tiny_mce_gzip,php

    Commenting out line 89 in wp-includes/js/tinymce/tiny_mce_gzip.php:
    // $supportsGzip = true;

    So how do I solve the problem for mine?
    line 83 ‘tinyMCE’ is undefined on myblog.com/wp_admin/new-post.php

    Would love any help if you have it.

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Broken Visual Button, stuck at Code Button’ is closed to new replies.