Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #61  
Old 04-28-2009, 04:48 PM
tunedtech tunedtech is offline
 
Join Date: Apr 2009
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Id love to have this chat like facebook..
Reply With Quote
  #62  
Old 04-29-2009, 07:05 PM
goxy63 goxy63 is offline
 
Join Date: Oct 2008
Location: its like another planet:D
Posts: 657
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tunedtech View Post
Id love to have this chat like facebook..
Who wouldnt love to have this on Vb?
Reply With Quote
  #63  
Old 05-06-2009, 02:40 AM
The Big Three The Big Three is offline
 
Join Date: Aug 2008
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If someone made this, they'd make a fortune off donations.. i can tell you that.
Reply With Quote
  #64  
Old 05-06-2009, 04:04 PM
LCN2007 LCN2007 is offline
 
Join Date: Jul 2007
Posts: 323
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would be great to have a sizable chat and im functions
Reply With Quote
  #65  
Old 05-06-2009, 05:29 PM
pein87's Avatar
pein87 pein87 is offline
 
Join Date: Sep 2008
Posts: 352
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I already have the fixed bar made, right now I'm looking into how to call each users freinds list on all pages. Someone is already intergrating ajaxim if your in a rush to see it produced it may take me months to get the code done right and standard code is a must. I was planning to make it a template so it easier to store all the info in one template and them call it into the head or footer template. As stateed on my own it may take 3 months to get it done right but maybe cybernetic or devdion could port there chat boxs so they have that functionality and it would take them less time since they already have the chat box software made. Donation wise i would suggest donations go to the ajaxim team if you wnat a rapid app done since there almost done with it according to his last post.

link to ajaxim intergration

https://vborg.vbsupport.ru/showthrea...53#post1796453
Reply With Quote
  #66  
Old 05-06-2009, 05:33 PM
ragtek ragtek is offline
 
Join Date: Mar 2006
Location: austria, croatia
Posts: 1,630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pein87 View Post
I already have the fixed bar made, right now I'm looking into how to call each users freinds list on all pages. Someone is already intergrating ajaxim if your in a rush to see it produced it may take me months to get the code done right and standard code is a must. I was planning to make it a template so it easier to store all the info in one template and them call it into the head or footer template. As stateed on my own it may take 3 months to get it done right but maybe cybernetic or devdion could port there chat boxs so they have that functionality and it would take them less time since they already have the chat box software made. Donation wise i would suggest donations go to the ajaxim team if you wnat a rapid app done since there almost done with it according to his last post.

link to ajaxim intergration

https://vborg.vbsupport.ru/showthrea...53#post1796453
are you also integrating ajaxim or something other`?
Reply With Quote
  #67  
Old 05-07-2009, 02:36 PM
pein87's Avatar
pein87 pein87 is offline
 
Join Date: Sep 2008
Posts: 352
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

mine would be custom when its done. things I need to find out is where the users friends are stored at when they login , and how would I call that into every page. I dont know if its an array like most things in vb or not. making the bar is simple with the right html and css all that would be left is to set a table inside of the div so I can use the td for for the anchor tags and set the anchors to use css rollovers to save bandwidth. Next would be making the pop-ups for the chatbox friends list I could use ajaxim but I'll have to search the files for the tables needed and determine how I'll use them in vb. To determine if I'll use a query to pull all the info for the freinds list, if they'll show a mini avatar, and the online status of teh forum or a custom image. Theres alot to determine before I even start the code. and also the buttons will also be considered if I'll make my own or use the defaults and what skin will I use, what admin options will there be in the admincp etc... I'm currently searching the files for the how to's and the online vb code guide as well.
Reply With Quote
  #68  
Old 05-07-2009, 02:43 PM
ragtek ragtek is offline
 
Join Date: Mar 2006
Location: austria, croatia
Posts: 1,630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

They are not called on each page!
Check the misc.php (because this page is calling the buddylist popup)
PHP Code:
    $buddys $db->query_read_slave("
        SELECT
        user.username, (user.options & " 
$vbulletin->bf_misc_useroptions['invisible'] . ") AS invisible, user.userid, session.lastactivity
        FROM " 
TABLE_PREFIX "userlist AS userlist
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON(user.userid = userlist.relationid)
        LEFT JOIN " 
TABLE_PREFIX "session AS session ON(session.userid = user.userid)
        WHERE userlist.userid = 
{$vbulletin->userinfo['userid']} AND userlist.relationid = user.userid AND type = 'buddy'
        ORDER BY username ASC, session.lastactivity DESC
    "
); 
Reply With Quote
  #69  
Old 05-07-2009, 03:03 PM
Enclave Enclave is offline
 
Join Date: Jun 2005
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by koke View Post
a want this hack i paid you
what? when you paid me?
Reply With Quote
  #70  
Old 05-08-2009, 04:14 PM
pein87's Avatar
pein87 pein87 is offline
 
Join Date: Sep 2008
Posts: 352
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can we stay on topic hey ragtek thanks for that bit of info is that how you added the contacts for the pms? there isnt away to get that info without runnig queries? Like how you can get the users avatar ithout any queries?
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 09:29 AM.


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.10207 seconds
  • Memory Usage 2,282KB
  • Queries Executed 12 (?)
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
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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