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.5
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 11

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 23 August 2004 :  12:41:19  Show Profile  Reply with Quote
OK I got in!

I like the saved feature! is this available as a mod/how did he do that? did he just create another 'status' for the PM and have PM's with 'that status' pulled through another page?!
Also, if I where to do this, I would have to limit this (ie only 10 saved pm's), these would have to not be automatically deleted when admins delete all read pm's from maintenance, and saved provate messages would need to be deleted if that particular member is deleted!<
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 29 August 2004 :  02:58:16  Show Profile  Visit stwilson's Homepage  Reply with Quote
I am getting this same error on the pm_blocklist.asp page. Anyone else getting this error and have a fix for it?

Shannon

quote:
Originally posted by gardi

do me a favour and go to block list asp.
when u use your mouse and go over to addblock list and etc. its giving error.
:D


<

Shannon
RidingArizona.com
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 29 August 2004 :  19:25:10  Show Profile  Reply with Quote
if the error is happening just through scrolling your mouse over- its very unlikely to be a script error!! Its most likely an error with your browser.
I havent experienced this error!

next time it happens, please copy the exact details of the error into here for us to take a look at!<
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 30 August 2004 :  01:56:26  Show Profile  Visit stwilson's Homepage  Reply with Quote
Yes, it was happening when I scroll the mouse over. Can you login and see if it does it to you too?

http://ridingarizona.com/upgrade

Login/Pass: bozo/bozo<

Shannon
RidingArizona.com
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 30 August 2004 :  07:09:29  Show Profile  Reply with Quote
Hi, I am not getting any error!
Like I said, it must be something to do with your browser. Because you havent told me EXACTLY what the error message was, I dont know how to help you.

But you could try going into your IE options and disable script debugging. try that!<
Go to Top of Page

kev0153
Starting Member

14 Posts

Posted - 09 September 2004 :  21:11:32  Show Profile  Reply with Quote
Getting a funny result. I have a couple users complaining that when they reply to a message the text box does not always pop up. The are using IE with the new service pack. I just had it happen to me when trying to reply (using safari on a Mac) to one of the users having the problem. I compared the source of a correct reply to one that is messed up. They are exactly the same, but the text box is not rendered in the browser? Any ideas? Nice mod BTW.

Thanks<
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 17 September 2004 :  05:44:48  Show Profile  Reply with Quote
quote:
Originally posted by gardi

do me a favour and go to block list asp.
when u use your mouse and go over to addblock list and etc. its giving error.
:D



in the pm_blocklist.asp file, do a search for the following:
 onMouseOver=mOvr(this,"""&strOnHoverCellColor& """) onMouseOut=mOut(this,"""& strOutHoverCellColor& """)

and remove all instances of that text.<
Go to Top of Page

stwilson
Junior Member

USA
385 Posts

Posted - 17 September 2004 :  10:08:53  Show Profile  Visit stwilson's Homepage  Reply with Quote
Love this mod. I have a question....in a prior version the new private messages were bolded. Previously read messages were not. How would I go about making unread messages title text bold?<

Shannon
RidingArizona.com
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 28 September 2004 :  18:01:18  Show Profile  Reply with Quote
quote:
Originally posted by stwilson

Love this mod. I have a question....in a prior version the new private messages were bolded. Previously read messages were not. How would I go about making unread messages title text bold?



sorry for the delay in replying. The reason I took this out was (as explained) my aim was to integrate the mod into a much more identical style to how the main snitz forums work, also the icons are an indicator of wether the pm has been read or not!

Anyway, just incase you havent already got the answer:

in pm_view.asp find the following:

quote:
		      	do Until rsMessage.EOF
				if i = 1 then
					CColor = strAltForumCellColor
				else
					CColor = strForumCellColor
				end if

				strFromMemberName = getMemberName(rsMessage("M_FROM"))
				strIsNew = rsMessage("M_READ")




directly after that add this:

quote:
				if strIsNew = "0" then
					strNewPMs = "<b>"
					strNewPMe = "</b>"
				else
					strNewPMs = ""
					strNewPMe = ""
				end if





<
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 28 September 2004 :  18:04:10  Show Profile  Reply with Quote
quote:
Originally posted by RichardKinser

quote:
Originally posted by gardi

do me a favour and go to block list asp.
when u use your mouse and go over to addblock list and etc. its giving error.
:D



in the pm_blocklist.asp file, do a search for the following:
 onMouseOver=mOvr(this,"""&strOnHoverCellColor& """) onMouseOut=mOut(this,"""& strOutHoverCellColor& """)

and remove all instances of that text.





ahhhh- well that would explain it (strange how not everyone, inc myself gets the errors). I will update the zip file!
thanks<
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 29 September 2004 :  08:31:47  Show Profile  Reply with Quote
GarethMoore1979, great mod package!!

In your instructions, you don't include the changes to pop_delete.asp, but you have a pop_delete.asp as part of the file set to upload. pop_delete.asp should not be uploaded from the PM 3.5.03 package if you have other mods installed that modified pop_delete.asp (eg: poll mod).

If you have other mods installed that have modified pop_delete.asp, then you need to edit pop_delete.asp as follows. This is the only difference I found between your pop_delete.asp included in the package and the original 3.4.04 version.

find (approx. line 637-644 in unmodified pop_delete.asp 3.4.04):

						if not rs.eof then
							intA_Replycount = rs("REPLYCOUNT")
						else
							intA_Replycount = 0
						end if
						
						rs.close
						set rs = Nothing


Beneath that add:


							'## Forum_SQL - Delete Private Messages that the user has sent or received
							strSql = "DELETE FROM " & strTablePrefix & "PM "
							strSql = strSql & " WHERE " & strTablePrefix & "PM.M_TO = " & Member_ID
							strSql = strSql & " OR " & strTablePrefix & "PM.M_FROM = " & Member_ID

							my_Conn.Execute(strSql)


cheers,
Nat

<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 29 September 2004 :  09:07:11  Show Profile  Reply with Quote
thanks, I will add that to the readme file ;-)<
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 29 September 2004 :  09:39:20  Show Profile  Reply with Quote
zip file updated in snitzbiz (now version 3.5.04), fixed bug in Block Member Pages and added instructions in readme file for pop_delete.asp

cheers!<
Go to Top of Page

GarethMoore1979
Junior Member

United Kingdom
220 Posts

Posted - 14 October 2004 :  17:01:47  Show Profile  Reply with Quote
Just bumping this topic up to the top since it seems to have been lost somewhat, and there are people posting quries still in the earlier version's topic.

apologies in advance!<
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 16 October 2004 :  09:49:29  Show Profile  Visit richfed's Homepage  Reply with Quote
Question that does not appear to have been asked so far ...

If I already have Private Messages installed on my forum [3.4.05 w/Active Users ... and many other mods], how can I upgrade to PM 3.5 without redoing the entire thing? Is that possible? If so, what changes are necessary?

Thanks -<
Go to Top of Page
Page: of 11 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.16 seconds. Powered By: Snitz Forums 2000 Version 3.4.07