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 / Current Version (Old)
 Help! Help! Help!
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

tiascott
Starting Member

8 Posts

Posted - 29 July 2001 :  22:13:07  Show Profile
Ok, My name is Tia and I am new here.
First off, I don't know a thing about asp coding. I know you probably get that alot, and I apologize. I downloaded the files for the forum, and I think it's great, and i was very confident that I could do it myself, and when i read the read me files, my confidence halted to a complete stop!
So, are there any crash courses online where I can learn asp as soon as possible. I am working on a deadline to get a new site up.
Another thing, I found a great place to host my board. it's at : http://www.brinkster.com/Default.asp . It's especially for asp and you get 30mb for free, they have other plans but they are not free, but they are pretty decent. Oh, and there are no ads, even with the free ones.

www.pawnusa.net

asp_storm
Average Member

USA
787 Posts

Posted - 29 July 2001 :  22:36:11  Show Profile  Visit asp_storm's Homepage  Send asp_storm an AOL message
if you need some step by sttep help, either email me or post a reply

[|||_____-asp_newbie-_____||||||]
(__Webmaster__)
[-Newschoolskiing.com-]
Go to Top of Page

asp_storm
Average Member

USA
787 Posts

Posted - 29 July 2001 :  22:37:11  Show Profile  Visit asp_storm's Homepage  Send asp_storm an AOL message
quote:

if you need some step by sttep help, either email me or post a reply

[|||_____-asp_newbie-_____||||||]
(__Webmaster__)
[-Newschoolskiing.com-]

]
i meant step by step

[|||_____-asp_newbie-_____||||||]
(__Webmaster__)
[-Newschoolskiing.com-]
Go to Top of Page

DreaMasteR
Starting Member

36 Posts

Posted - 29 July 2001 :  22:38:55  Show Profile
Tia? Try www.4guysfromrolla.com for a good course on asp. If you need stuff post your problems here and I'll try to help you.

Go to Top of Page

asp_storm
Average Member

USA
787 Posts

Posted - 29 July 2001 :  22:41:52  Show Profile  Visit asp_storm's Homepage  Send asp_storm an AOL message
dont worry you got a lot of good people here to help

[|||_____-asp_newbie-_____||||||]
(__Webmaster__)
[-Newschoolskiing.com-]
Go to Top of Page

tiascott
Starting Member

8 Posts

Posted - 30 July 2001 :  01:58:00  Show Profile
I just need help setting up the Snitz forum. Anyone willing to help me, I can return the favor by desiging some graphics for you. I would really appriciate the help big time. Thanks you guys.

www.pawnusa.net
Go to Top of Page

Spoon
Average Member

Ireland
507 Posts

Posted - 30 July 2001 :  07:55:59  Show Profile  Visit Spoon's Homepage  Send Spoon an ICQ Message
quote:

I just need help setting up the Snitz forum. Anyone willing to help me, I can return the favor by desiging some graphics for you. I would really appriciate the help big time. Thanks you guys.

www.pawnusa.net



I just made this page - Hope it works for you
http://www.aslickpage.com/snitz_help.html

Edited by - spoon on 30 July 2001 08:00:20
Go to Top of Page

tiascott
Starting Member

8 Posts

Posted - 30 July 2001 :  23:11:56  Show Profile
Yes, that helped alot, but now I am at a dead end and i get this error everytime I try to run setup.asp in my browser:
quote:

Microsoft VBScript runtime error '800a01a8'

Object required: 'rsConfig'

/pawnusa/config.asp, line 159


Also, the file named "snitz_forum_2000.mdb" , I did not see that included in my download. Am I supposed to create one called that??

www.pawnusa.net
Go to Top of Page

tiascott
Starting Member

8 Posts

Posted - 30 July 2001 :  23:25:05  Show Profile
Ok, I read around and found out that I got a buggie config.asp file, and i downloaded the new one. Now i get:

quote:

There has been an error !!

The database could not be opened !!
Check your config.asp file and set the
strConnString so it points to the database.
Also check if strDBType is set to the right databasetype.


Code : -2147467259


I am sure I have the settings right, I can't think of anything else!


www.pawnusa.net
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 31 July 2001 :  05:29:02  Show Profile
It means it cannot open your database.
Can you post your strConnString and your strDBType from your config.asp file, to see if you have it set correctly?

- David
Go to Top of Page

tiascott
Starting Member

8 Posts

Posted - 31 July 2001 :  13:13:25  Show Profile
Sure, here it is, I am using Brinkster to host my board:
quote:

'strDBType = "sqlserver"
strDBType = "access"
'strDBType = "mysql"

'## Make sure to uncomment one of the strConnString lines!
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("snitz_forums_2000.mdb") '## MS Access 97 using virtual path
strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/pawnusa/db/snitz_forums_2000.mdb") '## MS Access 97 on Brinkster
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=c:\inetpub\dbroot\snitz_forums_2000.mdb" '## MS Access 97
'strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/tools/snitz_forums_2000.mdb") '## MS Access 2000 using virtual path
'strConnString = "driver={SQL Server};server=SERVER_NAME;uid=UID;pwd=PWD;database=DB_NAME" '## MS SQL Server 7
'strConnString = "driver={SQL Server};server=SERVER_NAME;uid=UID;pwd=PWD;database=DB_NAME" '## MS SQL Server 2000
'strConnString = "driver=MySQL;server=SERVER_IP;uid=UID;pwd=PWD;database=DB_NAME" '## MySQL

strTablePrefix = "FORUM_"



www.pawnusa.net
Go to Top of Page

asp_storm
Average Member

USA
787 Posts

Posted - 31 July 2001 :  14:06:11  Show Profile  Visit asp_storm's Homepage  Send asp_storm an AOL message
quote:

Sure, here it is, I am using Brinkster to host my board:
quote:

'strDBType = "sqlserver"
strDBType = "access"
'strDBType = "mysql"

'## Make sure to uncomment one of the strConnString lines!
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("snitz_forums_2000.mdb") '## MS Access 97 using virtual path
strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/pawnusa/db/snitz_forums_2000.mdb") '## MS Access 97 on Brinkster
'strConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=c:\inetpub\dbroot\snitz_forums_2000.mdb" '## MS Access 97
'strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/tools/snitz_forums_2000.mdb") '## MS Access 2000 using virtual path
'strConnString = "driver={SQL Server};server=SERVER_NAME;uid=UID;pwd=PWD;database=DB_NAME" '## MS SQL Server 7
'strConnString = "driver={SQL Server};server=SERVER_NAME;uid=UID;pwd=PWD;database=DB_NAME" '## MS SQL Server 2000
'strConnString = "driver=MySQL;server=SERVER_IP;uid=UID;pwd=PWD;database=DB_NAME" '## MySQL

strTablePrefix = "FORUM_"



www.pawnusa.net


try using the acess2000 one

[|||_____-asp_newbie-_____||||||]
(__Webmaster__)
[-Newschoolskiing.com-]
Go to Top of Page

tiascott
Starting Member

8 Posts

Posted - 31 July 2001 :  18:30:33  Show Profile
Nope, same thing. :(

www.pawnusa.net
Go to Top of Page

asp_storm
Average Member

USA
787 Posts

Posted - 31 July 2001 :  19:12:29  Show Profile  Visit asp_storm's Homepage  Send asp_storm an AOL message
ok, im me or send me an email: ryan@lineski.com
and will help you out


{___\/\/EB/\/\/-\STER___}
[---Newschoolskiing.com---]
ASP RULES
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.31 seconds. Powered By: Snitz Forums 2000 Version 3.4.07