Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 04-29-2007, 02:20 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default A List Of 3rd Party Remote Hosted Software

OK I have 2 of these and they are awesome !

Addon Chat and Plugin Poker

I have been looking for other 3rd Party Things to use and pay per Mth or Year like i do these 2 but I CANT FIND ANY !!

I Search here and all the threads i get in return are that Vbulletin.org will never have a section to list these , Ok Thats fine but I would still like to have atleast a thread to show links to 3rd party developers .

Please Only List Those who are Remotely Hosted , Remote Authentication , Full Vbulletin Integration

Ill Get it started ...

www.addonchat.com - Integrated Chat Software

www.pluginpoker.com - Integrated Texas Holden Tables
Reply With Quote
  #2  
Old 06-09-2007, 07:07 PM
thedvs thedvs is offline
 
Join Date: May 2002
Posts: 353
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yeah except the poker plugin they hurridly did for vbulletin doesnt work with the latest vb's
Reply With Quote
  #3  
Old 06-11-2007, 03:42 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Whaaa... ITs Working Great

DM
Reply With Quote
  #4  
Old 09-23-2007, 03:03 AM
Cigarcritic Cigarcritic is offline
 
Join Date: Aug 2007
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DiesellMinded View Post
Whaaa... ITs Working Great

DM
The code they offer for the navbar is for 3.03 and does not work with 3.6.8. Can you or anyone else help me? PM sent too.

They want me to find, but it's not exactly the same as in 3.6.8:
PHP Code:
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout"
onclick="return log_out()">$vbphrase[log_out]</a></td
...and add the following IMMEDIATELY above it.
PHP Code:
<script type="text/javascript"><!--
function 
openPoker(cn) {pipwin=open("","pipwin","scrollbars=no,width=715,height=510").document.write("<html><title>Texas Holdem</title><frameset rows=* cols=* border=0 frameborder=0><frame noresize scrolling=no src=http://www.pluginpoker.com/popup/lobby.asp?c="+cn+"&phpu=$bbuserinfo[username]&phpp=$bbuserinfo[password]&phpe=$bbuserinfo[email]></frameset></html>");}
--></
script>
<
a href=javascript:void(0target=_top onClick=openPoker(966)>Poker</a
Reply With Quote
  #5  
Old 09-23-2007, 06:11 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
$vbphrase[log_out]
Find that and you'll find the rest of it. That (logout) code was altered slightly in the 3.6.7 upgrade.
Reply With Quote
  #6  
Old 09-23-2007, 06:26 AM
Cigarcritic Cigarcritic is offline
 
Join Date: Aug 2007
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
Code:
$vbphrase[log_out]
Find that and you'll find the rest of it. That (logout) code was altered slightly in the 3.6.7 upgrade.
When I add their code it adds a link above the Navbar. Any ideas? Thanks!

See attachment.
Attached Images
File Type: jpg Capture.JPG (15.0 KB, 0 views)
Reply With Quote
  #7  
Old 09-23-2007, 06:34 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Instead of:
HTML Code:
<script type="text/javascript"><!--
function openPoker(cn) {pipwin=open("","pipwin","scrollbars=no,width=715,height=510").document.write("<html><title>Texas Holdem</title><frameset rows=* cols=* border=0 frameborder=0><frame noresize scrolling=no src=http://www.pluginpoker.com/popup/lobby.asp?c="+cn+"&phpu=$bbuserinfo[username]&phpp=$bbuserinfo[password]&phpe=$bbuserinfo[email]></frameset></html>");}
--></script>
<a href=javascript:void(0) target=_top onClick=openPoker(966)>Poker</a>
Use:
HTML Code:
<td class="vbmenu_control"><script type="text/javascript"><!--
function openPoker(cn) {pipwin=open("","pipwin","scrollbars=no,width=715,height=510").document.write("<html><title>Texas Holdem</title><frameset rows=* cols=* border=0 frameborder=0><frame noresize scrolling=no src=http://www.pluginpoker.com/popup/lobby.asp?c="+cn+"&phpu=$bbuserinfo[username]&phpp=$bbuserinfo[password]&phpe=$bbuserinfo[email]></frameset></html>");}
--></script>
<a href=javascript:void(0) target=_top onClick=openPoker(966)>Poker</a></td>
Reply With Quote
  #8  
Old 09-23-2007, 06:46 AM
Cigarcritic Cigarcritic is offline
 
Join Date: Aug 2007
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you, Dismounted!!

That took care of my issue.

One more question, works perfect in FireFox but IE opens up an additional blank window titled www.mysitesurl.com/?styeid=10

Any idea what is causing this? Thank you very much for the help!!

Cancel that for ?styeid=10 as the extra blank window is just showing my sites index url now. It's always something with IE.
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 06:40 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04670 seconds
  • Memory Usage 2,267KB
  • Queries Executed 14 (?)
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)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (2)bbcode_html
  • (2)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (1)postbit_attachment
  • (8)postbit_onlinestatus
  • (8)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_postinfo_query
  • fetch_postinfo
  • 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
  • postbit_attachment
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete