Author |
Topic |
lcs78816
Junior Member
195 Posts |
Posted - 29 January 2001 : 07:30:13
|
same thing with me using SR2 private messages are currently turned error '80020009' Exception occurred.
database ran smooth with no problem, just the preference not working /forum/main/pm_options.asp, line 105
Edited by - lcs78816 on 29 January 2001 07:39:01 |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 29 January 2001 : 09:38:21
|
when you are setting the prevferences, make sure that at least one radio button is selected in all three selections, by default the "Outbox" section does not have a checked radio button, so posting causes the error you have been getting
'Resistance is futile' |
|
|
fredzepplin
Starting Member
18 Posts |
Posted - 29 January 2001 : 11:55:15
|
HuwR. Can you explain what exactly you mean. I can click on Outbox just fine, I just can't send a message, or change any of the preferences.
I don't see a radio button anywhere as I can't access the preference section.
I've used some of your mods in the past and have never had any problem installing them. This is currently the only mod that I'm having problems with when using SR2.
If you could expand on this it would be greatly appreciated.
Thanks in advance;
JT
Edited by - fredzepplin on 29 January 2001 11:57:12 |
|
|
lcs78816
Junior Member
195 Posts |
Posted - 30 January 2001 : 17:48:53
|
quote: To use this with versions prior to v3.1 SR4 you will need to edit some files
What are the files that I need to edit in order to have it function in SR2?
|
|
|
wedont
Junior Member
Canada
344 Posts |
Posted - 30 January 2001 : 22:46:06
|
IN: PM icon and link to Topic.asp from Richard kinser http://www1.domaindlx.com/dssdbs/files/pm_topic.txt
What should I modify or remove to prevent the pm.gif icon to show up in topic_asp when a visitor is Not "LogIn", 'cause the privatesend_asp does not have spaces to write the username and passwrd and endup on an error page !
Wedont snitz ver3.1 sr2 access 2k.
Edited by - wedont on 30 January 2001 22:47:50 |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 30 January 2001 : 23:00:02
|
you can just test for the existence of a cookie.
something like:
if strDBNTUserName <> "" then
display the icon
end if
|
|
|
Nolltre.com
Starting Member
Sweden
14 Posts |
Posted - 01 February 2001 : 11:11:12
|
hm...
I got this error: Microsoft JET Database Engine error '80040e10' No value given for one or more required parameters.
/privatemess.asp, line 50
What to do?
________________________ The true forum aviable at: www.nolltre.com/forum
Nolltre.com - The one and only |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 01 February 2001 : 11:40:45
|
sounds like you didn't run the database setup. |
|
|
Nolltre.com
Starting Member
Sweden
14 Posts |
Posted - 01 February 2001 : 16:34:10
|
we'll now i downloaded the latest version i converted the access 97 database to a 2000 so i could add the new table 'FORUM_PM', then i got this error Microsoft JET Database Engine error '80040e10' No value given for one or more required parameters.
/tt/privatemess.asp, line 50
The same as the last time, plz help? |
|
|
fredzepplin
Starting Member
18 Posts |
Posted - 01 February 2001 : 16:41:16
|
Repost
Problem with Preferences.
I installed exactly as listed in the readme.
Everything loaded okay, and looks okay on the site, however when I click on preferences I get.
Enable/Disable Private Messages
Simple Forum private messages are currently turned error '80020009' Exception occurred.
/forum/pm_options.asp, line 105
Any ideas on what I may have done wrong?
I'm also assuming that since I can't set the preferences that this is why when I try a test message it gives me an Invalid Password or Username screen that pops up.
I'm using 3.1 sr2 final, and have a few mods like hide e-mail, etc, but nothing else that I can see that would affect the code to cause this error.
Thanks in advance;
JT
Another poster posted the exact same problem. Databse update was run in default and had no errors. Everything looks fine, just can't access preferences.
Could someone please look into this.
Sincerely;
JT
|
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 01 February 2001 : 16:54:52
|
Nolltre,
The private Messages mod comes with a file called: mod_dbsetup.asp
the pm_readme.txt file that comes with this mod explains how to use it. |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 01 February 2001 : 16:59:07
|
fred, the problem seems to be with the FORUM_MEMBERS.M_PMRECEIVE field. Can you e-mail me your database and I'll take a look at it? |
|
|
wedont
Junior Member
Canada
344 Posts |
Posted - 02 February 2001 : 15:17:43
|
Thanks Richard,
These suggestions applies to v3.1sr2, I dont know for other version
For those who added the PM icon in topic_asp, that is to be integrated in topic_asp twice, where the pm.gif icon is called (in mine : line 339 and 500) as to prevent it to show up when a visitor in not "logIn" since that ends up on an error page. Also in private_info_asp I added a link right under "Return to Inbox" : "Go Back to Forum":
<p align="center"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><a href="JavaScript:history.go(-2)">Go Back to Forum</font></a></p>
So that if a user uses the PM mod, he has the choice to be directed back to the forum he's coming from instead of the Inbox.
quote: test for the existence of a cookie, in the absence of which the pm icon is not displayed: replace:
<% if rs("M_PMRECEIVE") = "1" then %> <a href="privatesend.asp?method=Topic&mname=<% =rs("M_NAME") %>"><img src="pm.gif" width="11" height="17" alt="Envoyer un Message Privé" border="0" align="absmiddle" hspace="3"></a> <% end if %>
Whith:
<% if strDBNTUserName <> "" then if rs("M_PMRECEIVE") = "1" then %> <a href="privatesend.asp?method=Topic&mname=<% =rs("M_NAME") %>"><img src="pm.gif" width="11" height="17" alt="Envoyer un Message Privé ŕ l'auteur" border="0" align="absmiddle" hspace="3"></a> <% end if %> <% end if %>
Notice,in topic_asp, I have made all the codes hspace: hspace="3" so that when a user is logIN, there wont be a second row appearing to make room for the delete icon.
Wedont snitz ver3.1 sr2 access 2k. PS Richard; I hope you noticed the Links for a Fader I wrote down from your reply in help_mod : http://forum.snitz.com/forum/link.asp?TOPIC_ID=4289
Edited by - wedont on 02 February 2001 15:35:35 |
|
|
JK_Bowman
New Member
USA
60 Posts |
Posted - 03 February 2001 : 19:30:09
|
Hey Gang,
Am I lost here? LOL
I just tried to install this Mod, and I see it when I pull up my forums. But I am not sure how to send messages.
Can someone please take a look?
Here is the URL...
http://spider-food.net/forum
Thanks so much!
J.K. Bowman http://spider-food.net/forum
|
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 03 February 2001 : 19:32:50
|
What version of the forum are you using?
Edited by - Richard Kinser on 03 February 2001 19:35:02 |
|
|
Topic |
|