the openid plugin always either fails, or if the site i'm trying to login to gives more info, i notice that it's directing me to a 404 page.
http://mysite.com/index.php/openid/server gives the 404.
i went into openid/common.php and changed:
if ($wp_rewrite->using_permalinks()) {
$url .= 'index.php/openid/' . $service;
to
if ($wp_rewrite->using_permalinks()) {
$url .= 'openid/' . $service;
and now I can get things to work. is there a way to get around having to edit this plugin manually to get this to work? i don't necessarily want to have to remember how i fixed this every time the plugin is updated.