Title: jwheck's Replies | WordPress.org

---

# jwheck

  [  ](https://wordpress.org/support/users/jwheck/)

 *   [Profile](https://wordpress.org/support/users/jwheck/)
 *   [Topics Started](https://wordpress.org/support/users/jwheck/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jwheck/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jwheck/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jwheck/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jwheck/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jwheck/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Logos Reftagger] Links work fine but not tooltips](https://wordpress.org/support/topic/links-work-fine-but-not-tooltips/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/links-work-fine-but-not-tooltips/#post-12410298)
 * I’m also seeing this problem on [http://lazaroo.com](http://lazaroo.com).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AMP] W3 Total Cache – Browser Cache Issue](https://wordpress.org/support/topic/w3-total-cache-browser-cache-issue/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/w3-total-cache-browser-cache-issue/#post-7042301)
 * If 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Fatal Error WPSC_Countries](https://wordpress.org/support/topic/fatal-error-wpsc_countries/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-wpsc_countries/page/4/#post-4928173)
 * I had not since making the “$this->_map_data = false;” change.
 * I clicked it and it had no effect.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Fatal Error WPSC_Countries](https://wordpress.org/support/topic/fatal-error-wpsc_countries/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-wpsc_countries/page/4/#post-4928171)
 * Jeff,
 * That seemed to work for a little bit until I refreshed a few times, then I got
   the same error again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Fatal Error WPSC_Countries](https://wordpress.org/support/topic/fatal-error-wpsc_countries/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-wpsc_countries/page/4/#post-4928168)
 * The 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Fatal Error WPSC_Countries](https://wordpress.org/support/topic/fatal-error-wpsc_countries/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-wpsc_countries/page/4/#post-4928166)
 * My 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scheduled Content] Shortcodes in scheduled content](https://wordpress.org/support/topic/shortcodes-in-scheduled-content/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/shortcodes-in-scheduled-content/#post-3999510)
 * This 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments] Facebook Comments Language Errors](https://wordpress.org/support/topic/facebook-comments-language-errors/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/facebook-comments-language-errors/#post-3165837)
 * Since my webhost will not install phpxml in the name of security, I made a workaround
   by downloading [http://www.facebook.com/translations/FacebookLocales.xml](http://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: http://mywebsite.com)
       $plugin_url = plugin_dir_url(__FILE__); // get plug-in URL (ex: http://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 http://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("http://www.facebook.com/translations/
   FacebookLocales.xml");` to
 *     ```
       $FacebookLocalesXML = curl_get("http://www.facebook.com/translations/FacebookLocales.xml");
       $dom_object->loadXML($FacebookLocalesXML);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple content blocks] [Plugin: Multiple content blocks] Editor tabs (Wysiwyg and HTML) broken](https://wordpress.org/support/topic/plugin-multiple-content-blocks-editor-tabs-wysiwyg-and-html-broken/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-multiple-content-blocks-editor-tabs-wysiwyg-and-html-broken/#post-2444837)
 * That works great! Thanks, Under_Dog!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple content blocks] [Plugin: Multiple content blocks] Editor tabs (Wysiwyg and HTML) broken](https://wordpress.org/support/topic/plugin-multiple-content-blocks-editor-tabs-wysiwyg-and-html-broken/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-multiple-content-blocks-editor-tabs-wysiwyg-and-html-broken/#post-2444791)
 * Same here. I can switch between WYSIWYG and HTML on the main content block, but
   not the added block – just HTML.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS] 404 Error](https://wordpress.org/support/topic/plugin-wordpress-https-404-error/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-404-error/#post-1861194)
 * [@texasbiz](https://wordpress.org/support/users/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,
    Jeff
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AmberPanther WP Include File] [Plugin: AmberPanther WP Include File] Headers already sent warning](https://wordpress.org/support/topic/plugin-amberpanther-wp-include-file-headers-already-sent-warning/)
 *  Thread Starter [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/plugin-amberpanther-wp-include-file-headers-already-sent-warning/#post-2244737)
 * Never mind. I just realized my site got hacked and there should be nothing in
   the file but this:
 *     ```
       <?php
       //silence
       ?>
       ```
   
 * right?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Tab Manager] [Plugin: Facebook Tab Manager] Page Not Found Error](https://wordpress.org/support/topic/plugin-facebook-tab-manager-page-not-found-error/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-facebook-tab-manager-page-not-found-error/#post-1914180)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Postie] Can’t install in WPMU](https://wordpress.org/support/topic/plugin-postie-cant-install-in-wpmu/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/plugin-postie-cant-install-in-wpmu/#post-1197648)
 * Tunghoy,
 * I deleted the Postie 1.3.2 plugin by FTP and installed the previous version (
   1.3.1) from here
    [http://wordpress.org/extend/plugins/postie/download/](http://wordpress.org/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Audio Player] Firefox update breaks this!](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/)
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [17 years, 5 months ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-721076)
 * 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="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="290" height="24"></embed></object>';
       ```
   

Viewing 15 replies - 1 through 15 (of 15 total)