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

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Classic ASP versions(v3.4.XX)
 Snitz 3.4.07 with mods pre-installed
 New Topic
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 12 May 2013 :  00:33:29  Show Profile
That's what he's got, Davio. The files were modified from a pristine copy of 3.4.07 - I left the dbs files for him to run once he had installed and setup his forum, then all he had to do was copy the modified files over (with the exception of that lang mod issue).
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 13 May 2013 :  14:26:47  Show Profile  Visit richfed's Homepage
Ok, I have tried again ... just uploaded the clean 3.4.07 files WITH changes to config.asp. Forum appears fine [though I had to reset my password??], however I cannot run setup.asp. Same issue as previously. I am having my host look into this. If, and when, I get setup to run, I will try your modded files, Carefree, and see if I can get all that stuff functional. I just thought of something -- I had the password salting MOD installed [something I wish I never had done, btw] ... wondering if that could have anything to do with it?

Thank you both for your offers and assistance!!
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 13 May 2013 :  15:36:07  Show Profile  Visit richfed's Homepage
RESOLVED!!

On to Phase 2. Uploading the modded files.

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 13 May 2013 :  16:43:22  Show Profile  Visit richfed's Homepage



When clicking on a topic ...

ADODB.Recordset error '800a0cc1'

Item cannot be found in the collection corresponding to the requested name or ordinal.

/messageboard/topic.asp, line 167


When clicking on the Members link:

Microsoft VBScript runtime error '800a0009'
Subscript out of range: 'mM_PMRECEIVE'

/messageboard/members.asp, line 421


Edited by - richfed on 13 May 2013 16:48:40
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 13 May 2013 :  21:22:08  Show Profile
That means the dbs file for private messaging wasn't installed or had an error during installation.
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 14 May 2013 :  10:58:14  Show Profile  Visit richfed's Homepage
Sent you some e-mails last night with various table errors [Snitz was down at my end four several hours]:

Hi Craig –

Snitz seems down right now and I am going to bed. Thought I’d just send you an e-mail, to let you know as soon as it’s up, that I DID run the PM .dbs files I’ve been distracted and I probably shouldn’t be doing this right now, but I seem to recall seeing a message that there was a problem with duplicate columns. I could be wrong. That is probably it, though. My forum now shows it is Snitz version 3.4.07, but, in reality, it isn’t as I re-uploaded all my old modded files so that the forum is usable. So, that’s where I am. Not sure how, or if, I should proceed.

If you’ve got suggestions, I’m all ears.

Here's the Private Messages table results:

quote:
Private Messages Mod (Default)

Creating table(s)...
CREATE TABLE FORUM_PM( M_ID int IDENTITY (1, 1) PRIMARY KEY NOT NULL , M_SUBJECT nvarchar (100) NULL , M_FROM int NULL , M_TO int NULL , M_SENT nvarchar (50) NULL , M_MESSAGE ntext NULL , M_PMCOUNT nvarchar (50) NULL , M_READ int NULL DEFAULT 0, M_MAIL nvarchar (50) NULL , M_OUTBOX smallint NULL DEFAULT 1)
Table already exists
________________________________________

Adding Column M_PMEMAIL...
ALTER TABLE FORUM_MEMBERS ADD M_PMEMAIL int NULL DEFAULT 0
ALTER TABLE FORUM_MEMBERS ADD M_PMEMAIL int NULL DEFAULT 0
-2147217900 | Column names in each table must be unique. Column name 'M_PMEMAIL' in table 'FORUM_MEMBERS' is specified more than once.
________________________________________

Adding Column M_PMRECEIVE...
ALTER TABLE FORUM_MEMBERS ADD M_PMRECEIVE int NULL DEFAULT 1
ALTER TABLE FORUM_MEMBERS ADD M_PMRECEIVE int NULL DEFAULT 1
-2147217900 | Column names in each table must be unique. Column name 'M_PMRECEIVE' in table 'FORUM_MEMBERS' is specified more than once.
________________________________________

