zajo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login Problems – one more time (please developers???)umm, but moxie is already using that…
http://www.sexygirlgeek.com/share/wp-login.phps
seems to be identical to http://www.spoenk.nl/public/wp-login.phpsso, what is the improvement?
am i missing something?Forum: Fixing WordPress
In reply to: Login Problems – one more time (please developers???)Moxie,
which path is set in the cookie?To my posting above: Somehow during installation “home” was set to “http://hostname/index.php” which is clearly wrong, as the function to define COOKIEPATH adds a trailing slash after that. The path in the cookie was set to “/index.php/” and that couldn’t work.
In the meantime i corrected the value for “home” (that’s the blog-address set in the general options).
The path in the cookie should be the root of your wordpress install.
Are you sure it is the cookie-problem you have?
Symptoms here (for cookie problems):
correct login leads back to login page,
wrong login says “wrong login” or “incorrect password”Forum: Fixing WordPress
In reply to: Login Problems – one more time (please developers???)Obviously it is a problem with the cookie-path. I tracked it down to the definition of COOKIEPATH in wp-functions/vars.php, where I replaced (in line 115)
get_settings(‘home’)
with
get_settings(‘siteurl’)
“Siteurl” has to be set correctly, of course (My Snapshot from Jan, 07 2005, btw.).
I’m not sure if this is the right way to resolve the problem, my testinstall on localhost worked out-of-the-box and the only real difference to the defective install is my apache version (1.3.x instead of 2.0.x).
Comments?