CrazyEngineers Forum

******************************************
Welcome To CrazyEngineers (CE) – an online community of engineers from all over the world! With the younger CEan at 84 and the youngest at 16, CE boasts of professional engineers, students, professors, entrepreneurs, CEOs, geeks & nerds. We exchange innovative ideas, share knowledge, help each other and expand our worldwide network of engineers! You need not have a formal degree in engineering to be a part of CrazyEngineers! Need we say more?
Join CE! | Be a CE Ambassador! | Forgot password? | Sponsor CE | Contact Us
Navigation
Go Back   CrazyEngineers Forum > CE : Labs > CE - Labs
Reply

  #81 (permalink)
Old 30th August 2008, 05:50 PM
ash
Moderator
 
ash's Avatar
 
I'm a Crazy Communications Engineer
Join Date: 12th July 2007
Location: IIUM, Malaysia
Posts: 1,506
Default Re: CEdoot - Reincarnation of CE-im

Regarding CE database access, try checking out the vbulletin.org website on how to have external access to the database. At the moment, all I know is that login details are encrypted of md5 hashes, etc.
__________________
Keep it simple. Keep it real.
| New to CE? Click here! | Join our CE Bot project! | Problems? Questions? PM or mail me at ash{at]crazyengineers{dot]com |
ash is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored links
  #82 (permalink)
Old 11th September 2008, 01:41 PM
CE - Editor In Chief
 
mayurpathak's Avatar
 
I'm a Crazy Civil Engineer
Join Date: 3rd January 2006
Location: Mumbai
Posts: 751
Send a message via Yahoo to mayurpathak Send a message via Skype™ to mayurpathak
Default Re: CEdoot - Reincarnation of CE-im

This has gone in the oblivion again. Guys when are we starting actual work? I'm no technical guy... tell me how can I help?

Should I consider learning C++ Tell me!
__________________
Mayur Pathak, Chief Editor, Blog Me, Contact me,
mayurpathak is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #83 (permalink)
Old 11th September 2008, 04:05 PM
ash
Moderator
 
ash's Avatar
 
I'm a Crazy Communications Engineer
Join Date: 12th July 2007
Location: IIUM, Malaysia
Posts: 1,506
Default Re: CEdoot - Reincarnation of CE-im

Yes, please do learn it. Its fun!

I wanted to suggest that we can try to get another vBulletin system and experiment with it, so that the CE forums can be run uninterrupted. Unfortunately, vB is not free

Here's a good place to check out the functions used in vB login:
vBulletin 3.7 Code Documentation

The key is understanding the Data Managers:
vBulletin Manual

The actual codes to use are available, but you need to be a "licenced" user of vBulletin (which Biggie is). For now we'll try to understand the abstract of the operation. If we get stuck, maybe Biggie can get some sample code to use
__________________
Keep it simple. Keep it real.
| New to CE? Click here! | Join our CE Bot project! | Problems? Questions? PM or mail me at ash{at]crazyengineers{dot]com |
ash is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #84 (permalink)
Old 11th September 2008, 04:19 PM
Good Administrator
 
The_Big_K's Avatar
 
I'm a Crazy Electrical Engineer
Join Date: 26th November 2005
Location: Terra-Firma
Posts: 4,973
Send a message via Yahoo to The_Big_K
Default Re: CEdoot - Reincarnation of CE-im

We *do* have a test vBulletin setup and things can be tried there. What's better is - there's a plugin that allows users to send messages in real time - just like we do through Gtalk or Yahoo Messenger.

We may just customize it or build our system on the top of it.
The_Big_K is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #85 (permalink)
Old 11th September 2008, 04:24 PM
ash
Moderator
 
ash's Avatar
 
I'm a Crazy Communications Engineer
Join Date: 12th July 2007
Location: IIUM, Malaysia
Posts: 1,506
Default Re: CEdoot - Reincarnation of CE-im

Ah, you mean the integrated Gtalk in GMail? I think that'll take up a lot of server resources

What we can borrow is how the plugin authenticate users. Once that is figured out, it'll make life much easier
__________________
Keep it simple. Keep it real.
| New to CE? Click here! | Join our CE Bot project! | Problems? Questions? PM or mail me at ash{at]crazyengineers{dot]com |
ash is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #86 (permalink)
Old 11th September 2008, 04:36 PM
CE - Editor In Chief
 
mayurpathak's Avatar
 
I'm a Crazy Civil Engineer
Join Date: 3rd January 2006
Location: Mumbai
Posts: 751
Send a message via Yahoo to mayurpathak Send a message via Skype™ to mayurpathak
Default Re: CEdoot - Reincarnation of CE-im

Quote:
Originally Posted by The_Big_K View Post
We *do* have a test vBulletin setup and things can be tried there. What's better is - there's a plugin that allows users to send messages in real time - just like we do through Gtalk or Yahoo Messenger.

We may just customize it or build our system on the top of it.
This is great. But is it integrated or it works like a gtalk client? If we can customize it and launch a beta version, this would be super!
__________________
Mayur Pathak, Chief Editor, Blog Me, Contact me,
mayurpathak is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #87 (permalink)
Old 11th September 2008, 04:41 PM
ash
Moderator
 
ash's Avatar
 
I'm a Crazy Communications Engineer
Join Date: 12th July 2007
Location: IIUM, Malaysia
Posts: 1,506
Default Re: CEdoot - Reincarnation of CE-im

Alright, for you coding junkies, here's some thing to work on. This is a sample of the authentication of vB users:
Code:
$query = "
   SELECT
       userid, password, salt
   FROM
       [table-prefix]user
   WHERE
       username = '" . addslashes($_POST['username']) . "' 
   LIMIT 1;";
   // execute the query and retrieve the results. 
   // ...
   // assume result stored in $data[]
 if (md5( $_POST['password'] . $salt ) == $data['password']) {
   // authentication successful, set cookies as
   setcookies("bbuserid", $data['userid']);
   setcookies("bbpassword", md5($data['password'] . "YOURLICENSENUMBERHERE"));
 } else {
   // authentication failed
   // redirect to error page
}
Taken from MediaWiki's integration method

Yep, can't wait to dissect the plugin Biggie's talkin about!
__________________
Keep it simple. Keep it real.
| New to CE? Click here! | Join our CE Bot project! | Problems? Questions? PM or mail me at ash{at]crazyengineers{dot]com |
ash is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored links
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

LinkBacks (?)
LinkBack to this Thread: http://www.crazyengineers.com/forum/ce-labs/3155-cedoot-reincarnation-ce-im.html
Posted By For Type Date
Uniting Engineers Across The World ! This thread Refback 25th August 2008 12:17 PM


All times are GMT +5.5. The time now is 06:24 AM.
Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Member comments are owned by the poster. Copyright © 2005-2008 CrazyEngineers.com. All rights reserved.Ad Management by RedTyger