temuraru
Forum Replies Created
-
Forum: Plugins
In reply to: Jetpack Error CodeHello!
My solutions was to look into the error log (/error_log) file, and I found out that one of the classes from the WordPress Ecommerce Data Feeder plugin had an error (just a simple typo – a missing comma: [28-Oct-2012 12:59:20] PHP Parse error: syntax error, unexpected T_RETURN in /public_html/wp-content/plugins/ecommerce-feeder/classes/WPSC_Ecommerce_Feeder_XML.class.php on line 164).
I corrected it, and everything works now.
So, as a general advice, try looking into your /error_log file before spending too much time on various forums for specific solutions.
Hope it helps someone…
Teo
Forum: Fixing WordPress
In reply to: Visual Editor does not appearI didn’t do anything special. I just added that line at the end of my
wp-config.php
file (which is the defaultwp-config-sample.php
file, copied and modified to fit my blog’s settings), the resulting final part of the file being:/** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php'); define('CONCATENATE_SCRIPTS', false );
Then, at the next refresh of the post-edit page (
blog.example.com/wp-admin/post.php?post=73&action=edit
– there’s no need for any other restart), the visual editor worked as it normally should have.Forum: Fixing WordPress
In reply to: 3.2.1 Visual Editor broken PERSONAL TOPICIn my case, this line worked like a charm:
define('CONCATENATE_SCRIPTS', false );
(Paste as the last line of ‘wp-config.php’)I found the solution here: Visual Editor does not appear
I hope it helps anyone!
Forum: Fixing WordPress
In reply to: Visual Editor does not appearIt worked!!!
After countless hours of searching and implementing all kind of solutions from the net, this is the one that made my visual editor appear instantly!Thanks a lot!!