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)
 EZ Anonymous Posting - for v3.4.0x
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 4

aluminumcan
New Member

63 Posts

Posted - 04 December 2002 :  17:57:41  Show Profile
Ugh. My fault. I'm stupid. I didn't realize there was a seperate page for modifying individual forums. Sorry.

Works great now! DoraMoon...THANKS!
Go to Top of Page

DoraMoon
Average Member

Taiwan
661 Posts

Posted - 06 December 2002 :  13:09:18  Show Profile
hi~ aluminumcan,
glad that you solved those problem by yourself.

about 'Davio's Anonymous Access MOD'... Davio did'nt release this mod as a "individual" mod. it's mean the package maybe something like the ServerHacker's modded forum, with Poll, Ban IP, Anonymous Access... and a lots Davio's great mods installed. (v3.3.0x)

i think you still can get it from Davio's website...
http://www.dsilvera.com/forum/default.asp
Go to Top of Page

mxc369
Starting Member

41 Posts

Posted - 09 January 2003 :  20:10:29  Show Profile
I am sorry but I am having a really hard time following what I have to do to install this mod.
So far I downloaded the mod and put all the files into my forums folder. I am just having a hard time following the code changes.
I dont even know where to start usually I go to the number line for the code that needs to be changed and then past the new code into that spot. I guess I don't know where to paste the code from the EZ#### code

Edited by - mxc369 on 09 January 2003 20:34:28
Go to Top of Page

DoraMoon
Average Member

Taiwan
661 Posts

Posted - 10 January 2003 :  08:52:07  Show Profile
hi~ mxc369,

sorry again for the bad instruction....
the eza_xxxx.asp file is a modified xxxx.asp file base on a "Clean" v3.4.0.3 file.
so if you did'nt have any Mods change the original code, you can just (backup first!) overwrite the xxxx with eza_xxxx files.

otherwise, you'll need to compare it with your file. for example, open eza_post_info.asp and your post_info.asp
fSubscription = 0 '<-----find this line in your about line.108
end if '<-----or this line.....
'##### EZ Anony 1-1 : below 4 lines added
dim AnonyGuest
if strAllowAnonyPost = "1" and strDBNTUserName = "" then
chkAllowAnonyPost(Forum_ID)
end if
'########## EZ Anony ##########


if Request.Form("cookies") = "yes" then '<-----find this line in your about line.121
strSelectSize = Request.Form("SelectSize") '<-----or this line.....
end if'<-----or more this line.........

then insert those new mod code '##### EZ Anony ..... lines. (sometimes need a few modify to above or below one line...)


anyway, if you are used to the method of finding how many "line number"...
............... '<-----no matter one more line ...
...........................'<-----or maybe this line ...
...............................'<-----find this line ...
'##### EZ Anony ??? : see here to know how to modify...
new insert/replace code...
'########## EZ Anony ##########

................'<-----find this line ...
...........................


sorry again if still a bad explanation..
and if you do'nt care a 3.3 old forum, maybe you can try Davio's Anonymous Access Mod. it's a better mod and "all-in-one" package.. no need to do any code modification.

Edited by - DoraMoon on 10 January 2003 08:59:19
Go to Top of Page

myrjam
Starting Member

13 Posts

Posted - 11 January 2003 :  08:51:00  Show Profile
Hi,

I tried to install the add-on, but I cannot set the 'auth type' of the forums to "Allow Anonymouse Posting (MOD)" because it is not in the list.

The options I do have are for example: "all visitors" and "mebers only" in total 8 options, but "Allow Anonymouse Posting (MOD)" is not there.

Can someone help?
Go to Top of Page

DoraMoon
Average Member

Taiwan
661 Posts

Posted - 11 January 2003 :  11:04:19  Show Profile
hi~ myrjam,

if the problem just new added option did'nt show on Auth Type: select list, i think it's not so hard to figure out what's going wrong...

the code for new added option is 1-6 in post.asp modification...
					"                	<option value=""3"""
			if ForumAuthType = 3 then Response.Write(" selected")
			Response.Write	">Allowed Member List & Password Protected</option>" & vbNewLine
