The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#2
|
||||
|
||||
hmmm good one
now i will use vbAdvanced :> oops first post :P |
#3
|
|||
|
|||
Quote:
If you just use the Code above and ignore the msn.php - im sure you could re-write it to fit into one of the existing templates on VBB - it would be pretty much the exact same code , just with different tables to make it fit better. I just didnt know where to put it on a non VBB page - possibly Forumhome at the bottom somewhere |
#4
|
|||
|
|||
is it possible to do this for Yahoo! and the others ?
or using Meebo.com |
#5
|
||||
|
||||
what a nice hack ... installed and worked good .
but just a Q . is our pw secure ? |
#6
|
|||
|
|||
The system uses EMessenger - they are established and passwords are as secure as they can be online. Its not logged on anyones server ever , so as such yes the passwords are secure.
There is also the option of using the secure server , which wont really make much difference to be honest. This system would be almost exactly the same as using the emessenger site itself to log in - the form sends the info directly to them to log you in - any coder can check the form script and know its all ok. |
#7
|
|||
|
|||
Quote:
heres a quick rendering of a yahoo code for you ... might be worth getting your own yahoo image cause i rushed that. do pretty much the same steps as above for msn : 1. Upload the attached file at the bottom (yahoo.php) into your /modules Folder. 2. Upload the attached image at the bottom (yahoo.gif) into your /images folder. 3. Create a new template (Style & Templates - Style Manager - Add a template) called adv_portal_yahoo with the following code: Code:
<tr> <td> <table cellpadding="2" cellspacing="1" border="0" width="100%" height=300> <tr><td valign=top> <center> <img src="images/yahoo.gif"> </td></tr> <form style="position:absolute" action="http://hongkong.e-messenger.net/webyahoo//doLogin.jsp" id="yahoo_form" method="post" class="loginYIM" target="yahoo"> <div id="login"> <input type="hidden" name="password" id="yahoo_password"/> <input name="network" type="hidden" value="yim" /> <tr><td> <strong>Yahoo ID:</strong><br> <if condition="$bbuserinfo[yahoo] != '' "> <input type='text' name='username' value='$bbuserinfo[yahoo]'> </if> <if condition="$bbuserinfo[yahoo] == '' "> <input type='text' name='username' value='@yahoo.com'> </if> </td></tr> <tr><td> <strong>Password:</strong><br> <input name="username" type="password" id="yahoo_p" class="wide" /> </td></tr> <tr><td> <strong>Initial Status:</strong><br> <if condition="$bbuserinfo[userid] != 0"> <select name="status" class="wide"> <option value="1" selected="selected">Online</option> <option value="2">Busy</option> <option value="3">Be Right Back</option> <option value="4">Away</option> <option value="4">Appear Offline</option> </select> </if> <if condition="$bbuserinfo[userid] == 0"> <select name="status" class="wide"> <option value='1' >Disabled for NonMembers</option> <option value="1" selected="selected">Online</option> <option value="1">Busy</option> <option value="1">Be Right Back</option> <option value="1">Away</option> <option value="1">Appear Offline</option> <option value='1' >Disabled for NonMembers</option> </select> </if> </td></tr> <tr> <td> <center> <label>Secure Login</label> <input name="securelogin" id="yahoo_secure" type="checkbox" value="1" onclick="clickSecure('yahoo');"/> <input type="submit" class="formButton" value="Submit" onclick="doYahooLogin()" /><br/> <font color="red" face="arial,verdana,geneva" size='1'> Make sure your popup blocker is OFF for this. Usernames and Passwords are 100% secure and will not be logged.</font> </form> </td> </tr> </table> </td> </tr> 4. Add a module. In Vba CPMS - add module select add a module - PHP file : Module Title : Yahoo Messenger Column : Left Column (or where you wish) Active : Yes Update all pages : As Required File to include : yahoo.php Parent Module : none Identifier : yahoo Templates Used : adv_portal_yahoo That should do it for the yahoo login.I dont have yahoo myself , so as u can see in the screenshot , it wont supply my yahoo login ID, but if i had one when signing up for the boards , it would auto populate that for me. |
#8
|
|||
|
|||
If you wish to use Forumhome as a place to put this , and you dont have VBa - then you could try this- though i dont think its anyway near as nice ....
Open the FORUMHOME template and find : Code:
<td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td> </tr> </table> </td> Code:
<!-- start of msn login window --> <td border=4 class="alt2" width=165> <table cellpadding="2" cellspacing="1" border="0" width="165" height="300"> <tr> <td class="thead"> MSN Messenger </td></tr> <tr> <td class="alt2"> <center> <img src="images/msn.gif"> </td></tr> <form action="http://chicago.e-messenger.net//servlet/dologin" method="POST" target="_blank" onsubmit='processSubmit()'> <div id="login"> <tr><td class="alt2"> <strong>Passport:</strong><br> <if condition="$bbuserinfo[msn] != '' "> <input type='text' name='passport' value='$bbuserinfo[msn]'> </if> <if condition="$bbuserinfo[msn] == '' "> <input type='text' name='passport' value='@hotmail.com'> </if> </td></tr> <tr><td class="alt2"> <strong>Password:</strong><br> <input type='password' name='password' value=''> </td></tr> <tr><td class="alt2"> <strong>Initial Status:</strong><br> <if condition="$bbuserinfo[userid] != 0"> <select name='initial' id='initial'> <option value='NLN' >Online</option> <option value='AWY' >Away</option> <option value='BSY' >Busy</option> <option value='BRB' >Be Right Back</option> <option value='PHN' >On The Phone</option> <option value='LUN' >Out To Lunch</option> <option value='HDN' >Appear Offline</option> </select> </if> <if condition="$bbuserinfo[userid] == 0"> <select name='initial' id='initial'> <option value='NLN' >Disabled for NonMembers</option> <option value='NLN' >Online</option> <option value='NLN' >Away</option> <option value='NLN' >Busy</option> <option value='NLN' >Be Right Back</option> <option value='NLN' >On The Phone</option> <option value='NLN' >Out To Lunch</option> <option value='NLN' >Appear Offline</option> <option value='NLN' >Disabled for NonMembers</option> </select> </if> </td></tr> <tr> <td class="alt2"> <input id='secure' onclick='clickSecure()' type='checkbox' value='1'> Secure SSL(https) <center> <input type='submit' value='Login'> <br></center> </td></tr> <tr><td class="alt2"> <font color="red" face="arial,verdana,geneva" size='1'> Make sure your popup blocker is OFF for this. Usernames and Passwords are 100% secure and will not be logged.</font> </div> </form> </td> </tr> </table> </td> <!-- end of msn login window --> </td><td width=20></td> <!-- start of yahoo login window --> <td border="4" class="alt2" width="165"> <table cellpadding="2" cellspacing="1" border="0" width="165" height="300"> <tr> <td class="thead"> Yahoo Messenger </td></tr> <tr> <td class="alt2"> <center> <img src="images/yahoo.gif"> </td></tr> <form style="position:absolute" action="http://hongkong.e-messenger.net/webyahoo//doLogin.jsp" id="yahoo_form" method="post" class="loginYIM" target="yahoo"> <div id="yimlogin"> <input type="hidden" name="password" id="yahoo_password"/> <input name="network" type="hidden" value="yim" /> <tr><td class="alt2"> <strong>Yahoo ID:</strong><br> <if condition="$bbuserinfo[yahoo] != '' "> <input type='text' name='username' value='$bbuserinfo[yahoo]'> </if> <if condition="$bbuserinfo[yahoo] == '' "> <input type='text' name='username' value='@yahoo.com'> </if> </td></tr> <tr><td class="alt2"> <strong>Password:</strong><br> <input name="username" type="password" id="yahoo_p" > </td></tr> <tr><td class="alt2"> <strong>Initial Status:</strong><br> <if condition="$bbuserinfo[userid] != 0"> <select name="status"> <option value="1" selected="selected">Online</option> <option value="2">Busy</option> <option value="3">Be Right Back</option> <option value="4">Away</option> <option value="4">Appear Offline</option> </select> </if> <if condition="$bbuserinfo[userid] == 0"> <select name="status"> <option value='1' >Disabled for NonMembers</option> <option value="1" selected="selected">Online</option> <option value="1">Busy</option> <option value="1">Be Right Back</option> <option value="1">Away</option> <option value="1">Appear Offline</option> <option value='1' >Disabled for NonMembers</option> </select> </if> </td></tr> <tr> <td class="alt2"> <input name="securelogin" id="yahoo_secure" type="checkbox" value="1" onclick="clickSecure('yahoo');"/> Secure login <center> <input type="submit" class="formButton" value="Submit" onclick="doYahooLogin()" /></center> </td></tr> <tr><td class="alt2"> <font color="red" face="arial,verdana,geneva" size='1'> Make sure your popup blocker is OFF for this. Usernames and Passwords are 100% secure and will not be logged.</font> </div> </form> </td> </tr> </table> <!-- end of yahoo login window --> |
#9
|
|||
|
|||
Thanks DJ
would u please take a look at meebo.com ? |
#10
|
|||
|
|||
Quote:
Im on holidays in Lanzarote at the moment , so its only a brief jump in and out of the net , but i may take a longer look at that site when i return and see if i can come up with an alternative system thats similar to that, but no promises .. digging out the coding can be very difficult sometimes. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|