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

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: Static META Tag Generator (For search bots)
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 3

vinnyio
Starting Member

13 Posts

Posted - 18 November 2001 :  16:53:16  Show Profile
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

Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 18 November 2001 :  17:05:28  Show Profile  Visit dayve's Homepage
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
Go to Top of Page

aavorio
Starting Member

10 Posts

Posted - 18 November 2001 :  17:36:43  Show Profile
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
Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 18 November 2001 :  17:57:54  Show Profile  Visit dayve's Homepage
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
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 18 November 2001 :  18:02:12  Show Profile
aavorio and an "end if" after that line.
strStatus = "<b>Success.</b>"
end if


- David
Go to Top of Page

vinnyio
Starting Member

13 Posts

Posted - 18 November 2001 :  18:15:21  Show Profile
works fine now cheers for that

Go to Top of Page

Sabian
Starting Member

10 Posts

Posted - 19 November 2001 :  08:44:29  Show Profile
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?


Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 19 November 2001 :  11:52:07  Show Profile  Visit dayve's Homepage
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
Go to Top of Page

Sabian
Starting Member

10 Posts

Posted - 19 November 2001 :  15:46:52  Show Profile
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.


Go to Top of Page

Chuck McB
Junior Member

WooYay
196 Posts

Posted - 22 November 2001 :  13:49:00  Show Profile  Visit Chuck McB's Homepage  Send Chuck McB an ICQ Message
Seems I'm getting pages from private (moderator only) forums created as well.

(Using topicmaker2.asp)



Chuck

---
DNA.styx
DNA Games
Go to Top of Page

Rob Poretti
Junior Member

Canada
435 Posts

Posted - 22 November 2001 :  16:03:17  Show Profile  Visit Rob Poretti's Homepage
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
Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 22 November 2001 :  17:10:35  Show Profile  Visit dayve's Homepage
my host royally screwed up and I moved temporarily. you can view the directory contents here:

http://dayve.d2g.com:666/forum/topics/

I will update the first post, thanks.

____________
dayve
http://www.nineinchnailz.com/forum
Go to Top of Page

Chuck McB
Junior Member

WooYay
196 Posts

Posted - 24 November 2001 :  11:37:46  Show Profile  Visit Chuck McB's Homepage  Send Chuck McB an ICQ Message
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
Go to Top of Page

zaratrusta
Starting Member

3 Posts

Posted - 24 November 2001 :  21:51:21  Show Profile
I have this error
WHY?

Microsoft VBScript runtime error '800a0046'

Permission denied

/forum/topicmaker2.asp, line 56


Go to Top of Page

Chuck McB
Junior Member

WooYay
196 Posts

Posted - 24 November 2001 :  22:24:12  Show Profile  Visit Chuck McB's Homepage  Send Chuck McB an ICQ Message
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
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Previous Page | Next Page
 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.52 seconds. Powered By: Snitz Forums 2000 Version 3.4.07