'##### EZ Anony 1-6 - below 5 lines added
if strAllowAnonyPost = "1" or mLev = 4 then
			Response.Write	"                	<option value=""119"""
			if ForumAuthType = 119 then Response.Write(" selected")
			Response.Write	">Allow Anonymous Posting (MOD)</option>" & vbNewLine
end if
'########## EZ Anony ##########
		end if
		Response.Write	"                	<option value=""1"""
		if ForumAuthType = 1 then Response.Write(" selected")
		Response.Write	">Allowed Member List</option>" & vbNewLine & _


so first, make sure you did'nt missing this 1-6 in your post.asp file.
and if not this problem... then go to Admin Section/EZ Anonymous Posting Setup..
STEP 3.  EZ Anonymous Posting Feature Configuration :
make sure you complete STEP.1 and STEP.2 before turn ON this feature...
Allow Anonymous Posting:   * ON    OFF 
also make sure have this feature turn ON.
Go to Top of Page

myrjam
Starting Member

13 Posts

Posted - 12 January 2003 :  04:28:13  Show Profile
It's working nou, Thanks!
Go to Top of Page

kahloz
Starting Member

16 Posts

Posted - 14 January 2003 :  19:26:51  Show Profile
Dora...

I don't know how, or why, but here's whath appened.

I got the anonymous posting working, but for some reason, ALL my folder icons are always showing as icon_folder_new.gif

I don't know why.

If oyu go to www.kahloz.com/forums/default.asp you'll see what I mean.

The Icon_folder_New.gif image is a blue folder, to let users know there are new posts. The Icon_Folder.gif folder is a white folder, to let people know there aren't new posts.

But no matter what, they are all blue on the default page.

I know I did some changes to the default.asp folder and post.asp folder, would that have had any impact on this?

Thanks.

ps. the additiona of the anonymous was simple, once I figured out what # anony 3-2: add 1 line meant.
Go to Top of Page

kahloz
Starting Member

16 Posts

Posted - 14 January 2003 :  19:32:42  Show Profile
Well, ok, I figured it out.

Response.Write getCurrentIcon(strIconFolderNew,"New Posts","hspace=""0""") & "</a>"
'##### EZ Anony 3-1 : replace above 1 line with below 5 lines
'if strAllowAnonyPost = "1" and ForumPrivateForums = "119" then
'Response.Write getCurrentIcon(strIconFolderNewAnony,"This Forum Allow Anonymous Visitors Posting.. (New Posts)","hspace=""0""") & "</a>"
'else
'Response.Write getCurrentIcon(strIconFolderNew,"New Posts","hspace=""0""") & "</a>"
'end if
'########## EZ Anony ##########
else
Response.Write getCurrentIcon(strIconFolder,"Old Posts","hspace=""0""") & "</a>"
'##### EZ Anony 3-2 : replace above 1 line with below 5 lines
'if strAllowAnonyPost = "1" and ForumPrivateForums = "119" then
'Response.Write getCurrentIcon(strIconFolderNewAnony,"This Forum Allow Anonymous Visitors Posting.. (Old Posts)","hspace=""0""") & "</a>"
'else
'Response.Write getCurrentIcon(strIconFolderNew,"Old Posts","hspace=""0""") & "</a>"
'end if
'########## EZ Anony ##########

I put ' in front of your code and removed the ' from the original snitz line of code and it fixed the problem.

What did these lines do anyway? It just messed up my icon settings.
Go to Top of Page

DoraMoon
Average Member

Taiwan
661 Posts

Posted - 15 January 2003 :  08:02:52  Show Profile
quote:
Originally posted by kahloz

