datzone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank editor after updateTake a look and see if some .htaccess rules in /wp-includes/ blocking tinymce.
Did you check .htaccess file and PHP version?
Forum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardI guess the Green Geeks has signed a contract with the WordPress.COM (WPEngine/WP VIP). You can contact your hosting provider (Green Geeks) and ask them to fix the configuration problem. So far, (NeoTechnomad) I can access https://totemsustainability.com/wp-login.php
Forum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardYour blog is hosted on wordpress.com or greengeeks.com?
Forum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardok
Forum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardOr give a try and add the following line on top:
AddHandler application/x-httpd-php5 .php .php5 .php4 .php3
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardDo you have access to the control panel > file manager? If not, contact guys from the Green Geeks and ask them to check if the .htaccess handler is correct.
Forum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardIn public_html (root folder).
Or give a try and add the following line on top of .htaccess
AddHandler application/x-httpd-php5 .php .php5 .php4 .php3
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Plugin menu option missing from dashboardDid you check the .htaccess file in the root directory. Here is the explanation.
Forum: Fixing WordPress
In reply to: 404 Page Not Found after publishDid you added /index.php/ before the permalink structure? Using Permalinks: AllowOverride Not Enabled
Forum: Fixing WordPress
In reply to: An unexpected error occurredTry this solution.
Forum: Fixing WordPress
In reply to: my website hacked not showing any solution kindly suggest meTry this possible fix for redirect loop
Forum: Fixing WordPress
In reply to: New install – plugins.php & plugin-install.php not foundI guess the .htaccess file in the root directory needed to be modified.
in .htaccess find the following line and remove “2” (-php52 => php5):
AddHandler application/x-httpd-php52 .php .php5 .php4 .php3
Fix looks like this bellow:
AddHandler application/x-httpd-php5 .php .php5 .php4 .php3