Paul Barthmaier (pbrocks)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Database ErrorI love cheeky chestnuts! Did you know that in French there’s a word for chestnut, chataigne, but you are much more likely to hear the word for brown used, marron. What’s funny is that the word for funny is marrant, which sounds similar to brown, so marrant marron, might be funny chestnut, but I have no idea why or if anyone would ever say that!
For your problem, though, it’s actually good news that you are getting the Error establishing a database connection because that means that you are actually getting to BlueHost. However, it’s possible that their database server is down and hence your error message. I have heard from others on this forum that BlueHost was experiencing some issues, but I don’t have any direct experience with them.
Forum: Your WordPress
In reply to: Please Critique My WebsiteI think you nailed the reason for your slow speed.
Forum: Everything else WordPress
In reply to: WordPress 404 behaviourFirst off, wrong forum. This forum is for self-hosted blogs using the WordPress downloaded from www.remarpro.com and installed on their server. WordPress.com is a different beast that has its own forums for support.
Buuuuuut, since you’re here, keep in mind that all URLs are not created equal. What follows the ? in a URL needs to be a query string, and that query string is an argument to the rest of the URL. You would only need a question mark if you want to append information to your URL.
Forum: Fixing WordPress
In reply to: Bulk Add Featured ImageYou could try this plugin:
If your WordPress files are installed in a subdirectory, you;ll need a Cname for that, so WordPress knows the installation isn’t in the root folder.
Forum: Installing WordPress
In reply to: Only blank screen after loginWhy did you remove the wp-config-sample.php? That’s what WordPress will be looking for when you type /wp-admin/install.php. Without that file, you won’t be able to run the install.
Forum: Installing WordPress
In reply to: Error establishing a database connectionIf your previous account was deactivated then you wouldn’t have access to the database where your information is stored. You will need to create a new database and user, making sure to assign the user wil ALL privileges. Then you should be able to import the backup .sql file that you have into your new database. When your database is imported and your files have been uploaded, you should be able to connect to your site.
Forum: Fixing WordPress
In reply to: Not importing cssYour themes should be in folders in your Themes folder in wp-content. So if you have two themes, say Parent and Child, they would both be in folders in /wp-content/themes/ subdirectory, such as /wp-content/themes/ParentTheme and /wp-content/themes/ChildTheme. The two themes are in a sister relationship, but in WordPress, the concept of a child theme is one that pulls style information in from the parent theme using an import statement. The openeing information of your child theme should look like this example:
/* Theme Name: ChildTheme Template: ParentTheme Description: Child theme Author: Me Author URI: https://wow.mythemes.wow */ @import url("../ParentTheme/style.css");
Be sure that your syntax of the @import URL is correct. In this case, the Template the child theme is looking for is the name of the folder where the style.css is located for the Parent theme.
Forum: Plugins
In reply to: [Groups] Jetpack CSS editor Conflict: BugHi Alex,
If you continue to get this error, you can try to add a constant to your wp-config that will increase your memory, such as:
define(‘WP_MEMORY_LIMIT’, ’64M’);
Forum: Networking WordPress
In reply to: multisite not showing images for subsitesHi there,
Your public_html is not where your WordPress files are, as shown in your screenshot, so the htaccess in that directory, the root directory, probably isn’t affecting anything. Looks like this is resolved, so please mark it as such.
Forum: Networking WordPress
In reply to: Themes not working on multi site applicationHi @jhavelka747,
I notice that your permalinks are set to the default on the main site. Can you change that to something other than the default?
You mention that /acupabruin is a subpage. To be clear, is it a page on the main site or is it the name of a sub-site? That is, if you go to
https://faceoffviolation.com/wp-admin/network/sites.php
do you see acupabruin in this list?
Forum: Networking WordPress
In reply to: Admin Bar My Sites have wrong linkI don’t know what sites menu you would be seeing in a subsite. For multisite, the only sites menu would be in the network admin, not the dashboard of subsites. Are you running a multi-network plugin?
Forum: Fixing WordPress
In reply to: Home Home page looks messed up on some people's computersHmmmmmm, how about a really old computer? Like one that has the resolution set to 800x600px. Your site’s container has a width of 960px, which is pretty standard. If someone is trying to view your site on monitor that is only 800px wide, some thing are going to wrap to display.
Forum: Fixing WordPress
In reply to: admin page not foundIs this multisite or single site?
Forum: Fixing WordPress
In reply to: Busine Theme Sidebar Not WorkingDid you lose the sidebar or did it get pushed down?