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/O Code)
 WYSIWYG Post Editor?
 New Topic  Reply to Topic
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

SiSL
Average Member

Turkey
671 Posts

Posted - 20 September 2005 :  08:26:52  Show Profile  Visit SiSL's Homepage  Reply with Quote
I was wondering if there was any WYSIWYG editor for posts on Snitz. Did a google search and found a link to someones page which is no longer available.

Is there anyone having that code available somewhere?<

CHIP Online Forum

My Mods
Select All Code | Fix a vulnerability for your private messages | Avatar Categories W/ Avatar Gallery Mod | Complaint Manager
Admin Level Revisited | Merge Forums | No More Nested Quotes Mod

AnonJr
Moderator

United States
5768 Posts

Posted - 20 September 2005 :  08:31:58  Show Profile  Visit AnonJr's Homepage  Reply with Quote
I've seen a lot of Rich Text Editors that support HTML - if your willing to take that risk.... not just the javascript et al, but people adding/forgetting a few </table>'s or </div>'s

I haven't found any publicly available that natively support forum code, but I'm about ready to find a good Open Source project and hack it myself.... in my spare time

here's an older topic along a similar line: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=59179

(ed. to add link, courtesy of Search)<

Edited by - AnonJr on 20 September 2005 08:35:31
Go to Top of Page

SiSL
Average Member

Turkey
671 Posts

Posted - 20 September 2005 :  10:55:25  Show Profile  Visit SiSL's Homepage  Reply with Quote
hmm did you try webwiz editor?

I have no idea how it actually works but designed for webwiz forums it seems..
<

CHIP Online Forum

My Mods
Select All Code | Fix a vulnerability for your private messages | Avatar Categories W/ Avatar Gallery Mod | Complaint Manager
Admin Level Revisited | Merge Forums | No More Nested Quotes Mod
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 10 November 2005 :  06:03:07  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
Did you find anything? =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 10 November 2005 :  07:59:23  Show Profile  Reply with Quote
I'm trying out FCKeditor with Snitz. I have a few minor issues with it, but it seems to work for the most part. I would really like to convert its output to and save post in db as forum code, and that's where most of the issues are. If I allow HTML, it works pretty well. Also have issues with poll mod and calendar mod posts.

Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 10 November 2005 :  08:14:25  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
I would only allow use of the wysiwyg for certain members that's allowed to post articles/reviews, so html should be ok. I'd preffer to only use forum code but... =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 10 November 2005 :  08:28:09  Show Profile  Reply with Quote
quote:
Originally posted by tribaliztic

I would only allow use of the wysiwyg for certain members that's allowed to post articles/reviews, so html should be ok.


I thought of doing something like that. I want to setup an additional field in the members table, member's editor privilege, and set up to 4 levels which can be modified only by admin.
Lev 0 - forum code only
Lev 1 - HTML w/ limited toolbar
Lev 2 - HTML w/ advanced toolbar
Lev 3 - full HTML privilege (admin for most part)
That's the tough part for me to do....

cheers,
Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 10 November 2005 :  08:36:39  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
I have done that, added a field M_RANK and then an include inc_func_rank.asp:

<%
strSQL = "SELECT M_RANK FROM " & strMemberTablePrefix & "MEMBERS where MEMBER_ID = """ & MemberID & """ "
set rs = Server.CreateObject("ADODB.Recordset")
rs.open strSql, my_Conn
if not rs.EOF then
m_status = rs("M_RANK")
else
m_status = 0
end if
rs.close
%>
This is set via a scroll down menu in the users profiles. (Copied some code already in the pop_profile.asp).
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 10 November 2005 :  08:51:13  Show Profile  Reply with Quote
Thanks tribaliztic.... that doesn't seem anywhere near as complicated as I thought. Now, how do I save that in session cookie so I don't have to query db for M_RANK before each post?<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 10 November 2005 :  08:55:45  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
No idea =)
Long time since I played with cookies, sorry..
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Davecl
Junior Member

United Kingdom
105 Posts

Posted - 11 November 2005 :  02:02:06  Show Profile  Visit Davecl's Homepage  Reply with Quote
<%
strSQL = "SELECT M_RANK FROM " & strMemberTablePrefix & "MEMBERS where MEMBER_ID = """ & MemberID & """ "
set rs = Server.CreateObject("ADODB.Recordset")
rs.open strSql, my_Conn
if not rs.EOF then
m_status = rs("M_RANK")
else
m_status = 0
end if
Session("m_status")= m_status
rs.close
%>
<

Dave
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 11 November 2005 :  03:11:47  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
Thanks! Now it's possible to put this code in like the inc_header.asp or something?
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

s80ts0465
Junior Member

Italy
290 Posts

Posted - 16 November 2005 :  16:21:41  Show Profile  Send s80ts0465 an ICQ Message  Reply with Quote
ok i made the same thing using Web Wiz Rich Text Editor.

but i've the problem that in the email sent after subscriptions i read the code :-(

how could i solve it???

bye ste<
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 16 November 2005 :  22:11:54  Show Profile  Visit AnonJr's Homepage  Reply with Quote
If I remember right its set to send the e-mail in plain text. Change the way the component sends the e-mail to HTML.<
Go to Top of Page

s80ts0465
Junior Member

Italy
290 Posts

Posted - 17 November 2005 :  02:43:57  Show Profile  Send s80ts0465 an ICQ Message  Reply with Quote
Yeah it works perfectly right now.
thanks

bye ste<
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 18 November 2005 :  20:09:05  Show Profile  Reply with Quote
I'm close... using TinyMCE. Gave up on FCKEditor, though I thought it had the better interface with ASP Class defined. TinyMCE works very well if the user has HTML privs turned on. I'm having some problems translating between forum code and HTML, such as when replying with quotes to post done in forum code. Would work fine if HTML was enabled globally or if used with Super/Admin/Mod HTML mod.

Running out of time right now, but hope to resume next week.

Nat
<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca

Edited by - Nertz on 20 November 2005 19:06:55
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.16 seconds. Powered By: Snitz Forums 2000 Version 3.4.07