forget-me-not
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments not working – but not a 404 error!Joseph – thank you so much for your sleuthing! That has done the trick. Feel a bit stupid now that it was so simple, not closing the search form! Thanks again
Forum: Fixing WordPress
In reply to: Comments not working – but not a 404 error!This is the comments part of single.php, with your previous suggestion
<div class="comments"> <form action="<?php echo bloginfo('wpurl'); ?>/wp-comments-post.php" method="post"> </div>and the old version:
<div class="comments"> <?php comments_template(); ?> </div>Thanks so much for your help!
Forum: Fixing WordPress
In reply to: Comments not working – but not a 404 error!In single.php? I tried that and now don’t have a comment box at all so I’m thinking I put it in the wrong place?
Forum: Fixing WordPress
In reply to: Comments not working – but not a 404 error!I have tried replacing arthemia’s comments.php with the default comments.php but still no luck. When I submit a comment like “I love tomatoes any wh ich way; I am definitely going to try these!”, I am taken back to the homepage, with this URL:
Anyone else had this issue? I am confident with html/css but not so hot on php, I’m not sure what I’m looking for to fix this…
Forum: Fixing WordPress
In reply to: Comments not working – but not a 404 error!It’s not a plugin issue – seems to be a theme issue. Darn! I’m able to post a comment on the default theme. I will go and hunt through arthemia’s comments.php and post if I figure it out.
I had the same problem after switching servers and fixed it this way:
In php.ini find session.save_path
This should have a directory location to your temp/tmp folder.
php.ini had my old temp location: session.save_path = “C:\WINDOWS\Temp”
I changed this to the new server temp folder location: session.save_path = “/home5/tommyand/public_html/temp”
and reuploaded php.ini
And my error messages went away.Phew!