Patrick Johanneson
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Generating wrong url'sYour
.htaccess
file looks like the stock WP Multisite one. Have you tried disabling all your plugins and switching to a default WP theme (eg, Twenty Fifteen) to see if the issue persists?Also: I tried going to
www.thefashionnerd.com
andthefashionnerd.com
, and both times your site loaded correctly (no extraw
prepended to the URL). Could it be a problem with your computer?Forum: Networking WordPress
In reply to: Generating wrong url'sCheck your
wp-config.php
file for a typo. There should be a line that reads:define('DOMAIN_CURRENT_SITE', '[your site's URL]' );
Make sure that
[your site's URL]
is correctly defined. In your case it should bethefashionnerd.com
.You’ll probably need to double-check your database tables, too. Unfortunately, updating the domain in Multisite is a bit of a pain. Fortunately, there are some good resources out there.
See, for example, https://wpengine.com/support/how-to-change-a-multi-site-primary-domain/ .
Also, https://codex.www.ads-software.com/Moving_WordPress#Moving_WordPress_Multisite has some direction, though it sort of assumes you’re well-versed in manually editing your MySQL database.
Forum: Networking WordPress
In reply to: How to edit Homepage textWhen you log in to your WordPress installation, and go to the
/wp-admin
page, please click on Settings and then Reading. You should see a screen like the one displayed here:https://codex.www.ads-software.com/Creating_a_Static_Front_Page#WordPress_Static_Front_Page_Process
What is selected on your site for Front page displays?
Forum: Hacks
In reply to: add cost based on attributeYou may have more luck asking in the WooCommerce support forum.
Forum: Networking WordPress
In reply to: 404 not found issue for first level pages!I’m glad you found the solution.
Forum: Hacks
In reply to: add cost based on attributeThis seems like it should be a question in a plugin’s support forum. Do you know what plugin your site uses for ecommerce?
Forum: Networking WordPress
In reply to: How to edit Homepage textIs the site in question set up to use a page as its home page, or the most recent posts?
Forum: Networking WordPress
In reply to: 404 not found issue for first level pages!On your sites’
wp-admin
screens, go to Settings->Permalinks and click Save Changes (even if you haven’t made any changes). Does that help?Forum: Networking WordPress
In reply to: Create table in database multisite.Instead of using
$wpdb->prefix
, you can use$wpdb->base_prefix
.From the Codex page on the
wpdb
class:$base_prefix
The original prefix as defined inwp-config.php
. For multi-site: Use if you want to get the prefix without the blog number appended.(Emphasis added)
Forum: Networking WordPress
In reply to: Error establishing a database connectionAre you still experiencing the error, or have you resolved your issue?
Forum: Networking WordPress
In reply to: Can't Upload images to main site on subfolder multisiteExcellent. Feel free to mark this thread Resolved using the tools on the right-hand side.
Forum: Networking WordPress
In reply to: Can't Upload images to main site on subfolder multisiteWhat are the permissions on your
uploads
directory? Also, is it/wp-content/uploads
or/uploads
?Forum: Networking WordPress
In reply to: Error establishing a database connectionHave you triple-checked that the MySQL username and password in your
wp-config.php
file are correct?Forum: Networking WordPress
In reply to: Can't Upload images to main site on subfolder multisiteIt sounds from your original post like your host disabled Multisite entirely. Are you sure you’ve still got a WP Multisite network running?
This line especially —
//define('MULTISITE', true);
— looks like you may not have Multiste currently running.Does SiteGround allow Multisite installs?
Forum: Networking WordPress
In reply to: Multisite plugins not appearing in the networked sitesPlugins that are network activated won’t appear in the sites’ Plugin lists. They’ll only show up on the Network Admin plugin list.
If you need a plugin activated on all sites but one, then I believe you’ll need to activate it on each individual site. You can’t network activate it and then turn it off on one site.