wordpressuser
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Commentor’s email got revealedYes, I get this exact problem too, with any template and no google acc.
To recreate:
1. login and navigate to your main page (front-end)
2. Click on any article title
3. Click on the title/header of the article page
4. You are now returned to the main page but it is displaying you as logged out even though you are not…Must be a session or global getting destroyed somewhere; I don’t have time to investigate! Damn!
Forum: Fixing WordPress
In reply to: How can I auto logout in 1.5 “Strayhorn”?I find this crucial, am looking for ways…
Here is a cookie timeout plug but haven’t tested it yet…
nowhttps://www.freemoby.com/2005/05/21/wordpress-plugin-cookie-timeoutForum: Fixing WordPress
In reply to: Commentor’s email got revealedJust updating my above post. It actually is logging me out when I select logout. BUT, when I navigate to a post page or any other page and then return to the main page by clicking on on the title it will indicate I have logged out and show the register / login link. Then when I click the login link it will magically show me as logged in again. Hmmm, mysterious…
Forum: Fixing WordPress
In reply to: Commentor’s email got revealedI have wp 1.5.1.2 and have noticed this behaviour, as well as the odd occaision where it logs me out and then I can still get in by going back to an admin page. The following code is the reason for the automatic insertion of name/email within comments.php:
“
<input type=”text” name=”author” id=”author” value=”<?php echo $comment_author; ?>” size=”30″ tabindex=”1″ />
<label for=”author”>Name <?php if ($req) _e(‘(required)’); ?></label><input type=”text” name=”email” id=”email” value=”<?php echo $comment_author_email; ?>” size=”30″ tabindex=”2″ />
<label for=”email”>E-mail (<?php if ($req) _e(‘required, ‘); ?>never displayed)</label>
“If you delete the php code within the values for name and email and uri, it will give a quick-fix-hack to the second problem. BUT I am quite concerned that I am not getting logged out correctly.
BTW, I’m not using any Google stuff…
Thanks.
Anyone else got a better fix to this/these issues?