jwheck
Forum Replies Created
-
Forum: Plugins
In reply to: [Logos Reftagger] Links work fine but not tooltipsI’m also seeing this problem on https://lazaroo.com.
Forum: Plugins
In reply to: [AMP] W3 Total Cache – Browser Cache IssueIf you are using the Cloudflare plugin for WordPress, turn off the “HTTPS Protocol Rewriting” setting in the Cloudflare plugin. That fixed it for me.
Forum: Plugins
In reply to: [WP eCommerce] Fatal Error WPSC_CountriesI had not since making the “$this->_map_data = false;” change.
I clicked it and it had no effect.
Forum: Plugins
In reply to: [WP eCommerce] Fatal Error WPSC_CountriesJeff,
That seemed to work for a little bit until I refreshed a few times, then I got the same error again.
Forum: Plugins
In reply to: [WP eCommerce] Fatal Error WPSC_CountriesThe server is using the latest version of APC: 3.1.13
A quick correction: the client’s site is hosted on Mediatemple’s Premium WordPress Studio, not a VPS.
Thanks for replying!
Forum: Plugins
In reply to: [WP eCommerce] Fatal Error WPSC_CountriesMy client is using a MediaTemple VPS for hosting and getting the same error, so it’s not just a Godaddy issue.
Renaming the object-cache.php file worked. The suggested code fixes did not work for me.
Forum: Plugins
In reply to: [Scheduled Content] Shortcodes in scheduled contentThis may be quick and dirty, but it works.
On line 66 of wp-content/plugins/scheduled-contnet-by-streama/index.php add:
$return = do_shortcode($return);
Forum: Plugins
In reply to: [Facebook Comments] Facebook Comments Language ErrorsSince my webhost will not install phpxml in the name of security, I made a workaround by downloading https://www.facebook.com/translations/FacebookLocales.xml and copying the file the the facebook-comments-plugin folder on my server.
Then I edited the code in class-admin.php starting at line 194:
$blog_url = get_bloginfo('wpurl'); // get blog URL (ex: https://mywebsite.com) $plugin_url = plugin_dir_url(__FILE__); // get plug-in URL (ex: https://mywebsite.com/wp-content/plugins/facebook-comments-plugin/ ) $plugin_url = str_replace($blog_url, '..', $plugin_url); // strip out blog URL so load command will look for local file $dom_object->load($plugin_url."FacebookLocales.xml"); // load local file
Another (and IMHO, better) option would to use cURL (which my webhost does allow) for loading external files.
First add the following function:/* * curl_get() to perform curl call to get external file and return as string * Copied from https://php.net/manual/en/function.curl-exec.php#98628 */ function curl_get($url, array $get = NULL, array $options = array()) { // added line below to handle http_build_query() warning if (!empty($get)) $httpbuildquery = http_build_query($get); $defaults = array( CURLOPT_URL => $url. (strpos($url, '?') === FALSE ? '?' : ''). $httpbuildquery, CURLOPT_HEADER => 0, CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_TIMEOUT => 4 ); $ch = curl_init(); curl_setopt_array($ch, ($options + $defaults)); if( ! $result = curl_exec($ch)) { trigger_error(curl_error($ch)); } curl_close($ch); return $result; }
Next change line 198 from
$dom_object->load("https://www.facebook.com/translations/FacebookLocales.xml");
to$FacebookLocalesXML = curl_get("https://www.facebook.com/translations/FacebookLocales.xml"); $dom_object->loadXML($FacebookLocalesXML);
That works great! Thanks, Under_Dog!
Same here. I can switch between WYSIWYG and HTML on the main content block, but not the added block – just HTML.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS] 404 Error@texasbiz, did you get it working? I was able to see your site, posts AND pages with no problem.
The site I am trying to fix is also on Site5.
Thanks,
JeffNever mind. I just realized my site got hacked and there should be nothing in the file but this:
<?php //silence ?>
right?
Forum: Plugins
In reply to: [Facebook Tab Manager] [Plugin: Facebook Tab Manager] Page Not Found ErrorI got a 404 error, too. So made a page called ‘fbtab’, and saved it as a draft. The tab page came up fine after that.
I suspect this happened because I’m on a Windows server on Godaddy. I’ve had issues with directory redirects before. I think this could have been fixed with a change to my web.config file, but I don’t have time to research it today.
Forum: Plugins
In reply to: [Plugin: Postie] Can’t install in WPMUTunghoy,
I deleted the Postie 1.3.2 plugin by FTP and installed the previous version (1.3.1) from here
https://www.ads-software.com/extend/plugins/postie/download/
Worked fine after that. Just remember not to update it until after the problem with 1.3.2 is resolved.Forum: Plugins
In reply to: [Plugin: Audio Player] Firefox update breaks this!Looks like the object tag needs <embed> code to work in Firefox. I’m using Firefox 3.0.5 with Flash Player 10 on Vista.
Replace the following code in /wp-content/plugins/audio-player.php around line 298
if( get_option("audio_player_transparentpagebg") ) $bgparam = '<param name="wmode" value="transparent" />'; else $bgparam = '<param name="bgcolor" value="' . get_option("audio_player_pagebgcolor") . '" />'; return '<object type="application/x-shockwave-flash" data="' . $ap_playerURL . '" width="290" height="24" id="audioplayer' . $ap_playerID . '"><param name="movie" value="' . $ap_playerURL . '" /><param name="FlashVars" value="' . $flashVars . '" /><param name="quality" value="high" /><param name="menu" value="false" />' . $bgparam . '</object>';
with this:
if( get_option("audio_player_transparentpagebg") ) $bgparam = '<param name="wmode" value="transparent" />'; else $bgparam = '<param name="bgcolor" value="' . get_option("audio_player_pagebgcolor") . '" />'; return '<object type="application/x-shockwave-flash" data="' . $ap_playerURL . '" width="290" height="24" id="audioplayer' . $ap_playerID . '"><param name="movie" value="' . $ap_playerURL . '" /><param name="FlashVars" value="' . $flashVars . '" /><param name="quality" value="high" /><param name="menu" value="false" />' . $bgparam . '<embed src="' . $ap_playerURL . '?FlashVars=' . $flashVars . '" quality="high" pluginspage="https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="290" height="24"></embed></object>';