Author |
Topic |
|
tiascott
Starting Member
8 Posts |
Posted - 29 July 2001 : 22:13:07
|
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
|
if you need some step by sttep help, either email me or post a reply
[|||_____-asp_newbie-_____||||||] (__Webmaster__) [-Newschoolskiing.com-] |
|
|
asp_storm
Average Member
USA
787 Posts |
Posted - 29 July 2001 : 22:37:11
|
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-] |
|
|
DreaMasteR
Starting Member
36 Posts |
Posted - 29 July 2001 : 22:38:55
|
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.
|
|
|
asp_storm
Average Member
USA
787 Posts |
Posted - 29 July 2001 : 22:41:52
|
dont worry you got a lot of good people here to help
[|||_____-asp_newbie-_____||||||] (__Webmaster__) [-Newschoolskiing.com-] |
|
|
tiascott
Starting Member
8 Posts |
Posted - 30 July 2001 : 01:58:00
|
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 |
|
|
Spoon
Average Member
Ireland
507 Posts |
Posted - 30 July 2001 : 07:55:59
|
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 |
|
|
tiascott
Starting Member
8 Posts |
Posted - 30 July 2001 : 23:11:56
|
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 |
|
|
tiascott
Starting Member
8 Posts |
Posted - 30 July 2001 : 23:25:05
|
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 |
|
|
Davio
Development Team Member
Jamaica
12217 Posts |
Posted - 31 July 2001 : 05:29:02
|
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 |
|
|
tiascott
Starting Member
8 Posts |
Posted - 31 July 2001 : 13:13:25
|
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 |
|
|
asp_storm
Average Member
USA
787 Posts |
Posted - 31 July 2001 : 14:06:11
|
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-] |
|
|
tiascott
Starting Member
8 Posts |
Posted - 31 July 2001 : 18:30:33
|
Nope, same thing. :(
www.pawnusa.net |
|
|
asp_storm
Average Member
USA
787 Posts |
|
|
Topic |
|