Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m having a problem where I get the following message:

    Warning: gzuncompress() [function.gzuncompress]: data error in /home/wburgos/public_html/wp-includes/http.php on line 1824
    Communication Error
    There was an error retrieving your LinkedIn public profile.

    Any comments?

    Regards,

    WB

    Forum: Fixing WordPress
    In reply to: WP in Frames

    I had the same problem and resolved it with 2 html files as follows:

    index.html
    ———-
    <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
    <html>
    <head>
    <title>My Site Title</title>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
    <script language=”JavaScript” type=”text/JavaScript”>
    <!–
    function MM_checkBrowser(IEvers,URL,xURL) { //v4.0
    var newURL=”, verStr=navigator.appVersion, app=navigator.appName, version = par
    seFloat(verStr);
    if (app.indexOf(‘Microsoft’) != -1) {
    if (version >= IEvers || verStr.indexOf(IEvers) != -1)
    newURL=URL; }
    else newURL=xURL;
    if (newURL != ”) { window.location=unescape(newURL); document.MM_returnValue=fa
    lse; }
    }
    //–>
    </script>
    </head>
    <body onLoad=”MM_checkBrowser(5.0,’https://my-dinamic-URL&#8217;,’https://my-static-URL/blog.html&#8217;);return document.MM_returnValue”>
    </body>
    </html>

    blog.html
    ———
    <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 3.2 Final//EN”>
    <html>
    <head>
    <title>MY SITE TITLE</title>
    <META HTTP-EQUIV=”Pragma” CONTENT=”no-cache”>
    </head>
    <frameset rows=”100%,*” border=”0″>
    <frame src=”https://my-dinamic-URL/&#8221; frameborder=”0″>
    <frame frameborder=”0″ noresize>
    </frameset>
    </html>

    The only rule here is that index.html and blog.html must reside on the static URL server.

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