Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorFCKEditor doesnFCKEditor doesn't work in browser Opera
Previous
 
Next
New Post
9/25/2009 11:54 AM
 

Hello!
I use dnn 04.09.05 and as I see, FCKEditor doesn't work in browser Opera 10 (also Opera 9).
What browsers are supported for admins ?

Thanks ,
Kirill.

 
New Post
9/25/2009 3:14 PM
 

 you may try to update FCKeditor in your installation with latest version, I just uploaded it to the DNN Issue Tracker.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
9/25/2009 4:38 PM
 

Hello!
I updated FCKEditor from FckEditor_Update_2.6.5.zip , but without results...
But I have discovered that FCKEditor doesn't work only for russian localisation ,portal has two lahguages: russian and english.
So when I work in browser Opera in english FCKEditor works ok but when I turn off to russian FCKEditor doesn't work for any pages.
It's only for browser Opera , IE and FireFox work ok.
What may it be ?

Thanks,
Kirill.

 
New Post
9/25/2009 4:47 PM
 

This sounds like an issue of the editor itself (which is a 3rd party solution), since there is no language specific integration.

you might want to check out forums and support at www.fckeditor.net for editor specific help.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
12/11/2009 1:57 PM
 

Ok.
Problem with function IsNumeric
at file
FckHtmlEditorProvider_02.00.03_Source\Providers\HtmlEditorProviders\Fck\Components
FckEditorControl.vb
at line 636
....
If IsNumeric(oMatch.Value) Then
...

Example:This function checks if "9.80" is number.
But it does not always return true.
It dependents on current culture .
so for finnish , french , russian , ... it returns False.

So I replace this function IsNumeric by TryParse.
I replace this code block:
****************
If sUserAgent.IndexOf("Opera/") >= 0 Then
 Dim oMatch As Match = Regex.Match(Me.Page.Request.UserAgent, "(?<=Opera/)[\d\.]+")
 If oMatch.Success Then
     If IsNumeric(oMatch.Value) Then
         Return Double.Parse(oMatch.Value, CultureInfo.InvariantCulture) >= 9.5
     Else
         Return False
     End If
 Else
     Return False
 End If
End If
****************
By
****************
If sUserAgent.IndexOf("Opera/") >= 0 Then
 Dim oMatch As Match = Regex.Match(Me.Page.Request.UserAgent, "(?<=Opera/)[\d\.]+")
 Dim result As Double
 If oMatch.Success Then
     If Double.TryParse(oMatch.Value, NumberStyles.Float Or NumberStyles.AllowThousands, CultureInfo.InvariantCulture, result) Then
         Return result >= 9.5
     Else
         Return False
     End If
 Else
     Return False
 End If
End If
****************
and it works ok now.

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorFCKEditor doesnFCKEditor doesn't work in browser Opera


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out