Forums

Visual Editor is no longer working (19 posts)

  1. RowdyKittens
    Member
    Posted 5 months ago #

    Hi there,

    I recently upgraded to the wordpress 2.8 and my Visual editor is no longer working. It is stuck in the HTML mode and I can't fix the problem. I've searched the forums and various help files, but haven't figured out how to fix this issue.

    Do you have any suggestions?

    --
    Sincerely,
    Tammy
    http://rowdykittens.com

  2. pamelamo
    Member
    Posted 5 months ago #

    I am having the same problem. It worked for awhile after the upgrade but now all controls on visual editor are gone except for upload/insert.

  3. lainestl
    Member
    Posted 5 months ago #

    Same issue here

  4. mrachul
    Member
    Posted 5 months ago #

    I'm having the same issue as well. Has anybody figured it out yet?

  5. anthonyhurst
    Member
    Posted 5 months ago #

    If you are desperate for it to work and do not care about validation: go into your file manager/ftp to edit your files. Navigate to the admin folder and edit the file that is named something like "admin-header.php" (I can't recall if this is exact) and remove the doc type which looks something like "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Trans//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-Trans.dtd">." Once again, this isn't exact. Let me know how this goes.

  6. anthonyhurst
    Member
    Posted 5 months ago #

    Also, it should only be a few lines down. Good luck.

  7. lainestl
    Member
    Posted 5 months ago #

    Removed: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    Still not working.

  8. lainestl
    Member
    Posted 5 months ago #

    Figured it out.

    Just add

    define( 'CONCATENATE_SCRIPTS', false );

    to wp-config

  9. RowdyKittens
    Member
    Posted 5 months ago #

    Hi lainestl - I tried adding:

    define( 'CONCATENATE_SCRIPTS', false );

    But that didn't work. It inserted the code into the top of my header. Do I add it to the wp-config.php file? And does it have to be in a certain place?

    Thanks for your help. :)

  10. azaozz
    Member
    Posted 5 months ago #

    The define( 'CONCATENATE_SCRIPTS', false ); has to be in wp-config.php near the top, it won't work in the header. Also removing the DOCTYPE from the header would only break things (it puts the browser in quirks mode).

    On some installs a file is missing after the upgrade, check if wp-includes/js/tinymce/wp-tinymce.js.gz file exists and upload it with FTP if it doesn't (it is in the installation package).

  11. RowdyKittens
    Member
    Posted 5 months ago #

    @azaozz THANK YOU!!!!! Your suggestion worked. The tinymce.js.gz file was not in the wp-includes file. So I FTPed it and now my visual editor is back. Thank you!!

    Sincerely,
    Tammy

  12. marnixbras
    Member
    Posted 5 months ago #

    Thanks @lainestl

    I placed define( 'CONCATENATE_SCRIPTS', false ); in my wp-config.php file (I placed it under the define ('WPLANG', 'nl_NL');)

    It works!

  13. bill127300
    Member
    Posted 5 months ago #

    After 2.7 the image uploader didnt work. After 2.8 the visual editor didnt work. Both times just reuploading the wordpress files via ftp got it working. It was just a missing file that didnt get installed correctly I guess.

  14. eph2810
    Member
    Posted 4 months ago #

    Thanks for all the tips. I will try them out. I don't think it is WP issue, because after installing a different browser (I am currently using Firefox), everything is working fine. I just don't want to use a different browser *sigh*...So hopefully I can locate the file you are all talking about...

  15. tarnya
    Member
    Posted 3 months ago #

    I have a new site in 2.8 no visual editor
    I added
    define( 'CONCATENATE_SCRIPTS', false ); in my wp-config.php file
    and the visual editor is back Hurrah Hurrah
    Thank you

  16. Matt Gibson
    Member
    Posted 3 months ago #

    Can anyone help me? I've tried all of the above, but still have no visual editor.

    I checked to make sure that I had the wp-includes/js/tinymce/wp-tinymce.js.gz file. I did. I re-uploaded it to be sure there was no error.

    I added the define( 'CONCATENATE_SCRIPTS', false ); term to my wp-config.php file. It looks like this

    <?php
    // ** MySQL settings ** //
    define('DB_NAME', 'xxxxxxxxxxx'); // The name of the database
    define('DB_USER', 'xxxxxxxxxxxxx'); // Your MySQL username
    define('DB_PASSWORD', 'xxxxxxxxxxx'); // ...and password
    define('DB_HOST', 'xxxxxxxxxx'); // 99% chance you won't need to change this value
    define('DB_CHARSET', 'utf8');
    define('DB_COLLATE', '');
    define( 'CONCATENATE_SCRIPTS', false );

    // Change each KEY to a different unique phrase. You won't have to remember the phrases later,

    Still no visual editor. I'm lost. Any help would be greatly appreciated.

  17. casevos
    Member
    Posted 2 months ago #

    Having just found a work around for a bug we found in the 2.8 version that resulted in lost ability to publish posts (see below)--which was like finding a needle in a haystack, now we can edit but are stuck in html mode--like everyone above.

    Disabling plugins, clearing cache, switching browsers, renaming the plugin directory... these are superficial fixes. Clearly there are many more bugs than the one that we found throughout the 2.8 branch. Is there any effort underway to address the fundamental problems that are plaguing all of these 2.8 blogs?

    Option for 2 column screen not present in add/edit page, thus, publish box, set to column 2 dissapears.

    FIX :

    in FILE : wp-admin/edit-form-advanced.php

    LINE 268

    add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'post', 'side', 'core');

    becomes

    add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'post', 'normal', 'core');

  18. sharisax
    Member
    Posted 2 months ago #

    Same problem NO VISUAL EDITOR . . . but so many cross responses, I can't figure out if there is a FIX yet?
    THX

  19. casevos
    Member
    Posted 6 days ago #

    Here is how we finally resolved it--
    When PHP is invoked by CGI/CLI method and/or FastCGI method, the
    TinyMCE editor on the add and edit page breaks, and does not appear.
    Php then dumps core in main directory. I can post that core if you
    would like.

    This can be fixed by setting PHP to be invoked directly by apache's
    mod_php.so as is done in default install of php.

    As this bug has been identified and can be easily replicated, is there any way it can be fixed? I would very much like to go back to using CGI/CLI/FastCGI method for proper suexec operations.

Reply

You must log in to post.

About this Topic