Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Web Wiz Rich Text Editor ver 3.0 released
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Forum LockedWeb Wiz Rich Text Editor ver 3.0 released

 Post Reply Post Reply Page  <12345>
Author
Unbochan View Drop Down
Newbie
Newbie


Joined: 09 March 2005
Location: China
Status: Offline
Points: 14
Post Options Post Options   Thanks (0) Thanks(0)   Quote Unbochan Quote  Post ReplyReply Direct Link To This Post Posted: 02 April 2005 at 12:16am
we need Editor like it ====>http://ewebeditor.webasp.net/Example/standard.asp
In China,more program useing it.I hope Web Wiz Rich Text Editor do it like Ewebeditor.
(Sorry,my english is poor.Smile)
Back to Top
Unbochan View Drop Down
Newbie
Newbie


Joined: 09 March 2005
Location: China
Status: Offline
Points: 14
Post Options Post Options   Thanks (0) Thanks(0)   Quote Unbochan Quote  Post ReplyReply Direct Link To This Post Posted: 02 April 2005 at 12:21am
I hope WWRTEditor can do like Chinese's eWebEditor.
In China,more asp program useing it develop
 
Back to Top
Ka36ek View Drop Down
Newbie
Newbie


Joined: 07 March 2005
Location: Kazakhstan
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote Ka36ek Quote  Post ReplyReply Direct Link To This Post Posted: 02 April 2005 at 5:13am
I've found another problem in RTE 3
 
Evrebody know that there is ability to save files directly from rte
 
but this function does not work, if there are characters from 2 codepages, for example: English & Russian
 
The reason is a FSO using.
 
I've wroot same function using ADO.Sream method:
 
Function Write2file(Filename, Content)
Dim objStream
  Set objStream = Server.CreateObject("ADODB.Stream")
  objStream.Open  
  objStream.Charset = "windows-1251"
  
  objStream.WriteText Content
  Filename = Server.MapPath(Filename)
  objStream.SaveToFile Filename, 2
 
  objStream.Close
  Set objStream = Nothing  'Clean up...
End Function
 
Stupid FSO can't convert codepages, exept UTF, but utf is not suitable in eache case
 
Previously I posted that open files funcition doesn't worked, the reason was Outpost Firewall code blocking, and I can't find a way to reconfigure this application
 
Sau bolyndar! (Kazakh)
Back to Top
bootcom View Drop Down
Senior Member
Senior Member
Avatar

Joined: 26 February 2005
Location: United Kingdom
Status: Offline
Points: 259
Post Options Post Options   Thanks (0) Thanks(0)   Quote bootcom Quote  Post ReplyReply Direct Link To This Post Posted: 10 April 2005 at 9:16am
Excellent job on the RTE as always borg. I've added it in to my own site as part of the many modifications I have made and as it is cross browser compatiable and has some really good options, It is so good that I replaced the RTE I spent a good 18 months working on (on and off) with yours. When I have to replace some of my own work as a fellow coders is decidedly better then thats the biggest compliment I can possibly give.
 
I'm looking into making a couple of additional features and have had to recode a couple of things in there to make it compatiable with the functions I use, but your code made that extremely simple to do. All I can say there is congratulations, and I wish you all the success for the future Smile.
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 10 April 2005 at 10:15am
Many thanks bootcom Big smile
Back to Top
stuey View Drop Down
Newbie
Newbie
Avatar

Joined: 28 July 2004
Location: United Kingdom
Status: Offline
Points: 6
Post Options Post Options   Thanks (0) Thanks(0)   Quote stuey Quote  Post ReplyReply Direct Link To This Post Posted: 13 April 2005 at 6:01am
GrEAT JOB!

I've been doing mini-CMS implementation for years and this is great, finally a cross browser jobbie thats sensible  and straight forwards and has a little more than the standard implementations.

However Despite being close to perfect it fails me in two aspects, whether you are interested in this I am not sure as I see the editor as a by product of the forum product rather than a core project.

Firstly in the interests of tidyness I like to keep as much 3rd party code away from mine as possible so when new versions come out, I can install side by side can flick between the two.  The code expects to be in the appropriate folder and I've had to go and fudge all the urls to absolute

i tried the full image path but i think that only applies to the images...

The other thing I cant apply permissions throught the editor, so forexample if I wanted two version of the editor say with HTML view and without, I can only specfy that in the config files and not at the user (my) level.

I think I've fudged it so that it will work by moving the variables to my page, but again its tweaking all the time

any thoughts would be much appreciated

but the main message is "GREAT WORK"
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 13 April 2005 at 6:57am
I did spend the best part of a week trying to develop the RTE to work with the files in it's own folder, but had so many problems with paths etc. that I had to give up on it.

As far as the configuration files goes, I've tried to make it as simple as possible for novices to use the application. This means that for more advanced set-ups you will have to tweak the code some what.

But it is very difficult trying to make a product that is both simple to setup and as generic as possible. Sometimes you have to make compromise.

The RTE isn't built as a complete application, but as a base for tweaking and adding to to build into the persons own site or application.

For most it is ideal as they don't want to spend months on building an RTE, as this last version took me 6 months to develop, most of which on a full-time bases of over 35 hours a week.
Back to Top
cphelps View Drop Down
Newbie
Newbie


Joined: 01 May 2005
Location: United States
Status: Offline
Points: 2
Post Options Post Options   Thanks (0) Thanks(0)   Quote cphelps Quote  Post ReplyReply Direct Link To This Post Posted: 01 May 2005 at 10:32pm
Your Editor is awesome - I've looked for months for something like this - and have found lots of others - but this is the best I've seen - most impressive, it's very fast - the only problem I'm having and haven't been able to figure out is the preview function just says "There is nothing to preview".  Any ideas?  One question I have is, what would I have to do to allow saving to folders below the designated folder - the comments in the code say that all saved files will save at the folder given here, which is true and it works great, but if possible, I'd like to be able to save in sub folders?
 
Thank you so much for your hard work on this tool.  I'm very impressed and will be sending a donation.
Back to Top
 Post Reply Post Reply Page  <12345>

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.