comments.php in default theme:
Line 92 – <form action=”<?php echo get_option(‘url’); ?>/wp-comments-post.php” method=”post” id=”commentform”>
I changed it to:
<form action=”<?php echo get_option(‘url’); ?>/wordpress/wp-comments-post.php” method=”post” id=”commentform”>
It works fine.
get_option(‘url’) must be the issue but I don’t have time to chase it down. Must be a bad call of some kind.
Tom