cyzum
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.3.1 not showing visual editorFixed it!
——-
So I had a similar problem, but it was definitely an issue with the server not supporting gzip properly. (Everything worked on my local server). I went in to this file:
/wp-includes/js/tinymce/tiny_mce_gzip.php
and found this code:
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;
}Immediately after I overrode the $supportsGzip var with a false value by inserting the following line after the block reference above:
$supportsGzip = false;
Bingo! everything works fine now.
—–
Forum: Fixing WordPress
In reply to: 2.3.1 not showing visual editorI’ve read about 50 threads on this same problem, tried everything that has been suggested, and nothing works.
I think it’s apparent that it’s a bug with WordPress, and something that Automattic should address. Can this thread be made sticky so that we can get everyone focusing on the problem, and not 50 threads about the same topic?
I really need to get this fixed, I’m using wordpress as a CMS for my company’s intranet, and I’m getting bombarded with emails and phone calls about why the WYSIWYG isn’t working.
Help!!!
Forum: Fixing WordPress
In reply to: Recent posts grouped by categoryI’ll check it out. Thanks ??
Forum: Fixing WordPress
In reply to: Recent posts grouped by categoryAnyone? Help please!
Forum: Fixing WordPress
In reply to: Recent posts grouped by categoryAnother thing: is there a way so that the categories would be displayed in order of most recent post?
Forum: Fixing WordPress
In reply to: Recent posts grouped by categoryWoops, hit enter too quickly.
I’m having a bit of trouble getting up to speed with template tags, so any help with setting this up would be greatly appreciated ??