SOLUTION TO:
“No input file specified. ” ERROR on OpenID v3.3.2:
If you get a URL start like this:
https://www.example.com/index.php/openid/consumer?janrain_nonce=
1 – Go the folder where OpenID is installed. (Usually: /wp-content/plugins/openid).
2 – Open “common.php”
3 – Go to line 619
4 – You will see the following code:
$url .= 'index.php/openid/' . $service;
5 – Change to look like this:
$url .= 'openid/' . $service;
6 – Notice that index.php/
has been removed.
7 – Save the file
8 – That’s it!
I hope this steps solve the problem… it work for me.