Response.Write getCurrentIcon(strIconFolderNew,"New Posts","hspace=""0""") & "</a>"
'##### EZ Anony 3-1 : replace above 1 line with below 5 lines
'if strAllowAnonyPost = "1" and ForumPrivateForums = "119" then
'Response.Write getCurrentIcon(strIconFolderNewAnony,"This Forum Allow Anonymous Visitors Posting.. (New Posts)","hspace=""0""") & "</a>"
'else
'Response.Write getCurrentIcon(strIconFolderNew,"New Posts","hspace=""0""") & "</a>"
'end if
'########## EZ Anony ##########
else
Response.Write getCurrentIcon(strIconFolder,"Old Posts","hspace=""0""") & "</a>"
'##### EZ Anony 3-2 : replace above 1 line with below 5 lines
'if strAllowAnonyPost = "1" and ForumPrivateForums = "119" then
'Response.Write getCurrentIcon(strIconFolderAnony,"This Forum Allow Anonymous Visitors Posting.. (Old Posts)","hspace=""0""") & "</a>"
'else
'Response.Write getCurrentIcon(strIconFolder,"Old Posts","hspace=""0""") & "</a>"
'end if
'########## EZ Anony ##########

hi~ kahloz,
the code just for adding a special folder icon to indicate the "Allow Anonymous Posting" forums.
and....... it's obviously, i make a big mistake there...

Update the download link, fix eza_default.asp 3-2 modified code.
thanks kahloz for finding this mistake for me...
Go to Top of Page

kahloz
Starting Member

16 Posts

Posted - 15 January 2003 :  19:43:03  Show Profile
Well, thank YOU for creating it. The anonymous thread is booming, it's spurred 2 controversial threads and a couple hundred posts.

It's exactly what I wanted.

I also like the fact that I can select WHICH forum I want to use, it's neat!

It was just a minor set-back with the folders, no biggie, all fixed.
Go to Top of Page

mxc369
Starting Member

41 Posts

Posted - 16 January 2003 :  12:04:41  Show Profile
Thanks again for the help I have it installed and working. One question. I noticed that I do not Have Access to edit my members now in the Admin options. The "members" tab it missing. Do you know why this may be Thanks
Mike
Go to Top of Page

DoraMoon
Average Member

Taiwan
661 Posts

Posted - 17 January 2003 :  08:21:47  Show Profile
hi~ mxc369,
as i know, there are two ways to "Edit Members's Profile" for Admin..
1. click on Members page.(members.asp)
2. click member's name when viewing his/her profile.(pop_profile.asp)
not sure what you mean "members" tab missing ???

and i think this mod should do nothing about this profile modify work,
on members.asp page, we do something to prevent Anony account showing.
and on pop_profile.asp, we block normal users trying to edit Anony account's profile...
so really can't guess what's wrong....

can you try to explain the exact problem more ???
or if it's Members page problem, maybe post a .txt link to your members.asp will be helpful.
let me know more detail about your problem, then i'll try my best to help you.
Go to Top of Page

kahloz
Starting Member

16 Posts

Posted - 17 January 2003 :  23:28:20  Show Profile
Hey,

is there a way to make a HIDDEN forum Anonymous as well????

I got this one forum which is for adults only, which means it has a member list and is hidden.

I want to create an anonymous account for that thread.

but in order to be anonymous, one must log off, and post, but if oyu log off, you can't see the thread.

???????? [:-D]
Go to Top of Page

Breckar
Starting Member

9 Posts

Posted - 04 March 2003 :  20:44:14  Show Profile
Hey thanks for the MOD. I'm using this with MS SQL and so far just needed to add a few fields to some tables.

This might be because the SQL account that I use to attach to the database was changed to datareader and datawriter after I initially setup my database (clean install of 3.4)?

These fields were:
---
F_DEFAULTSORT in the FORUM_FORUM table (I set to datatype of int)

R_MSGICON in the FORUM_REPLY table (set to datatype of char)

F_MSGICON in the FORUM_FORUM table (char)
---
I'm not sure if the data types are completely correct here, but they seem to be working so far. There may be more Colums I need to add to tables and I just haven't found them yet.

Thanks for the MOD!!

Edited by - Breckar on 06 March 2003 13:49:42
Go to Top of Page
Page: of 4 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.19 seconds. Powered By: Snitz Forums 2000 Version 3.4.07