Robert
Forum Replies Created
-
Ron,
Turns out the alias to www. wasn’t commented out so it was still going there. Everything is working again now.
I just had them change mappeddomain.schooldomain.edu to be an alias for ourwordpresssite.schooldomain.edu instead of https://www.ourwordpresssite.schooldomain.edu – unfortunately that didn’t seem to make a difference…
Thanks Ron. That makes sense.
I talked to our server admins and they said the following:
We have a dns alias pointing to the cluster that hosts our site. We have a vhost with a server alias for https://www.ourwordpresssite.schooldomain.edu that redirects to ourwordpressite.schooldomain.edu
mappeddomain.schooldomain.edu then is an alias to https://www.ourwordpresssite.schooldomain.edu
They ensure me that this is the same configuration we had before we changed the site from ourwordpressite2.schooldomain.edu to ourwordpressite.schooldomain.edu (the Domain Mapping was working fine prior to the domain name change on the network base site).
Any ideas or suggestions on how to proceed? Thanks again!
Can you tell me if prefix_domain_mapping_logins should have anything in it or not?: it has structure but there is no data to browse. prefix_domain_mapping contains a list of the domains we wish to map.
thanks again!
Hi Ron!
If you mean by going to the sites with domain mapping and re-adding them via Tools->Domain Mapping, then yes.
Thanks!
Okay, I got the tables back by running these queries in the database:
CREATE TABLE IF NOT EXISTS
prefix_domain_mapping(
id` bigint(20) NOT NULL auto_increment,
blog_id
bigint(20) NOT NULL,
domain
varchar(255) NOT NULL,
active
tinyint(4) default ‘1’,
PRIMARY KEY (id
),
KEYblog_id
(blog_id
,domain
,active
))CREATE TABLE IF NOT EXISTS
prefix_domain_mapping_logins
(id
bigint(20) NOT NULL auto_increment,
id
varchar(32) NOT NULL,
user_id
bigint(20) NOT NULL,
blog_id
bigint(20) NOT NULL,
t
timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (id
))`However, now I’m back to where I started with the mapped domains just going to the network’s base domain. Anybody have any ideas?
Forum: Plugins
In reply to: [Promotion Slider] Image transitionsGood to hear! I had the same thought as bearsandballoons – it would also be nice if we had some control over the transitions, like say if we could make the ‘slider’ actually slide instead of fade in/fade out ??
Thanks!
Forum: Fixing WordPress
In reply to: Getting the 'About Me' section back after removing itUh, nevermind – just had to comment it out and it came right back ??
Forum: Fixing WordPress
In reply to: Getting the 'About Me' section back after removing itFYI – this is the one I used:
<?php // Callback function to remove default bio field from user profile page function remove_plain_bio($buffer) { $titles = array('#<h3>About Yourself</h3>#','#<h3>About the user</h3>#'); $buffer=preg_replace($titles,'<h3>Password</h3>',$buffer,1); $biotable='#<h3>Password</h3>.+?<table.+?/tr>#s'; $buffer=preg_replace($biotable,'<h3>Password</h3> <table class="form-table">',$buffer,1); return $buffer; } function profile_admin_buffer_start() { ob_start("remove_plain_bio"); } function profile_admin_buffer_end() { ob_end_flush(); } add_action('admin_head', 'profile_admin_buffer_start'); add_action('admin_footer', 'profile_admin_buffer_end'); ?>
I am getting this error too. Our server has mod_security installed – will the next version mentioned here run on a server with mod_security?
Thanks!
Forum: Networking WordPress
In reply to: LiveWriter/XMLRPC and multi-siteYeah, the iOS app is working well for me too. I also just found out that Windows Live Writer is working fine on our staging server, but not on our production server – so it must be something in a plugin or the theme causing the problem with Windows Live Writer, strange that it works fine on iOS though…
Forum: Networking WordPress
In reply to: LiveWriter/XMLRPC and multi-siteI’m guessing this was never fixed as I’m getting this error today. I was hoping to use Windows Live Writer with our WordPress Multisite install, but I too am getting the error:
—————————
Windows Live Writer
—————————
You signed in successfully with a blog account, but you do not have a blog with this service provider.Check with the blog service provider and then try again.
I tried BlogDesk as suggested above, but it does not appear to have any kind of support for Pages, which is a must for our sites. We have disabled the WYSIWYG editor in wordpress, and I was hoping we could deploy WLW as an alternative for those who do not know html. This is a total bummer ??
Forum: Plugins
In reply to: SFC Facebook Fan Box VanishedYeah, it was a chrome extension I was using that was blocking Facebook, so totally my fault.
But, I just checked it out in IE9 and it still doesn’t show in IE9 Final.
Disclaimer: I haven’t tried this, so I don’t know if it works, but you could try something similar to below (changes in bold)
<?php
//Displays the widget
function MostVotedAllTime_Widget() {
$a = SortVotes();
//Before?>
<div class=”votewidget”>
<div class=”title”>Most Voted</div>
<?php
$rows = 0;//Now does not include deleted posts
$i = 0;
while ($rows < get_option(‘voteiu_widgetcount’)) {
if(is_category(‘Category ID or Slug or Name’)) {
if ($a[0][$i][0] != ”) {
$postdat = get_post($a[0][$i][0]);
if (!empty($postdat)) {
$rows++;if (round($rows / 2) == ($rows / 2)) {
echo ‘<div class=”fore”>’;
} else {
echo ‘<div class=”back”>’;
}
echo ‘<div class=”votecount”>’.$a[1][$i][0].’ ‘.Pluralize($a[1][$i][0], ‘votes’, ‘vote’).’ </div><div>guid.'” title=”‘.$postdat->post_title.'”>’.$postdat->post_title.’</div>’;
echo ‘</div>’;
}
}
if ($i < count($a[0])) {
$i++;
} else {
break; //exit the loop
}
}
}//End
?>Note that you’ll want to replace is_category(‘Category ID or Slug or Name’) with the ID, Slug, or Name you want to use.
Forum: Plugins
In reply to: [Promotion Slider] [Plugin: Promotion Slider] Bug in Version 3.3.0Awesome, thanks! Is this the best place to report problems or is there somewhere better?