Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ISketch on your forum <Now works for everyone> Details »»
ISketch on your forum <Now works for everyone>
Version: 1.1, by UltimateOreo! UltimateOreo! is offline
Developer Last Online: Dec 2009 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.6.5 Rating:
Released: 04-14-2007 Last Update: 05-29-2007 Installs: 48
Template Edits
Code Changes Additional Files  
No support by the author.

This simply puts the very cool online pictionary Isketch (www.isketch.net) on your board. It is much easier to make a contest out of it, group together as a community in a room, Or just simply play it from your board! Might even boost registrations a little bit . I do plan on adding a simple shoutbox for added communication. It also includes a feature*OPTIONAL* that if they are on the page, it will display "Playing Isketch" on /online.php.
PLEASE CLICK INSTALL IF YOU USE THIS!
Support will only be given to users who click install, and will only be given in this thread.

Version history

1.0- Initial Release
1.1- Fixed bug disabled logging in.
2.0 Now should be fixed for everyone, added suggestion in the thread,

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #52  
Old 05-08-2007, 05:26 PM
apokphp apokphp is offline
 
Join Date: Nov 2002
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just tried it, worked fine.

http://www.onlinedebate.net/forums/isketch.php
Reply With Quote
  #53  
Old 05-08-2007, 06:56 PM
UltimateOreo! UltimateOreo! is offline
 
Join Date: Nov 2006
Location: Missouri
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you sure you completely updated it akulion?
Reply With Quote
  #54  
Old 05-11-2007, 11:17 PM
UltimateOreo! UltimateOreo! is offline
 
Join Date: Nov 2006
Location: Missouri
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just took a look at your source code, and you did not make the required template fix. Please do so and come back.
Reply With Quote
  #55  
Old 05-22-2007, 02:03 AM
The Equivocate The Equivocate is offline
 
Join Date: Sep 2004
Location: Chicago
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also receiving the Unable To Connect error but can login fine from isketch.net. Any fix yet?
Reply With Quote
  #56  
Old 05-22-2007, 05:09 PM
vectorfc vectorfc is offline
 
Join Date: Sep 2006
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #57  
Old 05-23-2007, 08:38 PM
UltimateOreo! UltimateOreo! is offline
 
Join Date: Nov 2006
Location: Missouri
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #58  
Old 05-24-2007, 08:56 PM
vectorfc vectorfc is offline
 
Join Date: Sep 2006
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #59  
Old 05-28-2007, 01:30 PM
vectorfc vectorfc is offline
 
Join Date: Sep 2006
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #60  
Old 05-29-2007, 03:57 AM
joshbond joshbond is offline
 
Join Date: Jan 2007
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

^^ 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/
Reply With Quote
  #61  
Old 05-29-2007, 05:51 PM
vectorfc vectorfc is offline
 
Join Date: Sep 2006
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by joshbond View Post
^^ 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.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:20 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.09523 seconds
  • Memory Usage 2,303KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete