dh
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Missed ScheduleI am running WordPress 2.7 (we need an upgrade) on IIS 7, we host ourselves. We had the scheduling problem and I found a solution that worked.
http://www.kimwoodbridge.com/scheduled-posts-in-wordpress-dont-work-a-possible-solution-for-iis/
Now the bit to change was slightly different (must be the different WP versions), but it still worked.
Around line 180 of /wp-includes/cron.php is the following
$cron_url = get_option( ‘siteurl’ ) . ‘/wp-cron.php?check=’ . wp_hash(‘187425’);we change to:
$cron_url = ‘http://127.0.0.1/wp-cron.php?check=’ . wp_hash(‘187425’);
and scheduled posts now work.
I hope this helps someone else
Forum: Plugins
In reply to: Organizer Plugin Erroranyone else? the server is windows 2003 server
anoyone any ideas
Forum: Fixing WordPress
In reply to: Keep users logged in over multiple blogsbump
Forum: Fixing WordPress
In reply to: Keep users logged in over multiple blogsanyone?
Forum: Fixing WordPress
In reply to: Keep users logged in over multiple blogsnope, already read that one earlier …. surely someone’s done this before?! 🙁
thanks anyway
Forum: Fixing WordPress
In reply to: Keep users logged in over multiple blogsthanks for that.
http://wordpress.org/support/topic/73541?replies=16#post-560483Had a semi solution: adding this code to the wp-config file of secondary blogs:
$public_cookiehash = md5('http://www.blogs.rhskids.org'); define('USER_COOKIE', 'wordpressuser_'. $public_cookiehash); define('PASS_COOKIE', 'wordpresspass_'. $public_cookiehash);This only works though on one of our ‘sub’-blogs, the first one we did it to. I’ve added the same code to the wp-config files of our other subject blogs and it doesn’t work: the user still needs to log in again. Any ideas?
$public_cookiehash = md5(‘http://www.example.com’);
define(‘USER_COOKIE’, ‘wordpressuser_’. $public_cookiehash);
define(‘PASS_COOKIE’, ‘wordpresspass_’. $public_cookiehash);I’m trying to do the same thing. The above code works for the second blog, or 1st child blog (if you want to call it that) fine, but doesn’t work when I’ve put it in the wp-config files of other additional blogs. Any ideas?