vectorfc |
05-28-2007 01:30 PM |
I got the same error when attempting to log in directly through the source url you've got in the template ( http://88.198.9.81/isketch/iSketch392g.dcr ). I see from isketch's own site that the stuff in the template is the same code they use to call the game, so it does look like their site isn't too happy with outside connections.
To work around this, I just replaced your code in the isketch tempate with an iframe:
Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_iSketch]</phrase></title>
</head>
<body>
$header
$navbar
<if condition="$show['guest']">
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<tr>
<td class="tcat">No Permissions<td>
</tr>
<tr>
<td>Please <a href="/register.php">Register</a> on $vboptions[bbtitle] to play Isketch.</td>
</tr>
</table>
</if>
<if condition="$show['member']">
<div align="center"><iframe src="http://www.isketch.net/isketch.shtml" scrolling="no" width="730" height="430"></iframe></div>
</if>
$forumbits
<tbody>
</tbody>
</table>
$footer
</body>
</html>
<center>Copyright ? Isketch</center>
Works great for me, hope somebody else finds it useful.
|