Turns out my hosting provider changed something that modified PHP's header settings. Perhaps it was a regular php update with new security defaults, perhaps something else.
Regardless, the fix was to install a rewrite rule in .htaccess in the same directory as the phpmyid script:
RewriteEngine on
RewriteCond %{HTTP:Authorization} !^$
RewriteCond %{QUERY_STRING} openid.mode=authorize
RewriteCond %{QUERY_STRING} !auth=
RewriteCond %{REQUEST_METHOD} =GET
RewriteRule (.*) %{REQUEST_URI}?%{QUERY_STRING}&auth=%{HTTP:Authorization} [L]
If you have command line access, the following commands will create the file for you:
echo 'RewriteEngine on' >> .htaccess
echo 'RewriteCond %{HTTP:Authorization} !^$' >> .htaccess
echo 'RewriteCond %{QUERY_STRING} openid.mode=authorize' >> .htaccess
echo 'RewriteCond %{QUERY_STRING} !auth=' >> .htaccess
echo 'RewriteCond %{REQUEST_METHOD} =GET' >> .htaccess
echo 'RewriteRule (.*) %{REQUEST_URI}?%{QUERY_STRING}&auth=%{HTTP:Authorization} [L]' >> .htaccess
I found my answer here, http://mikewest.org/2007/01/setting-up-an-openid-server-with-phpmyid , as it turns out that the error I was getting was actually "Missing expected authorization header."