vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Mini Mods - ISketch on your forum <Now works for everyone> (https://vborg.vbsupport.ru/showthread.php?t=144897)

bazzup 04-29-2007 12:17 PM

i just tried this i just get a blank white page

Jurg 04-29-2007 02:26 PM

I'm gonna uninstall this. It's not just a co-incidence, I have tried for 3 days and not managed to log in once.

akulion 04-29-2007 03:01 PM

yup im uninstalling too

its definately not coincidence

Alien 04-29-2007 05:05 PM

Can't log in once via test server, even at 4am. Can get in every time at isketch.net

Maybe they added some code not to allow outside connections, or outside connections are set very very low and there are no restrictions on isketch.net

Hmm...

v12kid 04-29-2007 07:12 PM

I will have to agree with alien, I have uninstalled until a fix can be implemented. I think they are not allowing outside logins

UltimateOreo! 05-03-2007 09:14 PM

Ok, because of all the complaints, I tried it, and of course, it didn't work. It is now updated, tell me if it works or not. If it does work, please click install again.

v12kid 05-04-2007 05:26 AM

will update in the am and let you know :)

akulion 05-04-2007 06:03 AM

still no workie :(

UltimateOreo! 05-04-2007 07:56 PM

Whats your website?

akulion 05-06-2007 09:46 AM

<a href="http://path-to-peace.com/community/isketch.php" target="_blank">http://path-to-peace.com/community/isketch.php</a>

same message...server buys or something

apokphp 05-08-2007 05:26 PM

I just tried it, worked fine.

http://www.onlinedebate.net/forums/isketch.php

UltimateOreo! 05-08-2007 06:56 PM

Are you sure you completely updated it akulion?

UltimateOreo! 05-11-2007 11:17 PM

I just took a look at your source code, and you did not make the required template fix. Please do so and come back.

The Equivocate 05-22-2007 02:03 AM

Also receiving the Unable To Connect error but can login fine from isketch.net. Any fix yet?

vectorfc 05-22-2007 05:09 PM

I'm getting a "connection error. Please check your network settings or try again later" message - not the same as the other error I was getting before I put the fix in.

UltimateOreo! 05-23-2007 08:38 PM

Try it again, I tried logging in on the other day and there was a server error also. It was most likely the server as I went through their main website.

vectorfc 05-24-2007 08:56 PM

Doesn't look like it - same error from the forum and I can log into the main website ok.

Thanks for any help, though, I appreciate it. :)

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.

joshbond 05-29-2007 03:57 AM

^^ That iFrame thing worked.
is there any downside to using this method instead of the original? (aside from the fact that it works and the original doesn't)

I just installed it at my forum
http://www.photochopz.com/forum/

vectorfc 05-29-2007 05:51 PM

Quote:

Originally Posted by joshbond (Post 1256625)
^^ That iFrame thing worked.
is there any downside to using this method instead of the original?

Not really - the two methods are doing basically the same thing. The difference is that the original tries to make the isketch code internal to vbulletin, so to speak, whereas my method leaves it completely external instead.

Edit: What would be nice would be if we could have a page refresh in the background so that people playing isketch are updated properly on Who's Online. I'm trying to figure out a way to do this now, so hopefully I can find something.

Carlos2 05-29-2007 08:05 PM

Quote:

Originally Posted by vectorfc (Post 1256191)
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.

Great!! Now working!! Thanks ;)

UltimateOreo! 05-30-2007 12:48 AM

Damn, I was just coming here to update it with a frame! I just read about it and knew that was the problem here. Hack fixed!

v12kid 05-30-2007 01:22 AM

installed it again and working with the iframe code :) nice work guys!

Skedoozy 06-06-2007 07:31 PM

I installed this, works great, people love it. One thing I'd love to have, which I'm too dumb to make on my own, is a Who's iSketching? box, like flashchats Who's Chatting. Preferably something I can put on my vBadvanced Portal as a module. Any help would be appreciated!

ammoskumar 06-06-2007 10:37 PM

where is the game??? i mean does this work in 3.6.7pl1 if yes i installed but i dont see the game in my board?? i follow the instruction everything but i cant see the game do i have edit anything manually besides the install instruction or its not working with me

UltimateOreo! 06-07-2007 06:49 PM

What is the link to your board? The only thing that I can think of is that you didn't do the template edit for the style you are using. And for the module, I can try! I don't know if it will work though, the actual game is pretty big itself, but I will say that I tried!

Skedoozy 06-08-2007 06:37 AM

I don't want the game in a module. Just like taking the information from the Who's Online where it shows people playing Isketch, and having a module with a list of people playing Isketch. You know what I mean?

People are always posting asking if anyone wants to play while there are already people playing. If I had a module on the main page showing which users were playing already they wouldn't need to post so often asking people to play.

UltimateOreo! 06-08-2007 04:52 PM

Oh, I see. Get a module of who is actually playing, and display who is playing the game in that module on the main page. I will also try that! Great Idea.

Skedoozy 06-09-2007 09:00 PM

You got it. That would be awesome, man. Thanks!

Skedoozy 06-12-2007 12:42 AM

Any updates?

UltimateOreo! 06-12-2007 12:58 AM

Sorry man, I am going to be honest. I haven't even tried yet :(. Getting to work on it right now though!

Skedoozy 06-19-2007 12:52 AM

Any updates? hehe

JD45 07-01-2007 05:21 PM

FYI, making the isketch template screwed with my WOL list. It wouldn't show the location of people anymore. I removed the template and all was fine after that.

yoyoyoyo 09-10-2007 04:08 AM

the dropdown dhtml menus, such as quick links, are getting hidden behind the flash object


All times are GMT. The time now is 04:10 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01841 seconds
  • Memory Usage 1,803KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (34)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete