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

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Private Messages 3.4.03
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 20

Raziel
New Member

97 Posts

Posted - 16 October 2002 :  17:40:58  Show Profile
I have a PM MOD installed, last updated August 30'th.

- Am I just to copy the relevant files over, and if yes, which files are we talking about?

- Thanks...

/Regards
Go to Top of Page

Cliff
Average Member

United States
501 Posts

Posted - 16 October 2002 :  23:52:21  Show Profile  Visit Cliff's Homepage
Great MOD, very easy to install.

Thank you.

https://squarewheelscycling.com/

https://www.pathlabtalk.com/
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 16 October 2002 :  23:58:49  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
quote:
I have a PM MOD installed, last updated August 30'th.

- Am I just to copy the relevant files over, and if yes, which files are we talking about?

- Thanks...


All of them really. I have made many changes. You should go over the entire readme.html

@tomic

SportsBettingAcumen.com
Go to Top of Page

Raziel
New Member

97 Posts

Posted - 17 October 2002 :  13:57:53  Show Profile
quote:
Originally posted by @tomic

quote:
I have a PM MOD installed, last updated August 30'th.

- Am I just to copy the relevant files over, and if yes, which files are we talking about?

- Thanks...


All of them really. I have made many changes. You should go over the entire readme.html

@tomic



Does it mean that I have to edit my other forum files again, or are the changes in your MOD's files only?

[It's just because I've translated my forum to danish, and also the PM part... So if I could, I would rather not overwrite my files... But i'll do it if none other choices... but I need to know if there are any]
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 17 October 2002 :  14:45:07  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Oh, no. You only need to make changes to the private message files for the most part. I would go over the readme because there are small changes to topic.asp etc but the only files that should be overwritten are PM files.

@tomic

SportsBettingAcumen.com
Go to Top of Page

mark
Starting Member

46 Posts

Posted - 17 October 2002 :  22:34:51  Show Profile  Send mark an ICQ Message
The program is good only form ACCESS 2000 database... Can some one help me... im running on SQL Server i configure it correctly but when the time to install the database there some query that have not added to SQL database.... What will i have to do to run it perfectly as yours...

im the king of the world
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 17 October 2002 :  23:09:20  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
This was first run on an SQL database on my end. What exactly is the error you are getting? Private Messages should work just fine on an SQL server.

@tomic

SportsBettingAcumen.com
Go to Top of Page

mark
Starting Member

46 Posts

Posted - 18 October 2002 :  02:33:57  Show Profile  Send mark an ICQ Message
well when i run the DBS file using MOD Setup at admin option, some data base where not build....
By the way what connection will i use. right now im using the SQL connection... can add here the link the instructions and files for SQL Database... Thanks Atomic

im the king of the world
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 18 October 2002 :  14:08:43  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Would you just like a list of the database fields, their datatypes, default values etc so you can add them via the Enterprise Manager?

@tomic

SportsBettingAcumen.com
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 18 October 2002 :  14:28:44  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
If so these are the specifications:
Private Messages Mod (Default)

Table: FORUM_PM

Fields
M_ID int, Identity Yes, Identity Seed 1, Increment 1
M_SUBJECT varchar (100), Allow NULL
M_FROM int, Allow NULL
M_TO int, Allow NULL
M_SENT varchar (50), Allow NULL
M_MESSAGE ntext, Allow NULL
M_PMCOUNT varchar (50), Allow NULL
M_READ int, Allow NULL Default Value (0)
M_MAIL varchar (50), Allow NULL
M_OUTBOX smallint, Allow NULL Default value (1)

Alter MEMBERS table
Add these fields
M_PMEMAIL int, Allow NULL, Default Value (0)
M_PMRECEIVE int, Allow NULL, Default Value (1)

FORUM_CONFIG_NEW
Insert these 2 records:
strPMStatus Default Value 1
strPMLIMit Default Value 20


@tomic

SportsBettingAcumen.com
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 18 October 2002 :  14:40:00  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Wow, while checking out the dbs files I noticed that the inserts into forum_config_new went MIA. I have updated the ZIP.

@tomic

SportsBettingAcumen.com
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 18 October 2002 :  19:51:49  Show Profile
It's not a necessity (though it is a good practice) to have additions to the FORUM_CONFIG_NEW table in the dbs files. The first time that you use the page to update the option, if the field doesn't already exist in the database, it'll be added at that time.
Go to Top of Page

s0110282
Starting Member

USA
20 Posts

Posted - 21 October 2002 :  11:34:58  Show Profile  Send s0110282 an AOL message  Send s0110282 a Yahoo! Message
This mod is great. I've been hoping one would come out for Snitz.

Anyway, when viewing your inbox, it shows the title 'Sent To'. Should this say 'Sent From'? I may be missing something since no one has mentioned it yet, but I just thought I'd bring it up.

-Scott
Go to Top of Page

Ez4arab
Junior Member

479 Posts

Posted - 22 October 2002 :  22:13:46  Show Profile  Visit Ez4arab's Homepage
I have idea to let Admin allow & disallow PM to member.

we need to update the database with this
[ALTER]
MEMBERS
ADD#M_ALLOWPM#int#0#1
[END]

in the pop_profile.asp in the case of goModify

strsql = strsql & ", " & strMemberTablePrefix & "MEMBERS.M_ALLOWPM"

alow add this code

if Request.Form("allowpm") = 1 then
strSql = strSql & ", M_ALLOWPM = 1"
else
strSql = strSql & ", M_ALLOWPM = 0"
end if


in the inc_profile.asp add this

<input type="checkbox" name="allowpm" value="1"<% if rs("M_ALLOWPM") = 1 then Response.Write(" checked") end if%> > <font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">Allow Private Messages</font><br>

Any idea to complete this addon's


Ez4arab web site Ez4arab |
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 22 October 2002 :  22:28:58  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Make the default 0 and then the query only needs to be this:

strSql = strSql & ", M_ALLOWPM = 1"

because it will already be 0

@tomic

SportsBettingAcumen.com
Go to Top of Page
Page: of 20 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.21 seconds. Powered By: Snitz Forums 2000 Version 3.4.07