Wordpress is an one stop solution for many web masters and bloggers. Wordpress was created in such a way that a person who don't have knowledge in coding can easily use this.There is a lot of free and premium Plugins available on the internet for every development purposes.You can easily create an e-commerce website or a forum website by simply installing a Plugin in Wordpress.The editor option on the Appearances is always required to make the necessary changes on Plugins and themes.
The editor option of Appearance is missing on wordpress.This error is the most common problem that I have faced on wordpress. Almost in every website that I have created using wordpress.
This is a configuration problem of wordpress. You will not be able to solve this problem by changing theme. If you deactivate all the Plugins of your website the problem will be till there.There are two methods to solve this problem.
Solution I - Disable Javascript Concatenation:
All Javascript files are concatenated into one URL to make administration area more faster. But some times javascript concatenation of administration area fails to work which causes this type of errors.
You can disable this feature by following steps bellow:
- Open the file wp-confic.php located on root of your wordpress project.
- This file contains informations for connecting your wordpress project with the database. Find the bellow line.
Add the bellow line after that.define('DB_HOST', 'hostname');
define('CONCATENATE_SCRIPTS', false);
Solution II - Enable the Plugin and Theme Editor:
In some cases plugin authors avoid checking for user edit capability for security.This occurs the problem.
You can disable this feature by following steps bellow:
- Open the file wp-confic.php located on root of your wordpress project.
- Find the bellow line.
Replace it with the bellow linedefine('DISALLOW_FILE_EDIT', true);
define('DISALLOW_FILE_EDIT', false);
So those are the two solutions for missing editor option of Appearance in wordpress.If those solutions don't works for you please mention your on the comment section.Don't forget to subscribe for the newsletters.