wburgos
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: LinkedIn hResume] Not working at all for meI’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 FramesI 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’,’https://my-static-URL/blog.html’);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/” 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.