ahering
Forum Replies Created
-
Forum: Plugins
In reply to: CM AD ChangerFinally found a solution, posting it here just in case someone runs into the same issue, I have replaced the getimageresize() with this function:
function getimgsize($url, $referer = ”)
{
$headers = array(
‘Range: bytes=0-32768’
);/* Hint: you could extract the referer from the url */
if (!empty($referer)) array_push($headers, ‘Referer: ‘.$referer);$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);$image = imagecreatefromstring($data);
$return = array(imagesx($image), imagesy($image));
imagedestroy($image);
return $return;
}Thank you for the reply. I have found the problem is a conflict with the HTTPS plugin. I do not know yet why that happened or how to fix it, but at least I know where to look at now.
Forum: Installing WordPress
In reply to: Multiple WP Installations on a single GoDaddy hosting planYes, two blank installations, separated credentials for each.
Forum: Plugins
In reply to: How do I create user specific pages?Try with wp-members plugin to secure pages, you can customize it as much as you want. You can probably combine it with the User Specific Content plugin and display either user or role specific content.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Pipes not working at allYes, version 4.2.3, actually now it is 4.2.4, but yeah. The name of the select tag most be “recipient” otherwise it won’t work, a real pain, but it did fix it for me.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Pipes not working at allAfter and exhaustive research and test, I have resolved the issue, it is soooo stupid, but you MUST use the name “recipient”
[select recipient “name|email01@test.com” “name2|email02@test.com”]