Author |
Topic |
vinnyio
Starting Member
13 Posts |
Posted - 18 November 2001 : 16:53:16
|
Im using Snitz v 3.3 And I can do anything with the folder topics as it is set at drwxr-xr-x which is default for my folders as Im on an NT server
|
|
|
dayve
Forum Moderator
USA
5820 Posts |
Posted - 18 November 2001 : 17:05:28
|
quote:
Im using Snitz v 3.3 And I can do anything with the folder topics as it is set at drwxr-xr-x which is default for my folders as Im on an NT server
drwxr-xr-x
this is normally a unix permissions indicator and if your NT folder is showing this then you do not have WRITE permissions on the topics folder, it should look something like this.
drwxrw-rw- or chmod766 in Unix terms.
do you control your web server? if so, right click on the folder topics and allow WRITE permissions for Everyone
____________ dayve http://www.nineinchnailz.com/forum
Edited by - dayve on 18 November 2001 17:08:07 |
|
|
aavorio
Starting Member
10 Posts |
Posted - 18 November 2001 : 17:36:43
|
Hi,
I changed the code, but the error persists. Look:
Microsoft VBScript compilation error '800a03f6'
Expected 'End'
/forum/topicmaker.asp, line 62
[62] strStatus = "<b>Success.</b>"
Can you help me? Please...
aavorio |
|
|
dayve
Forum Moderator
USA
5820 Posts |
Posted - 18 November 2001 : 17:57:54
|
when I posted the script here I just noticed it got truncated so I made a downloadable version of the script instead. sorry...
____________ dayve http://www.nineinchnailz.com/forum |
|
|
Davio
Development Team Member
Jamaica
12217 Posts |
Posted - 18 November 2001 : 18:02:12
|
aavorio and an "end if" after that line.strStatus = "<b>Success.</b>" end if
- David |
|
|
vinnyio
Starting Member
13 Posts |
Posted - 18 November 2001 : 18:15:21
|
works fine now cheers for that
|
|
|
Sabian
Starting Member
10 Posts |
Posted - 19 November 2001 : 08:44:29
|
When I try and run it like this: for write_this = 2510 to 2530 - I get the error:
Microsoft VBScript runtime error '800a004c'
Path not found
/topicmaker.asp, line 56
If I run it 1 to 5, it runs but doesnt find any topics "Done processing topic number 1. - No such topic found." I assume this is from those topics being acrhived, which I don't want to run anyway. I can't figure out why I get the above error when I run the numbers higher for active topics (2510 to 2530)? Any ideas?
|
|
|
dayve
Forum Moderator
USA
5820 Posts |
Posted - 19 November 2001 : 11:52:07
|
quote:
When I try and run it like this: for write_this = 2510 to 2530 - I get the error:
Microsoft VBScript runtime error '800a004c'
Path not found
/topicmaker.asp, line 56
If I run it 1 to 5, it runs but doesnt find any topics "Done processing topic number 1. - No such topic found." I assume this is from those topics being acrhived, which I don't want to run anyway. I can't figure out why I get the above error when I run the numbers higher for active topics (2510 to 2530)? Any ideas?
first off, did you create a child directory in /forum called topics?
second, if you get a message stating No Such Topic Found, that is NOT an error, just an advisory. It usually displays this message if it cannot find the topic which could have occurred from archiving or deleting the topic, totally normal situation.
____________ dayve http://www.nineinchnailz.com/forum |
|
|
Sabian
Starting Member
10 Posts |
Posted - 19 November 2001 : 15:46:52
|
Part of the problem is solved, thanks... I had not made the Topics directory.
quote: It usually displays this message if it cannot find the topic which could have occurred from archiving or deleting the topic, totally normal situation.
If I set it to start at 1, and force it over records that I know are deleted, I get the error: ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/topicmaker.asp, line 29
This occurs as it attempts to process record 11, which is deleted.
|
|
|
Chuck McB
Junior Member
WooYay
196 Posts |
Posted - 22 November 2001 : 13:49:00
|
Seems I'm getting pages from private (moderator only) forums created as well.
(Using topicmaker2.asp)
Chuck
--- DNA.styx DNA Games |
|
|
Rob Poretti
Junior Member
Canada
435 Posts |
Posted - 22 November 2001 : 16:03:17
|
Hi,
When I click on your demo page, I get this:
Directory Listing Denied This Virtual Directory does not allow contents to be listed.
Cheers!
Rob Poretti Sascom Marketing Group ~ Toronto Cube-Tec Forums vox.905.825.5373 fax.905.825.5960 |
|
|
dayve
Forum Moderator
USA
5820 Posts |
|
Chuck McB
Junior Member
WooYay
196 Posts |
Posted - 24 November 2001 : 11:37:46
|
Added a bit of code so that private forums don't get listed:
After line #15 Put strSql = "SELECT FORUM_ID FROM FORUM_FORUM WHERE F_PRIVATEFORUMS = 0" set rsPubForums = my_Conn.Execute (strSql) strSqlPubForum = " AND FORUM_ID IN (" do until rsPubForums.eof strSqlPubForum = strSqlPubForum & rsPubForums(0) & "," rsPubForums.MoveNext loop strSqlPubForum = strSqlPubForum & ")" strSqlPubForum = replace(strSqlPubForum, ",)", ")")
After line #20 add strSql = strSql & strSqlPubForum
Chuck
--- DNA.styx DNA Games |
|
|
zaratrusta
Starting Member
3 Posts |
Posted - 24 November 2001 : 21:51:21
|
I have this error WHY?
Microsoft VBScript runtime error '800a0046'
Permission denied
/forum/topicmaker2.asp, line 56
|
|
|
Chuck McB
Junior Member
WooYay
196 Posts |
Posted - 24 November 2001 : 22:24:12
|
You're getting Permission denied on the line that is trying to CreateTextFile?
Sounds like you don't have the right permissions to use FSO to Create a TextFile.
Chuck
--- DNA.styx DNA Games |
|
|
Topic |
|