kahlan
Forum Replies Created
-
Forum: Plugins
In reply to: [Authorizer] CAS authentication gives user errorPaul – thank you for all your help. I updated line 685 and it solved the problem for me. Glad to hear it will be in the next official release. 🙂
Forum: Plugins
In reply to: [Page Links To] How to tell what I'm using this forI know you asked this awhile back, but to help other Googlers:
SELECT * FROM wp_postmeta WHERE meta_key = “_links_to”
(If you’re not using the default wp prefix, just change wp_postmeta to yourprefix_postmeta).
To change the link you can place this code inside your theme’s functions.php file:
add_filter('login_headerurl', 'wpc_url_login'); function wpc_url_login() { return home_url(); }Bless you, n0x. I had the same problem and your solution worked perfectly.
I just switched to the twentyten theme for a minute, and it resolved the error. So it’s definitely a problem with my “garland-revisited” theme (http://wordpress.org/extend/themes/garland-revisited).
Running WP 3.0.4 with WordPress HTTPS 1.8.5
Internal HTTPS elements, Disable Automatic HTTPS, and Force SSL Exclusively are on. The other WordPress HTTPS settings are unchecked.