Author |
Topic |
Raziel
New Member
97 Posts |
Posted - 16 October 2002 : 17:40:58
|
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 |
|
|
Cliff
Average Member
United States
501 Posts |
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 16 October 2002 : 23:58:49
|
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 |
|
|
Raziel
New Member
97 Posts |
Posted - 17 October 2002 : 13:57:53
|
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] |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 17 October 2002 : 14:45:07
|
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 |
|
|
mark
Starting Member
46 Posts |
Posted - 17 October 2002 : 22:34:51
|
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 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 17 October 2002 : 23:09:20
|
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 |
|
|
mark
Starting Member
46 Posts |
Posted - 18 October 2002 : 02:33:57
|
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 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 18 October 2002 : 14:08:43
|
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 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 18 October 2002 : 14:28:44
|
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 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 18 October 2002 : 14:40:00
|
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 |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 18 October 2002 : 19:51:49
|
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. |
|
|
s0110282
Starting Member
USA
20 Posts |
Posted - 21 October 2002 : 11:34:58
|
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 |
|
|
Ez4arab
Junior Member
479 Posts |
Posted - 22 October 2002 : 22:13:46
|
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 | |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 22 October 2002 : 22:28:58
|
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 |
|
|
Topic |
|