Borge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual editor not working in version 4.5.3Common reasons:
1. Memory Limit issue: Solution below.
a. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);b . If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)c. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64Md. Read this. https://wordpress.org/support/topic/how-do-i-fix-fatal-error-allowed-memory-size-of-94371840-bytes-exhausted?replies=14
2. Plug ins issue.
You may need to deactivate all plug ins and reactivate it one by one and see it one if it causes the issue.
Forum: Fixing WordPress
In reply to: Need help removing some quicktagsTry checking this code in the link below.
function nmt_quicktags_buttons( $qt_init) { $del_buttons = array('del','ins','img','code'); $qt_init['buttons'] = implode(',', array_diff(explode(',',$qt_init['buttons']), $del_buttons)); return $qt_init; }http://wordpress.stackexchange.com/questions/47010/removing-buttons-from-the-html-editor
Forum: Fixing WordPress
In reply to: Error 500 after last WP updateHave you increased the PHP version already?
If so, post your issue to the plug in author so they can check it.
https://wordpress.org/support/plugin/woocommerce-paypal-pro-payment-gateway
Forum: Fixing WordPress
In reply to: wp-login redirects to old wp.com URLSeems your DNS are still pointing to the old Wp.com. See this link below.
https://www.whatsmydns.net/#NS/ruhamahcambodia.org
If your host is hostGator,ask them about your NameServers then contact Wild West Domains, LLC (Your Domain Registrar or Maybe you have domain reseller) to change the NS to which HG will provide you.
Forum: Fixing WordPress
In reply to: wp-login redirects to old wp.com URLCan you give me the site link?
Have you cleared your browsing history?Just to confirm. What is the issue you are experiencing now?
*is it you still cant see the “Add New” option in the Dashboard?
*is it still redirecting?Forum: Fixing WordPress
In reply to: Not able to login to admin of my site due to incorrect user messageYou can check the correct username by checking it the database.You can also change the password of the user itself. See the link below
https://codex.wordpress.org/Resetting_Your_Password
Follow the steps using phpMyAdmin.
Forum: Fixing WordPress
In reply to: Backup Guard blocks my blogHi workener! you can change your PHP version to higher one or go to the File Manager and disable the plug in Backup Guard by renaming that folder
Forum: Fixing WordPress
In reply to: wp-login redirects to old wp.com URLWP Home is the URL that will display on browser attached to that website. Thus, when you search the domain through the browser, that it the URL that will show up.
WP SiteURL is same but used for all tabs/links/pages on your website.I suggest you add it after the fist line which the one below.
<?php
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Forum: Fixing WordPress
In reply to: wp-login redirects to old wp.com URL1. You may need to change the URL in database
wp_options table>site URL or for easy step isadd this code in wp-config.php
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);That should be public_html/wp-content/themes where you upload theme and not in wp-admin/themes.
You dont have the add new button as the Panel that you are accessing is the wp.com not the wp.org unless the site URL is defined.
hope that helps.
Forum: Fixing WordPress
In reply to: wp-admin redirecting to wp-loginThe redirection is actually fine.
so when you type in http://domain.com/wp-admin that will redirect to http://domain.com/wp-login.php
But about the editors cant log in to wp-login.php, that seems issue with theme.
If Role>Editor cant manage posts, try deactivating all plug ins as this might be the cause of it.
Forum: Fixing WordPress
In reply to: Can't access wp-adminCommon reasons:
1. Memory Limit issue: Solution below.
a. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);b . If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)c. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64Md. Read this. https://wordpress.org/support/topic/how-do-i-fix-fatal-error-allowed-memory-size-of-94371840-bytes-exhausted?replies=14
2. Changed of the Admin URL.
See this forum for that http://forum.ait-pro.com/forums/topic/protect-login-page-from-brute-force-login-attacks/
3. Plug ins issue.
You may need to access the File Manager. Go to wp-contents and rename the plugins folder into plugins.back
Forum: Fixing WordPress
In reply to: Error 500 after last WP updateTry this first, change the PHP version from 5.3 to 5.4 or higher. Sometimes, thats the cause.
See if you have the right permission of your load.php (should be 644) under the wp-inlcudes folder.
if not, you may need to reinstall the WordPress.
Forum: Fixing WordPress
In reply to: (apparently) SSL related weird error on Old WP installationTry add this on your Functions.php of your theme.
$_SERVER[‘HTTPS’] = false;
Maybe this is caused by your Chrome Version 44+.
Chrome issue: https://bugs.chromium.org/p/chromium/issues/detail?id=505268
Kindly check Settings > Media
File upload path should only be wp-contents/uploads
other than that like home/user/pulic_html/ should be removed
Forum: Fixing WordPress
In reply to: Errors after a manual update – won't loadchange PHP from 5.3 to 5.5 or higher