jeffpblues
Member
Posted 1 year ago #
I have an installation of WP 3.0, with a subdomain network. I've installed CIMY Extra Fields successfully, and have it working.
I just installed Theme My Login 5.1.5 and it is set to re-write login links. But anytime I try to logout, I get the following error:
Not Found
The requested URL /login/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
--------------------------------------------------------------------------------
Apache/2.0.63 etc., etc., etc.
http://wordpress.org/extend/plugins/theme-my-login/
jeffpblues
Member
Posted 1 year ago #
So that turned out to be a Theme problem that I still haven't worked out, but that is for another time.
Now, I have a site under development that I have CIMY User Extra Fields setup on. The site is WP 3.0, with a subdomain network. I have CIMY working well, with several extra required registration fields. This is an essential feature and can't be taken out.
I also have (had) Theme My Login 5.1.5 working on the same site. The only problem is the CIMY registration fields do not show up when I click a 'register' link.
Any ideas?
TML calls the same actions as the regular WP login page, minus 'login_header'. Maybe somehow, someway, CIMY Extra Fields uses that hook. Try adding it via the wp_header action. For instance, this will call it on every page (useful if you use the TML widget):
function login_head_action() {
do_action('login_head');
}
add_action('wp_head', 'login_head_action');
jeffpblues
Member
Posted 1 year ago #
Ok, please forgive me but where is it that I put that code? (i wasn't planning on using the TML widget at this point).
Thanks
jeffpblues
Member
Posted 1 year ago #
Hmmm, i'm using WP 3.0 setup as a 'network', which is like the old MU version. In non-network setup, clicking a 'register' link takes you to the wp-login.php?action=register. But in 'network' mode, that gets re-directed to wp-signup.php. Does this help with troubleshooting?
No, that is what it's supposed to do, because TML does not yet support multi-site.
jeffpblues
Member
Posted 1 year ago #
Drat. :-) Is there anything I can do?
You could implement a custom solution.
jeffpblues
Member
Posted 1 year ago #
Thanks Jeff. I appreciate your time here. I just found out that a multi-site installation of WordPress automatically 'themes' the register page. (doh!) So the problem I'm having has to do with the CIMY User Extra Fields plug-in, and the creator of that plug-in, is currently working on getting that corrected. Your plug-in, and his, are a great combination!