Michael Henke
Forum Replies Created
-
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upPlease open the following url, what is the result? replace the <values> according to your setup:
https://<hostname>/wp-admin/admin.php?flattrJAX=true&page=flattr%2Fflattr.php&flattrss_api_key=<key>&flattrss_api_secret=<secret>
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upmight be the same issue with curl close, let me look into it
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Cannot authorize with applicationThanks for the feedback! Very much appreciated!
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upIf this is the only yellow line, modify line 114 in flattr.php to
$retval[“result”] = PASS;
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upIf all results return green, the wizard can continue, if you have a yellow or red result, the wizard will not continue. Your PHP check is yellow, right? If this is the only yellow line, modify line 114 in flattr.php to
$retval[“result”] = PASS;
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upcurl 7.10 apparently has other default values than versions before
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upok, thanks, please include the follwing line before the curl_exec
curl_setopt ($ch, CURLOPT_CERTINFO, false) ;
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false) ;Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upIf you can, please replace lines 136 to 150 (from case “Flattr” to break; in flattr.php with the following lines:
case “Flattr” :
$retval[“text”] = “Flattr API v2”;$ch = curl_init (‘https://api.flattr.com/rest/v2/users/der_michael’);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1) ;
$res = curl_exec ($ch) ;
$res = json_decode($res);
if (isset($res->type)) {
$retval[“text”] = “connection established”;
$retval[“result”] = PASS;
} else {
$retval[“text”] = “curl connection error “.curl_error($ch);
}
curl_close ($ch) ;
break;and then check again please.
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Capabilities check freezes upTry opening https://localhost/wp-admin/admin.php?q=Flattr&flattrJAX=true&page=flattr%2Fflattr.php where you replace localhost with your blogs domain name of course, what is the result?
If it works, it should return something like this:{“result”:”passed”,”feature”:”Flattr”,”text”:”connection established”}
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] How do I remove the plugin completelySome time within this week. Stay tuned.
Forum: Plugins
In reply to: [Flattr] change default tag(s)No there isn’t. What whould you like it to be?
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Callback Error.The next update will use the new flattr API v2 and authorization issues should be fixed.
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] Is the plugin working for wordpress 3.3.1?It’s bleeding edge currently, not recommended for production and live. I will not provide support for this version although feedback is greatly appreciated: https://dropbox.codingmerc.com/u/2027652/flattr.zip
Forum: Fixing WordPress
In reply to: [Flattr] Flattr won't work with Sub-Domainsthe plugin works perfectly well with wordpress subdomain installs. Issues/conflicts with other plugins can not be supported.
Forum: Plugins
In reply to: [Flattr] [Plugin: Flattr] bugs on the settings sub pagesSorry, can not reproduce.