Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Add on skype
 New Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

Maxime
Average Member

France
521 Posts

Posted - 21 October 2012 :  11:05:25  Show Profile  Visit Maxime's Homepage  Reply with Quote
Hello,

In the mod skype add on, there is no code in the admin page and the page on the client side to have a place to check for mandatory or not skype. As I know nothing about coding, see here for the full cod that works with the 3407 forum:

http://www.snitzbitz.com/mods/report.asp?action=report&mid=205&fid=277

thank you very much

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Carefree
Advanced Member

Philippines
4222 Posts

Posted - 25 October 2012 :  05:04:00  Show Profile
As an option, it's alright ... but why would you require Skype?
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 25 October 2012 :  05:38:27  Show Profile  Visit Maxime's Homepage
It looks like live messenger Carefree. I members who have accounts on skype and we can see if they are connected or not and call them directly if they are in your list skype. And mandatory or not other options as forum icq, messenger, aim etc.

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4222 Posts

Posted - 25 October 2012 :  10:55:41  Show Profile
OK, you'll have to make a few changes.

"admin_config_members.asp"


Look for the following lines (from the Skype mod):

			"			  <tr valign=""top"">" & vbNewLine & _
			"                <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Skype:</b> </font></td>" & vbNewLine & _
			"                <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
			"                On: <input type=""radio"" class=""radio"" name=""strSKYPE"" value=""1""" & chkRadio(strSKYPE,0,false) & "> " & vbNewLine & _
			"                Off: <input type=""radio"" class=""radio"" name=""strSKYPE"" value=""0""" & chkRadio(strSKYPE,0,true) & ">" & vbNewLine & _
			"                <a href=""JavaScript:openWindow3('pop_config_help.asp?mode=members#skype')"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></td>" & vbNewLine & _
			"              </tr>" & vbNewLine & _

Replace them with these:

		"              <tr valign=""top"">" & vbNewLine & _
		"              	 <td bgColor=""" & strCategoryCellColor & """ colspan=""2"" align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """><b>Skype</b></font></td>" & vbNewLine & _
		"              </tr>" & vbNewLine & _
		"              <tr valign=""top"">" & vbNewLine & _
		"                <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Enabled:</b> </font></td>" & vbNewLine & _
		"                <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
		"                On: <input type=""radio"" class=""radio"" name=""strSkype"" value=""1""" & chkRadio(strSkype,0,false) & "> " & vbNewLine & _
		"                Off: <input type=""radio"" class=""radio"" name=""strSkype"" value=""0""" & chkRadio(strSkype,0,true) & ">" & vbNewLine & _
		"                <a href=""JavaScript:openWindow3('pop_config_help.asp?mode=members#Skype')"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></td>" & vbNewLine & _
		"              </tr>" & vbNewLine & _
		"              <tr valign=""top"">" & vbNewLine & _
		"                <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Required:</b> </font></td>" & vbNewLine & _
		"                <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
		"                On: <input type=""radio"" class=""radio"" name=""strReqSkype"" value=""1""" & chkRadio(strReqSkype,0,false) & "> " & vbNewLine & _
		"                Off: <input type=""radio"" class=""radio"" name=""strReqSkype"" value=""0""" & chkRadio(strReqSkype,0,true) & ">" & vbNewLine & _
		"              </tr>" & vbNewLine & _


"config.asp"


Look for the following line in the original mod:

strSKYPE = Application(strCookieURL & "STRSKYPE")

Below it, insert this:

strReqSkype=Application(strCookieURL & "STRREQSKYPE")

Look for the following line in the original mod:

Dim strAIM, strICQ, strMSN, strSkype, strYAHOO

Change it to say:

Dim strAIM, strICQ, strMSN, strSkype, strReqSkype, strYAHOO
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 25 October 2012 :  12:28:18  Show Profile  Visit Maxime's Homepage
Carefree thank you very much and I'll put up tomorrow and do some test
Good day to you and congratulations as always for the help you give me.

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 25 October 2012 :  14:03:24  Show Profile  Visit Maxime's Homepage
A small question. the database skype mod adds more fields, but as you add another code should also add that the database Carefree?

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)


Edited by - Maxime on 25 October 2012 14:05:43
Go to Top of Page

Carefree
Advanced Member

Philippines
4222 Posts

Posted - 25 October 2012 :  18:45:44  Show Profile
After you have made those changes and have configured the member details options, take a look at the end of your config_new table. The fields and values should be there.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 25 October 2012 :  20:05:10  Show Profile  Visit Maxime's Homepage
Hi Carrefree because in France it is 2am lol!
yes they are and I wish you a good night

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4222 Posts

Posted - 26 October 2012 :  20:26:30  Show Profile
Good enough, let me know if it doesn't work.
Go to Top of Page

Maxime
Average Member

France
521 Posts

Posted - 27 October 2012 :  02:38:58  Show Profile  Visit Maxime's Homepage
Hello
All work perfectly I copy the code and made #8203;#8203;some changes on the code example admin_config_members.asp and pages inc_profile.asp, pop_profile.asp.pour be identical to the original coding forum 3407,. I copied the code base msn and changed so that it works with skype and I got the first shot.
Carefree good day and a very big thank you for all the help provided

Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)

Go to Top of Page

Carefree
Advanced Member

Philippines
4222 Posts

Posted - 27 October 2012 :  19:16:56  Show Profile
You're welcome.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.38 seconds. Powered By: Snitz Forums 2000 Version 3.4.07