mrengy
Forum Replies Created
-
Don’t get me started on HG support. I’ve given up hope on them long ago.
http://www.abetterworldbydesign.com/wp-admin/network/
redirects to
http://wp-admin/network/Thanks all for the replies. Okay, I’ve changed those lines in wp-config.php to
define( 'MULTISITE', true ); define( 'WP_ALLOW_MULTISITE', true );
I’ve also updated it in pastebin.
The front end of the site is behaving normally, but I’m still having the issue originally described with the “network admin” URL.
@ipstenu – good call. The forum did add the http:// to my value for wp_site: domain. It actually reads www(dot)abetterworldbydesign(dot)com in the database.
As for WP_ALLOW_MULTISITE, the support team at HostGator did some tinkering with it. that line currently reads:
define( 'MULTISITE', true ); //hg commented this, to be replaced by next line: //define( 'WP_ALLOW_MULTISITE', true );
Toggling the commented lines to:
//define( 'MULTISITE', true ); //hg commented this, to be replaced by next line: define( 'WP_ALLOW_MULTISITE', true );
causes a “Error establishing database connection” message in the browser.
Here’s my entire wp-config.php in pastebin (secure items replaced with “###”).
.htaccess code:
# BEGIN WordPress Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress
select lines from wp-config.php:
define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'www.abetterworldbydesign.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
define( ‘DOMAIN_CURRENT_SITE’, ‘www.abetterworldbydesign.com’ );
I’ve been communicating with tech support at my web host about this. They’ve looked into things, and they’ve been stumped. Here’s the info they provided me from what they found though.
“The issue here is that the value returned by network_admin_url(); when called by your blog isn’t correct. I’m not sure where or how this is stored in your database.”
Any idea where the value returned by network_admin_url(); is stored in the database?
- wp_site: domain = http://www.abetterworldbydesign.com | path = /
- wp_sitemeta: meta_value[siteurl] = http://www.abetterworldbydesign.com/
- wp_options: option_name[siteurl] = http://www.abetterworldbydesign.com
- wp_3_options: option_name[siteurl] = http://www.abetterworldbydesign.com/2010/
wp_3 represents the only other WordPress blog (other than the root) that I currently have in this install of WP Multisite.
Only discrepancy I noticed is that #2 has a trailing slash and #3 does not. Not sure what these values should be specifically, but everything looks as expected with my limited knowledge of what the database should look like.
Okay, thanks. Where specifically in the database should I be checking?
Forum: Fixing WordPress
In reply to: fatal error – image.phpI’m using F8-lite theme. Deleting the whole
<div class="navigation"> <div class="nav-image-left"><?php mf_previous_image_link( '←' ) ?></div> <div class="nav-image-up"><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment">↑</a></div> <div class="nav-image-right"><?php mf_previous_image_link( '→' ) ?></div> </div>
(in image.php) worked for me. I’ve had a lot of problems with this theme…
Forum: Plugins
In reply to: [Plugin: top-commentators-widget ] Not listing usersDon’t believe I had any caching options enabled. I couldn’t get this to work on WP 3.0, so I wrote my own plugin. http://wordpress.org/extend/plugins/simple-top-commenters/
Forum: Plugins
In reply to: [Plugin: top-commentators-widget ] Not listing usersIn the mean time, if you don’t mind tinkering around with the settings and save them, that would sometimes solve the problem.
webgrrl, can you be more specific? Is it really just a matter of mashing the settings, saving, and trying again ad infinitum?
Forum: Plugins
In reply to: [Plugin: Degradable HTML5 audio and video] Doesn’t work on iPad/iPhone SafariI was having the same problem – the video played using the Flash player on desktop browsers but did not play on the iPhone.
There is some thorough documentation about HTML5 video formats at Dive Into HTML5.
I first tried exporting as .m4v files (using Quicktime) and .flv to cover all bases. But that did not play on the iPhone. I then followed the recommendations at Dive Into HTML5 to export as a .mp4 video file encoded as H.264 video.
Still not playing on the iPhone. Looking into the code, further, this plugin seems to be built to handle .m4v files but not .mp4 files.
In the file: degradable-html5-audio-and-video.php, I changed all of the instances of “m4v” to “mp4”
Then I changed my code in the post to [video src="/myblog/wp-content/uploads/2010/09/video-filename" format="mp4,flv"].
That worked on the iPhone, desktop Safari, and Firefox Mac.
Forum: Plugins
In reply to: [Plugin: BuddyPress Template Pack] How do you undo what this thing does?P.S. I’m on WP 3.0, BuddyPress 1.2.5.2, TemplatePack 1.0.2
Forum: Plugins
In reply to: [Plugin: BuddyPress Template Pack] How do you undo what this thing does?Yeah, I’m not sure about it either. Someone else had installed BuddyPress and the BP Template Pack plugin on this site I am working on, and the BuddyPress links weren’t working right (they all just redirected to the homepage), so I am debugging.
1. deactivated and deleted both BuddyPress and the BP Template Pack within the WordPress admin section.
2. downloaded and uploaded the original BuddyPress and BP Template Pack plugins via FTP.
3. activated BuddyPress.
4. activated BP Template Pack.
5. go to Appearance – BP CompatibilityIt says “Step Three – Now that the template files are in the correct location…” and goes on to describe the steps for fixing alignment in BuddyPress pages by tweaking HTML.
How do I force the BP Template Pack to go back to step 1? Or otherwise, where else can I see the complete list of steps this thing walks you through?
That was it. Thanks!