Author |
Topic |
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 October 2002 : 02:23:22
|
Private Messages 3.4.03
Updated October 19, 2002! New!
September 5: Maximum Allowed Private Messages
Private Messages On/Off toggle
September 7: PMs added to topic.asp
September 12: Updated Files: readme.txt
members.asp
pop_profile.asp
October 2: Updated Files: privateread.asp - added MSN support
October 3: Updated Files: privateread.asp, pm_view.asp - fixed MSN support,
Made small changes to database queries.
October 6: Updated Files: pm_view.asp, privateread.asp - Fixed PMLimit. It now counts sent AND received PMs
October 8: Updated Files: pm_view.asp, privateread.asp - Altered query to eliminate annoying error
October 14: Updated Files: pm_view.asp - Added message sorting by From, To, Sent Date and Subject
New Files: icon_asc.gif, icon_desc.gif
October 17: pm_view.asp - Improved message sorting/admin & moderators exempt from PMLimit
privateread.asp - admin & moderators exempt from PMLimit
New Files: inc_pm.asp - include this to check messages anywhere on your site
icon_pmgotmail.gif
icon_pmnomail.gif
October 17: readme.html updated and began a troubleshooting section to ease installation
October 18 dbs_PrivateMessages.asp - added strPMLimit and strPMStatus to CONFIG_NEW
dbs_PrivateMessages2.asp - added strPMLimit and strPMStatus to CONFIG_NEW
October 19: privatesend.asp - Added form validation
August 23, 2004: Updated Download link
Download: http://www.atomicwebstudio.com/snitz/
Demo available at: http://www.skepticfriends.org/forum/
User Name: demo Password: demo
@tomic |
SportsBettingAcumen.com |
Edited by - @tomic on 24 August 2004 01:33:36 |
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 07 October 2002 : 04:35:24
|
So if I already have PM installed and working I just overwrite the new files over the old files ? |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 October 2002 : 05:35:31
|
Yes, everything else works fine and the changes to those 2 files is minimal.
@tomic |
SportsBettingAcumen.com |
|
|
Tmpj
Junior Member
Denmark
467 Posts |
Posted - 07 October 2002 : 08:15:29
|
Nice work @tomic! |
|
|
padawan
Junior Member
200 Posts |
Posted - 07 October 2002 : 11:13:54
|
master @TOMIC:
The last task on the README file is to modify INC_HEADER.ASP (2 changes). Is this the last step in the PM-MOD installation? Or are there any additional steps we should be aware of?
'preciate the input, sir.
- padawan |
"...be mindful of the SnitzForce..." |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 October 2002 : 19:12:05
|
Now that you mention it there is one thing in the readme.txt file(not the html) that's important for Active Users. This keeps your Private Message link off of that. I will update the readme.html as soon as i can with that. There are some more optional bits of code in that as well but they are not mandatory for the PMs to work. There is some internationalization code there too but that's astill beta so I don't touch it myself. Of course, I do have the luxury of using the default Snitz language.
@tomic |
SportsBettingAcumen.com |
|
|
al_iguana
Junior Member
138 Posts |
Posted - 07 October 2002 : 19:35:40
|
i put the 2 updated files in my forum, but when i click on PM INBOX i get
unspecified error
forum/pm_view.asp line 115
i put the old pm_view back and its fine. weird. |
----
Don't Dream It ~ Be It http://www.peppermintiguana.co.uk/cymrugothic/ |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 October 2002 : 19:41:39
|
Do you use an Access database? If so I think I have a cure but can't post it for a few hours but more information would be helpful.
@tomic |
SportsBettingAcumen.com |
|
|
al_iguana
Junior Member
138 Posts |
Posted - 07 October 2002 : 20:01:08
|
yeah, its an access 2000 database running on the current snitz code. the system is working fine, but when i put those two new files in i get the error.
have you changed anything else? should i upload ALL the files in the current zip? |
----
Don't Dream It ~ Be It http://www.peppermintiguana.co.uk/cymrugothic/ |
|
|
s5design
Starting Member
United Kingdom
7 Posts |
Posted - 07 October 2002 : 20:04:32
|
Unfortunately I too have a problem with the new pm_view.asp
It barfs at line 115, executing the Access version of the SQL string, with an ADO 80004005 "Unspecified error".
Pasting the string into an Access query doesn't work either; I get the wonderful "Reserved error (-3025); there is no message for this error."
|
-Steve- |
Edited by - s5design on 07 October 2002 20:07:02 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 08 October 2002 : 03:59:58
|
OK, I have redone the query in a way that is, hopefully, Access friendly.
@tomic |
SportsBettingAcumen.com |
|
|
al_iguana
Junior Member
138 Posts |
Posted - 08 October 2002 : 10:46:59
|
yup, it works fine now.
i had another problem, it was telling me i had reached my postbox limit when i had set the limit at 15. i had forgot to insert the limit DIMs into config asp. all working great now, thank you. |
----
Don't Dream It ~ Be It http://www.peppermintiguana.co.uk/cymrugothic/ |
|
|
padawan
Junior Member
200 Posts |
Posted - 08 October 2002 : 11:33:25
|
master @TOMIC:
...just a quick question to get me unconfused...
When modifying DEFAULT.ASP, what exactly do you mean by "Right above that but below "end if" insert the following"
Here's the instruction snippet.
Find: (about line 574) Select All if strShowStatistics = "1" then WriteStatistics end if
Right above that but below "end if" insert the following:
Select All
if strPMStatus = "1" then %> <!--#INCLUDE FILE="privatemess.asp"--> <% end if
How should the snippet look like after the code insertion? 'preciate all the input, sir.
- padawan
|
"...be mindful of the SnitzForce..." |
Edited by - padawan on 08 October 2002 11:34:06 |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 08 October 2002 : 11:42:48
|
Here is how I have that part of the page:
else
blnHiddenForums = true
end if ' ChkDisplayForum()
end if
next '## Next Forum
end if
next '## Next Category
end if
if strPMStatus = "1" then
%>
<!--#INCLUDE FILE="privatemess.asp"-->
<% end if
if strShowStatistics = "1" then
WriteStatistics
end if
@tomic |
SportsBettingAcumen.com |
|
|
padawan
Junior Member
200 Posts |
Posted - 08 October 2002 : 12:04:00
|
quote: Originally posted by @tomic
Here is how I have that part of the page:
else
blnHiddenForums = true
end if ' ChkDisplayForum()
end if
next '## Next Forum
end if
next '## Next Category
end if
if strPMStatus = "1" then
%>
<!--#INCLUDE FILE="privatemess.asp"-->
<% end if
if strShowStatistics = "1" then
WriteStatistics
end if
@tomic
Will this work just fine (see snippet in red)?
'----------photo album insert into main page------ %> <!--#include file="inc_photo_album.asp"--> <% '---------end photo album insert ---------------- '----------- Active Users insert---------------- %><!--#include file="inc_activeusers.asp"--><% '----------- end Active Users insert ---------- '------------- start PM insert ------------ if strPMStatus = "1" then %> <!--#INCLUDE FILE="privatemess.asp"--> <% end if '------------- end PM insert ------------- if strShowStatistics = "1" then WriteStatistics end if
thanks for the support! - padawan
|
"...be mindful of the SnitzForce..." |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 08 October 2002 : 12:24:26
|
That is how I have my code set up. I removed my reference to Active Users in the hopes that it would be easier if it was just PM refrences but it looks like it should work fine.
@tomic |
SportsBettingAcumen.com |
|
|
Topic |
|