deafwiggle
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite sub-site loginI don’t (yet) understand the mechanics of how WP redirects anything, so won’t speculate on what does what.
I’m logging in as a subsite user (administrator) into the subsite at:
example.com/subsite/wp-login.php
(User was specified when creating the subsite.) Site URL then changes to:
example.com/wp-admin/user/
instead of:
example.com/subsite/wp-admin/
Superadmin log in works fine (everything on the primary site works as expected).
I can’t imagine anything in wp-config.php would be contributing to this (I’ve added all the code as directed by the two-step multisite enabling process). However, perhaps the same multisite enabling process’ revisions to .htaccess are making a difference. Here is its content:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
(Hope I got the CODE bits right this time. %-} )
Note: I do not have a solid grasp on how .htaccess works either. Suggestions on things to try are most welcome.
Cheers!
DirkForum: Networking WordPress
In reply to: Multisite sub-site login(Apologies for not using CODE tags; not familiar yet with what does what here.)
So far, base WP 3.6.1 install, only stock plugins installed and none enabled.
When I get the base multi-site stuff working, I’ll be adding domain mapping (subsites will have their own domain names).
If it’s of value, I’d be happy to post wp-config.php and .htaccess.
Thanks for your response, Mika.
Cheers!
DirkForum: Plugins
In reply to: [Nice Quotes Rotator] [Plugin: Nice Quotes Rotator] 3 issues with WP 3.1.3Wow. That was quick! Thank you!
Problem continues in WP 2.7.1.
Note: This occurs with WP_DEBUG set to true (if false, the warning is suppressed).
I’m experiencing exactly the same thing on Kubuntu 8.04.1, WP 2.7. I have verified that my server’s name resolves to localhost and 127.0.0.1. On the server itself, I can browse to and ping any of localhost, 127.0.0.1 or the server name with no problem.
Forum: Plugins
In reply to: Email post author on commentI second this. I manage a blog that is multi-author. The blog’s email address is my own, but each author is responsible for moderating their own comments and should be getting notices only for comments to their own posts.
Currently, I’ve employed the comments-notifier plug-in, but its only option is to produce notices to everyone for all comments, regardless of post authorship.
Anyone?