Adding Column M_PMBLOCKLIST...
ALTER TABLE FORUM_MEMBERS ADD M_PMBLOCKLIST ntext NULL
ALTER TABLE FORUM_MEMBERS ADD M_PMBLOCKLIST ntext NULL
-2147217900 | Column names in each table must be unique. Column name 'M_PMBLOCKLIST' in table 'FORUM_MEMBERS' is specified more than once.
________________________________________

Adding new records..
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strPMLimit','20')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strPMStatus','1')
INSERT INTO FORUM_CONFIG_NEW (C_VARIABLE,C_VALUE) VALUES ('strPMStatus','1')
-2147217873 | Cannot insert duplicate key row in object 'FORUM_CONFIG_NEW' with unique index 'C_VARIABLE'.


Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 14 May 2013 :  12:42:28  Show Profile
If you want to get a clean result, the existing tables, fields, & records must first be deleted. Save this as "dbs_PrivateMessages.asp" (replace the existing one) and use it.


Private Messages (Reinstall)

[DROP]
PM
[END]

[CREATE]
PM
M_ID
M_SUBJECT#varchar (100)#NULL#
M_FROM#int#NULL#
M_TO#int#NULL#
M_SENT#varchar (50)#NULL#
M_MESSAGE#memo#NULL#
M_PMCOUNT#varchar (50)#NULL#
M_READ#int#NULL#0
M_MAIL#varchar (50)#NULL#
M_OUTBOX#smallint#NULL#1
[END]

[ALTER]
MEMBERS
DROP#M_PMEMAIL###
DROP#M_PMRECEIVE###
DROP#M_PMBLOCKLIST###
[END]

[ALTER]
MEMBERS
ADD#M_PMEMAIL#int#NULL#0
ADD#M_PMRECEIVE#int#NULL#1
ADD#M_PMBLOCKLIST#memo#NULL#
[END]

[DELETE]
CONFIG_NEW
(C_VARIABLE='STRPMLIMIT')
(C_VARIABLE='STRPMSTATUS')
[END]

[INSERT]
CONFIG_NEW
(C_VARIABLE,C_VALUE)#('strPMLimit','20')
(C_VARIABLE,C_VALUE)#('strPMStatus','1')
[END]
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 14 May 2013 :  15:10:37  Show Profile  Visit richfed's Homepage
So, that will end up deleting any existing PMs? I can live with that. Before I proceed, let me ask you, will any of the other .dbs files require this sort of thing? I wouldn't want to lose all the polls, for example.
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 14 May 2013 :  20:14:21  Show Profile
You don't have to reinstall the dbs files for any feature that you already had working.
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 15 May 2013 :  11:37:09  Show Profile  Visit richfed's Homepage
OK - I had PMs already working. I just thought that these were some sort of updates for Snitz .07

Let me mull this over. I'm not sure which way to go.

Thanks, Carefree!

Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 01 June 2013 :  11:48:50  Show Profile  Visit richfed's Homepage
Davio - If you are still up for a challenge, I could use your assistance. It seems the version of the Event Calender I have does not have recurring events. Since a lot of the theme of my forum is history, a lot recurs! Could you try your hand at revising that? Or, is it easy to do ... for a 61 year old with failing eyesight! :-) PM me, if you would like access.
Go to Top of Page

Carefree
Advanced Member

Philippines
4217 Posts

Posted - 05 January 2014 :  10:20:36  Show Profile
quote:
Davio - If you are still up for a challenge, I could use your assistance. It seems the version of the Event Calender I have does not have recurring events. Since a lot of the theme of my forum is history, a lot recurs! Could you

Sorry, I missed this one. I can add the recurring events for you, Rich, if you still need it done.
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Previous Page
 New Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.28 seconds. Powered By: Snitz Forums 2000 Version 3.4.07