JohnnyWhite2007
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: require_wp_db() in D:Can you pastebin your wp-settings.php file and post a link here?
Forum: Fixing WordPress
In reply to: 404 error on wp-adminYou would need a FTP program like FileZilla, CoreFTP, or CuteFTP. All work well. You would then login using it, if you need login credentials, it’s usually similar to the below:
Host/Site Name: ftp .serviceispower.com(take the space out from ftp and the .)
Username: Usually the same as your hosting login
Password: Usually the same as your hosting login.
Port: 21Note that your username and password may have to be given to you by your host if you have different logins for that. Once you are logged in, navigate to the wp-content folder and rename the plugins folder to something like plugins.bak so that WordPress doesn’t recognize them anymore.
Also, while you are in the FTP, make sure that the wp-admin folder exists along with your wp-content and wp-includes folder and that there are index.php file exists in the wp-admin directory.
To rename the .htaccess file you will need to find it, usually it is in the root of the WordPress installation.
Let us know if we can help further.
Forum: Fixing WordPress
In reply to: Suggestions for unmanaged VPS hosting ?HostGator.com offers unmanaged VPS hosting starting at $19 a month.
Forum: Fixing WordPress
In reply to: Widgets moved from top to bottomThe best thing to do to help us help you is to post a link to the error. Once we have this we can then tell you if it is a WordPress issue or a theme issue.
Forum: Fixing WordPress
In reply to: Pages not saving new editsDisable all plugins, I have seen many plugins cause this issue. Once done, try to update the pages and see if it shows. If so, then enable one plugin at a time until you find the culprit. Usually it is some type of Caching plugin that causes the problem.
Forum: Fixing WordPress
In reply to: How to enable widgets in non-widget enabled themesPut this in the sidebar source file:
<?php
if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar() ) :
endif;
?>Then go to your functions.php file for the theme(if you don’t have it make it). Then put the following:
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar();
?>Please note that the <?php and ?> tags denote opening and closing a PHP script. If you have <?php and ?> within themselves, it will cause errors.
Forum: Fixing WordPress
In reply to: Dashboard not workingRenaming the theme folder doesn’t always revert the theme back to the default. You may have to set it in the database.
Forum: Fixing WordPress
In reply to: 404 error on wp-adminFirst:
Make sure that wp-admin folder exists and all its contents are there.Second:
Disable all plugins by going to the plugins directory wp-content/plugins and renaming the plugins folder to something like plugins.bak. Then try access the dashboard and see if it lets you in, if it does, then it’s a plugin causing the issue.Third:
If disabling the plugins directory, try renaming the .htaccess file to something else and see if that helps.Forth:
If all else fails, contact your host and have them check for Mod Secuirty rules that are being hit(which I doubt very much).Johnny White.
Forum: Fixing WordPress
In reply to: Can't Change WordPress SettingsTry disabling all plugins and then trying it. If it works, enable each plugin one at a time until you find the culprit.
Forum: Fixing WordPress
In reply to: why won't widgets update unless i log off?If you have a caching plugin installed, this can cause this issue as I have seen it happen to me. Try disabling all plugins and then see if they update. If it does, activate one plugin at a time until you find the culprit.
Forum: Fixing WordPress
In reply to: Changing Permalink Settings from default getting 404 not found errorTry renaming your .htaccess to something else and making a fresh, new one. After this, update your links and see if it works. As for it putting /blog in front of the structure, check your settings and make sure that the site and home URL is not set to have that if it’s not suppose to.
Forum: Fixing WordPress
In reply to: Dashboard not workingTry changing the theme back to the default theme that comes with WordPress. This can be done though your phpMyAdmin under the wp_options table, you want to edit the two entries for the theme(Stylesheet & Template). Then see if you can access the dashboard, if you can, then the Frugal theme is not working properly.
Forum: Fixing WordPress
In reply to: Updates are deleting my layout…I would disable all plugins and see if it still happens. Always deactivate all plugins first to start troubleshooting. If the problem still exists after the plugins are deactivated, then it’s something wrong with the WordPress itself or something else.
Forum: Fixing WordPress
In reply to: Giving wordpress it's own directory errorThis is because you need to add a / in front of the * on line 2. Like so:
<?php
/*
* @package WordPress
*/
/**
* Tells WordPress to load the
WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);
/** Loads the WordPress
Environment and Template */
require_once(‘wordpress/wp-blog-
header.php’)
?>Forum: Fixing WordPress
In reply to: Using too much GPU, help!!Most likely they said CPU. GPU would be for graphics, which has nothing to do with a web server. I would install something like W3 Total Cache, this will help reduce server load and keep you from hitting terms of service issues if they have anything restricting you. Also, if W3 Total Cache doesn’t work, try disabling all plugins and periodically activating one each week until you find the culprit, which most likely is the admin-ajax.php page.
Johnny White.