Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (801 - 900 of 11754)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Summary Owner Type Priority Milestone Component
#359 IE Stripping Object Tag Bug Normal FCKeditor 2.4.3 General
Description

I am experiencing a problem with FCKeditor while using IE 6. If I load HTML into the editor that contains an object tag with an embed tag (see sample below), the editor strips out the object tag completely. However, the embed tag remains. This does not happen in other browsers. Here is the code I am using.

<object id="audio" width="0" height="0">
<param name="console" value="AudioPlayer">
<param name="controls" value="audioWindow">
<param name="autostart" value="true">
<param name="src" value="YOUR_AUDIO_FILENAME_HERE">
<embed name="audio" width="0" height="0" src="YOUR_AUDIO_FILENAME_HERE"
console="AudioPlayer" controls="audioWindow" autostart="true">
</embed></object>

This only happens when reading the HTML into the editor initially. If I cut and paste this code into the editor and stay in source mode, it is not altered, until after I save it to the server and re-load into the editor. At this point it is still correct on the server, but changed in the editor. If I then save it again, the changed version is saved. If I cut and paste this code into the editor but leave source mode before saving, it is changed. The end result seems to always be stripping out the object tag.


Moved from SF:
https://sourceforge.net/tracker/index.php?func=detail&aid=1661658&group_id=75348&atid=543653

#360 Form "name" is set to "[object]" if it contains a field with id="name" Frederico Caldeira Knabben Bug Normal FCKeditor 2.4.3 General
Description

Paste the following in the source view:

<form name="test">
    <input id="name" type="text" />
</form>

Switch to WYSIWYG and back to source. You will have name="[object]" in the form element.

It happens only because the "id" of the input element inside the form is set to "name" (casually the form attribute name).

Confimed with IE6. It's not a problem with FF2.

#362 Control-Backspace does not work Martin Kou Bug Normal FCKeditor 2.5 Beta UI : Enter Key
Description

In the current version of the editor the Control-Backspace does not have the expected behavior (delete previous text block). It does not do anything.

Example: http://www.fckeditor.net/demo

This behavior has been seen in IE7, Fx 2.x, have not tested in other browsers.

#363 Find does not work in Opera Martin Kou Bug Normal Opera Compatibility General
Description

The "find" command does not work. It tries to use the Gecko branch and fails because window.find isn't supported in Opera. This is Opera's bug 145647, but it is a WONTFIX. I doubt we support what you use for IE, though I have not looked at that code. Options: disable Find button in Opera, write your own find implementation, or help me convince the developers that window.find is necessary :-p

#364 Alignment of textarea for right to left locales Bug Normal General
Description

The alignment of the text in the editing area for right to left locales like Arabic etc. is not changed from default. it is remains as left to right

#365 Alignment of textarea for right to left locales Bug Normal General
Description

The alignment of the text in the editing area for right to left locales like Arabic etc. is not changed from default. it is remains as left to right

#366 right to left locales align Bug Normal General
Description

The alignment of the text in the editing area for right to left locales like Arabic etc. is not changed from default. it is remains as left to right

#367 Remove uploaded images New Feature Normal File Browser
Description

Hi,

I could not find a request like this. I installed version 2.4.2 but it does not have 'remove images' support. It would be really nice to be able to remove the images which are uploaded.

Thnx!

#368 No drag 'n drop into or out the editor area Bug Normal General
Description

Nothing can be dragged into or out of the editor.

#370 Interchanging content loses format when source and target are not both Opera Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility General
Description

Interchanging content (copy/paste) only takes over formatting when source and target FCKeditor are both in Opera. Tested with Firefox, IE, OpenOffice and Opera: All content could be interechanged between each other, except for Opera. Content copied from FCKeditor in Opera will only keep its formatting when pasted into FCKeditor in Opera.

#371 Opera: Dialogs can be resized Bug Normal FCKeditor 2.6 UI : Dialogs
Description

dialogs can be resized

#372 img with align="left|right" breaks selection Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility General
Description
  • When the first item in the editorArea is an image with attribute align set to "left" or "right", nothing will be selected by pressing the "select All" button and selecting by mouse will excluse this image.

example code:

<p><img align="left" alt="" src="http://www.fckeditor.net/images/logos.gif" /></p>
<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>
  • When there is such an image (or more) inline in the content, "Select All" will select all except the images(s). Selecting with the mouse will only exclude the images visually, but they will be copied. Only the images at the end of the content won't be included.

example code:

<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p><p><img align="left" alt="" src="http://www.fckeditor.net/images/logos.gif" /></p>
<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p><p><img align="left" alt="" src="http://www.fckeditor.net/images/logos.gif" /></p>

#373 contentArea autogrows and scrolling moves editor in iframe Bug Normal Opera Compatibility General
Description

When you have a lot of content and switch to source view, the overflowing source will strech the contentArea and scrolling (with the scrollwheel) will move the editor in its iFrame. If you go to source view with few content and add HTML in the source view, the contentArea will react normally, showing a scrollbar on overflow.

#375 Wrapping tag disables the associated button Bug Normal Opera Compatibility UI : Toolbar
Description

Wrapping tag disables the associated button: strong disbales "Bold" em disbales "Italic" u disbales "Underline" strike disbales "Strike Through" sub disbales "Subscript" sup disbales "Superscript" blockquote disbales "Decrease Indent"

div or p with attribute align set disables the associated button too: left disbales "Left Justify" right disbales "Right Justify" center disbales "Center Justify" justify disbales "Block Justify"

#376 "Remove Format" disables when text wrapped in tags Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility UI : Toolbar
Description

When selecting text that is wrapped in tags, the "Remove Format" button disbales. This makes that formatted or styled content cannot be undone from its formatting.

With these tags the button will be disabled : span, u, em, strong, strike, sub, sup, font, a

span and div will not disable the button. These also undo the effect of the above tags. E.g. selecting <u><div>example</div></u> will not disable the button, but the clicking the button won't remove the formatting.

Other tags were not tested.

Might be related to ticket http://dev.fckeditor.net/ticket/9

#377 Second tab in dialog stretched Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility General
Description

The second tab in the dialogs (that have tabs) is streched.

#378 Applying style moves selection Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility Core : Styles
Description

Applying style to a selection moves the selection selectionLength number of character forward or to just before the next opening tag of there is one within selectionLength number of character.

#379 First mouse action after load doesn't make editor active Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility General
Description

After load you'll have to click twice in the editor to make the it active.

Selecting doesn't work either: Try just after load to select text in the editor, then to delete it. That won't work you'll have to select again or first click in the editor.

#380 dialogs to small Bug Normal Opera Compatibility General
Description

Opera displays a (collapsed clickable) toolbar in dialogs, pushing the content downwards so that the lowest content sometimes drops out of sight (e.g. the table dialog).

#381 Extra parameter used in the calls to new FCKPanel Bug Normal FCKeditor 2.4.3 UI : Floating Panel
Description

Seems that almost all the calls to are using a second extra parameter that it isn't defined in the function itself:

 	var oChildPanel = new FCKPanel( oWindow, true ) ;
#382 Extra <p> using embeds in Firefox Bug Normal General
Description

Switch to source mode and paste

<p><embed width="200" height="100" menu="true" loop="true" play="true" src="test.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></p>

Switch to WYSIWYG and back to Source and there's an extra <p>&nbsp</p> at the beggining and at the end.

present in Firefox 2.0.3.
IE 6 and Opera work properly.

#383 Problem with toolbar css Bug Normal General
Description

Hi,

I think there is a problem with fckeditor stylesheet :

Very often, the style for body editor content is set with a minimal padding, this padding is necessary for a more readable content inside editor area. But if we set a padding for editor content, this padding is applied to combo menus (style & format menus). I think we need to force : style="margin:0!important; padding:0!important; border:none !important" for all combos menus otherwise we can get a bad design.

You can see an example (attached file) with a 10px padding

Many thanks ;-)

jean-mat

#384 Tab Key using Internet Explorer New Feature Normal General
Description

The behavior of tab key in FireFox is very good for basic users. Can do this in Internet Explorer ?

#385 To locate the cursor in source mode New Feature Normal UI : Source View
Description

In others html editors, like FrontPage, when change from design to source view, the position of cursor follow the selected object. Can do this in FCKEditor ?

#386 enter in empty one-cell table inserts new table in Opera Bug Normal Opera Compatibility UI : Enter Key
Description

1) add table with one row, one column 2) try to type enter inside cell

Bug: new empty tables are added for each enter press

#387 Make default link target configurable Frederico Caldeira Knabben New Feature Normal FCKeditor 2.4.3 General
Description

It would be really nice to have the default link target configurable (i.e. have it set to "_blank" by default for new links).

I've developed a patch to change the default - but it would be better to have it inside fckconfig.js i guess?

Many Thanks!

#388 MSIE Problem: Linking two lines in a list Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.4.3 General
Description

One of our customers just found a problem with FCKEditor. He's putting quite a lot of pressure on us to get it fixed, so if you could take a look and advise what we can do about it...

Abstract

There is a Problem in FCKEditor when using MSIE 6 (and possibly also 7, not tested). If you have two lines separated by a <br/> tag in a single <li> List Element and try to link these two lines to a different location, the editor links both lines to the same location.

How to reproduce

  1. Open http://www.fckeditor.net/demo
  2. Delete all text
  3. Insert a numbered List and write:
    This is line A[Shift-Return]This is line B

    This should produce this piece of HTML:
    <ol>
        <li>This is line A<br />
        This is line B</li>
    </ol>
    
  4. Mark the first line ("This is line A") and link it to some URL, i.e. "http://www.google.com"
  5. Mark the second line ("This is line B") and link it to some URL, i.e. "http://www.fckeditor.net"
  6. The editor now extends the marked range *and* the link to both lines automatically, so both lines are linked to the second URL (i.e. "http://www.fckeditor.net")

Demonstration Video/Screencast

http://sp-web-01.krankikom.de/~wwwadmin/FCKEditor_bug_linklistlines/FCKEditor_bug_linklistlines.html

If you need any more info, please let me know... (also via Phone if you want: +49-203-30597-54).

Best Regards, Patrick

#389 Past from Word - error when text have "Comments" Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.5 Beta Plugin : Paste from Word
Description

Reciving JS error message, on cleaner screen, when i'm pasting some text from Word that have Comment inside.
It happens on my system and on fck demo and night build.

Scenario:
1) Open Word
2) Write some text (even 2 word's is ok)
3) mark one of words and add comment on it
4) Past text from Word to FCKEditor
KO: when you move mouse after CTRL+V, JS error jump. (error line different depends on line num)

#390 Text align should respect EnterMode=br rules Martin Kou Bug Normal FCKeditor 2.5 Beta Core : Styles
Description

When using:

FCKConfig.EnterMode = 'br' ; FCKConfig.ShiftEnterMode = 'br' ;

aligning selection inside the text, doesn't work correctly.

I have a few lines of text which are seperated by br's. I then select one of those seperated lines and click on the align center button: all text is aligned center and in the source everything is wrapped inside <p align="center"> .. </p>

Using firefox, this works correctly: only the selected line is aligned center. Here a div with align=center is added around the selected text.

Is there any way around this? (besides using p instead of br as the FCKConfig.EnterMode)

#391 Security warnings when using the editor over HTTPS in IE Bug Normal FCKeditor 2.4.3 General
Description

This bugs seemed to be eliminated since Version 2.0 RC3. ([SF BUG-1108167] [SF BUG-1085149] [SF BUG-1151296] [SF BUG-1082433]).

But when using the 'ToolbarLocation' Feature, this Security Warning appears again. Use 'sample 10' 'Shared Toolbar on same page' to reproduce this bug. I tested it with the nightly build of April, 17th 2007 on WindowsXP Professional SP2, IE 6.0.

My suggestion to fix this bug is to add the following code to the file 'fckeditorcode_ie.js' line 91: F.src='javascript:void(0)';

This fix worked well for me.

By the way, many many thanks for this fine editor! Roland

#392 "Stack overflow" exception on specific content Bug Normal General
Description

Steps to reproduce:

  1. Click on "Source" button
  2. Paste following HTML:
    <STYLE type=text/css>
    <!--{PS..0}-->
    </STYLE>
    
  3. Click on "Source" button
  4. Click on "Source" button again

Browser name and OS

Occurs at least under IE and FireFox

#393 Cursor inside link but expected to be "after" it Bug Normal FCKeditor 2.5 Beta General
Description

This problem is hard to explain, but easy to repeat:

Go into Internet Explorer, create a hyperlink using the toolbar hyperlink tool, and click "Ok". Put your cursor on the right side of the link and start typing.

Now do the same thing in Firefox.

See the difference? In Internet Explorer, the new text you type isn't part of the link, but it is in Firefox. In fact, the only way to close the link is to now use the source button.

Just aggravating.

Thanks,

Nicholas

#394 another bug in the solved bug #318: Multiple linked images are getting merged in a single Bug Normal General
Description

hi, try a different scenario, try to insert a link from the image property then press ok.

ex: insert image-->browse server -->u choose an image -->click on the link tag -->specify a URL -->press the OK , u have an linked image then insert another image with a link with the same way

result:(in ie the link of the first image will disappear and the second image conserve its link -- in mozilla ff the the first image takes the link of the second-->the first and the second image have the same link)

#395 Changing visual styles of parent doc Bug Normal FCKeditor 2.5 Beta General
Description

IE 6 under win XP

when the page with FCKEditor loaded you focus on editor area it enables toolbars then you focus out of area toolbars are still active then you click e.g. list button and outer element becomes a list

this works for strong, italic, underline, strikethrough, superscript, subscript, indent, outdent, text-align, hr, br buttons as well.

#396 Can't create linked image in Opera Hallvord R. M. Steen (Opera Software) Bug Normal Opera Compatibility General
Description

Put a image in the body (for example a smiley), now try to link it to a url, it fails.

It also fails if it's done using the image dialog and the second tab to put a url (this time the dialog won't close as the FCK.CreateLink is returning null and the code doesn't expect that problem).

#398 config in instanciation New Feature Normal General
Description

Hi, great editor i keep using a lot !! There is just a liitle thing i'd like to be able to do : setting different ccs xml files and/or config js files in the instanciation of the editor in order to be able to use the same one on different pages giving to the users only the style that are concerned by one page (I often use fck in complex sites admins). Well maxlenght would be great to but i've there is already a ticket about that.

Thanks for your great job

#399 Changing visual styles of toolbar elements Bug Normal General
Description

IE6

when you select element in FontFace combo and then set FontFormat to Header 1 it affects on FontFace style (margins and paddings);

if you click UL, OL, indent, outdent etc it also affects FontFace combo.

#400 markup differences when pasting with toolbar button and with ctrl+v Bug Normal Opera Compatibility General
Description
  • load editor
  • copy some of the bold text from the default sentence
  • use "paste" toolbar button (popup dialog opens)
  • paste

Problem: for some reason, this paste action inserts B tags while the editor by default and after Ctrl+V paste uses STRONG tags. What gives?

#402 FCKEditor appears to add <br /> tags in Firefox Bug Normal UI : Source View
Description

When I have post a <pre>...</pre> section. FCKEditor appears to insert <br /> tags when you view the item.

Only seems to happen with Firefox.

Steps...

  1. Go to http://www.fckeditor.net/nightly/fckeditor/_samples/default.html
  2. Click on "Source" to go to the HTML view in FCKEditor and paste this:

<div class="dropshadow code"> <div class="innerbox"><pre class="csharpcode"><span class="kwrd">public</span> <span class="kwrd">static</span> <span class="kwrd">class</span> StateHelper { <span class="kwrd">private</span> <span class="kwrd">static</span> <span class="kwrd">readonly</span> IList&lt;State&gt; _states = GetAllStates();

<span class="kwrd">public</span> <span class="kwrd">static</span> IList&lt;State&gt; States { get { <span class="kwrd">return</span> _states; } } }</pre></div></div>

  1. Click on the "Source" button again to go to WYSIWYG.
  2. Click on the "Source" button again to go to HTML view.

Notice there are <br /> tags in the content now. This does NOT happen in IE7.

#403 Switching from HTML to Source adds \n in STYLE tag Martin Kou Bug Normal FCKeditor 2.5 Beta UI : Source View
Description

Initial header of the page was:

<head>
<title>FCKeditor - What's New?</title>
<style type="text/css">
body { font-family: Arial, Verdana, Sans-Serif; }

Second switching from HTML view to the Source view adds \n:

<head>
<title>FCKeditor - What's New?</title>
<style type="text/css">

body { font-family: Arial, Verdana, Sans-Serif; }

Next one will add one more symbol of the new line and so on.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1302499&group_id=75348&atid=543653

#404 PRE and Line Breaks Martin Kou Bug Normal FCKeditor 2.5 Beta General
Description

When I choose "Formatted" format and then write some text containing new line characters and/or indentation (tabulations) I get the incorrect html code.

I used FCKeditor 2.0 FC.

I wrote:

This is my first line.
This is indented text.

Then I clicked on "Source" button in FCK and I got the following html code:

<pre>This is my first line.<br/>
This is indented text.</pre>

First of all there is no indentation. Secondly, the PRE element tells visual user agents that the enclosed text is "preformatted", so there should be no html tags (e.g. BR) in it. It should be just what I had written with tabs and new line characters.

Thirdly, switching between source and editor (pressing "Source" button) increases number of BR tags. When I clicked for the first time I received only one BR, but after next click I got 2 BR tags, then 4 BR tags and so on. This is what I got after three switches between "Source" and editor:

<pre>This is my first line.<br/>
<br/>
<br/>
<br/>
This is indented text.</pre>

Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1209755&group_id=75348&atid=543653

#405 Language: SelectAll is translated wrong to Norwegian Bug Normal FCKeditor 2.4.3 General
Description

SelectAll, which is "Select all" in English, is translated to "Velg alle" in Norwegian. This is a direct translation without any thought about what the string is used to. The correct translation is "Merk alt". That's the same as MS Word and Openoffice when doing the same operation.

I'll attach patch files for nb.js and no.js

#406 ff hided editor cnt get the focus Bug Normal General
Description

In FF if i hide an editor then i make it appear then it can't get the focus, so i cant edit its containing.

#407 The editor edits the page HTML (outside the editor region) Bug Normal General
Description

I found this bug in my code and then I checked and saw that it happands also in the editor demo on the offical site (http://www.fckeditor.net/demo).

Steps to reproduce:

  1. Go to http://www.fckeditor.net/demo.
  2. Click inside the editor document area (where "This is some sample text. You are using FCKeditor." is written).
  3. Click on the "Right Justify" button.
  4. Select the title "Demo" with your mouse (higlighting it) - see Screen Shot # 1.
  5. Click on the "Center Justify" button. The Title would move to the center of the screen (Screen Shot # 2).

This would also happand on other places on the screen (Screen Shot # 3) and with other buttons (like the "hr" one) - Screen Shot # 4.

Browser name and OS:
IE 7, Windows Server 2003
Also known issue in IE 6

#408 Overwrite Uploaded Files New Feature Normal File Browser
Description

What about a Request for Overwriting the uploaded Files instead of Incrementing a number which is added to the Filename? My Userfiles Folders are full of different Files in different Versions.

#409 Thumbnail preview for Uploaded Pictures New Feature Normal File Browser
Description

What about a thumbnail view of the Uploaded Files, that would make it even easier to find the files.

#410 [ Firefox ] Any dialog box is not showed properly (ok, cancel buttons lost) Martin Kou Bug Normal FCKeditor 2.6 General
Description

Here is my suggestion for fix :)

I've fixed it by opening fckeditor/fckdialog.html

  1. step

find

<table height="100%" cellspacing="0" cellpadding="0" width="100%" border="0">

change it to

<table id="_fckpopup_main_table" height="100%" cellspacing="0" cellpadding="0" width="83%" border="0">
  1. step

add the following code right before closing BODY tag

<!--[if IE]>
	<script type="text/javascript">
		var x = document.getElementById("_fckpopup_main_table");
		x.width = "100%";
	</script>
<![endif]-->

HTH!

#411 Swedish Language File for FCKeditor 2.4.2 Task Normal FCKeditor 2.4.3 General
Description

Swedish Language File for FCKeditor 2.4.2

#412 Custom names for folders when UseFileType is activated (php) New Feature Normal File Browser
Description

In some installations may be necessary to use other names than File, Image, Flash or Media for the default folders. For example, for other languages, etc. What I did to give a solution is to define the following in config.php (php connector folder):

$Config['DirName']['File'] = "file"; // custom names for folders
$Config['DirName']['Image'] = "image";
$Config['DirName']['Flash'] = "flash";
$Config['DirName']['Media'] = "media";

In io.php, I added some lines to GetUrlFromPath and ServerMapFolder functions. In both functions add:

global $Config ;

and change

strtolower( $resourceType )

for

$Config['DirName'][$resourceType]

It works fine. Any other suggestions? Thanks.

#413 clearing the text editor New Feature Normal General
Description

When submiting the form to an iframe which displays a database return I would like to know how to clear the exisiting entry that remains in the text editor text area.

#414 .NET Tracing pageoutput causes error in XML connector Frederico Caldeira Knabben Task Normal FCKeditor 2.4.3 Server : ASP.Net
Description

Descriptive summary When enabling tracing in a .net application, and enabling page output for that tracing, it causes the XML of the .NET connector to be mal-formatted.

Steps to reproduce Open the web.config in the root of your web application and change your tracing settings to:

<?xml version="1.0"?>
<configuration>
	<system.web>
		<trace enabled="true" pageOutput="true"/>
	</system.web>
</configuration>

This setting is very normal during development and debugging in a test-environment. The try to add an image by using FCK editor and its file upload manager, while the config js file has been setup to use the .aspx connector.

Browser name and OS Irrelevant, although the FCK editor should use a web server where the .Net framework has been installed and the FCKEditor.net dll has been uploaded to the bin directory

Screenshot See attachment

Sample data -none-

Test case file -none-

Solution Force-disable page tracing output on the connectors like this:

<%@ Page
language="c#" Trace="false"
Inherits="FredCK.FCKeditorV2.FileBrowserConnector"
AutoEventWireup="false" %>
#415 .NET Connector could not run in medium trust. Frederico Caldeira Knabben Bug Normal FCKeditor.Net 2.5 Server : ASP.Net
Description

Dear Fred,

Is had an issue of the .Net connector not being able to run in medium trust in my .Net 2.0 environment. There for I downloaded your sourcefiles in order to be able to debug my situation.

I also converted the project to VS2005/.NET 2.0.

I made a minor change to FileWorkerBase.UserFilesDirectory() (one Configuration import, and hostingenvironment.Mappath)

And a major change to Util.CreateDirectory(path) You created the directory by recursively searching for a parent directory and then creating the child directories one by one by using an imported (Com?) dell. I circumvented this method and just called the createdirectory method, of which I know it can create nested directories at a time), and now it works.

Maybe I made your code less generic, but now it works on my host. Hope I've been a bit of help,

best regards,

Robert Sirre

#416 PHP Upload assumes to much Alfonso Martínez de Lizarrondo Bug Normal Server : PHP
Description

I downloaded and configured the new version of fck editor v 2.4.2 build 14978.

I was testing the upload image feature from the main navigation bar. I enabled $ConfigUseFileType? in :editor/filemanager/upload/php/config.php:34 so it would place uploaded files in the correct folder according to fck editor.

There is a problem with the upload.php file. It assumes that the folder already exists. If it doesn't the uploader will say the file uploaded but return a false path because the directory doesn't exist.

I corrected this by updating editor/filemanager/upload/php/upload.php: 103 and placing this code just above the line where it moves the uploaded file into the correct directory.

check for the directory before uploading the file

if(!is_dir($sServerDir))

{

mkdir($sServerDir);

}

Now the file uploads to the correct directory.

#417 content box focus problem Bug Normal General
Description

I noticed that you can have the cursor focus in the content box and if you use the tab key it will bring focus also to the submit button while the text can still be modified but if you hit the space key it will submit the form so when you are typing you begin submitting one word at a time. I don't believe the focus should be able to be spread on two objects!

#418 FLV and AS extentions as a standard in upload file New Feature Normal General
Description

Hi all,

Every time we install a new version, we have to change the FlashUploadAllowExtensions settings to make sure the FLV (Flash movie content) and AS (external actionscript) files of our Flash animations can be uploaded into the Flash upload dir. It would be great if those two extensions would be included as an standard in the config file, because we always use these two features of Flash on our websites. Something like this: FCKConfig.FlashUploadAllowedExtensions = ".(swf|fla|flv|as)$" ;

Many greetings,

Bastiaan Verhoeven Netherlands

#420 Bug with the in undo FireFox with the style combo Bug Normal General
Description

hi, in firefox if you: 1- select a text 2- click the style combobox 3- choose a style the undo button is still disabled also the(ctrl+c)

*-in IE its working properly

Second If we apply several steps before we change the style of a word using the style combo,like writing a text or delete a letter the undo is working properly also the redo,after that try to change the style then click on undo , i will not undo the style changes it will undo the deleted letter -- in ie its working

Third why in the _source/internals/fckundo_gecko.js contains 3 line and the _source/internals/fckundo_ie.js contains methods i think something is missing

thanks if anyone khnows a solution i'll be thankfull and coorporate to find a solution, regards

#421 Error 12152 when uploading images Frederico Caldeira Knabben Bug Normal Server : PHP
Description

hi,

when i click the add/edit image button then click to browse the server i get a popup windon saying

XML request error: Unknown(12152)

then I cant see any of the images previously uploaded and i can't upload any more

It used to work perfectly and I havent changed anything. do you have any suggestions about what could have caused this?

#422 JavaScript integration: "CreateHtml is not a function" Bug Normal General
Description

Hi,

Creating the editor using ajax in Firefox 1.5 generates error: CreateHtml is not a function. Code used:

var div = document.getElementById("myFCKeditor"); var fck = new FCKeditor("myFCKeditor"); div.innerHTML = fck.CreateHtml();

regards

#423 Drag and drop rich text with firefox with plaintext=true Bug Normal General
Description

Also, I found a bug. When you drag and drop rich text in the fckeditor, the text is pasted in richtext and not in plain text.

#424 FCKeditor Lite New Feature Normal General
Description

It would be great to have a lite version for the Fckeditor, just for small needs like bold, italic, numbering, bullet, link. Cause right now, the control takes too much resources on loading.

#426 Spell Check fails with html tags containing spelling errors Bug Normal General
Description

This is similar to ticket 339. If a tag such as an img tag has spelleing error then the spell check fails.

eg. <img src='image.gif' alt='spelin eror'>

The spell check fails because it finds 'spelling eror' which breaks the html code. I think this could be fixed to use a regular expression to check if the word being checked was inside a html tag but my javascript skills are not up to the task. The solution in ticket 339 does not fix the problem.

#427 Bulleted lists don't align properly in Firefox Martin Kou Bug Normal FCKeditor 2.5 Beta Core : Styles
Description

Centering and right justifying a bulleted list doesn't behave properly in Firefox. IE7 worked correctly.

Using the test site:

  1. Create a simple bulleted list. Hit UL on toolbar
  2. Enter line 1, enter, line 2, enter, line 3, line 4
  3. Highlight the list and hit Center Justify. Line x test is justified but bullets remain left justified.
  4. Source created:
    <ul>
        <li>
        <div align="center">Line 1</div>
        </li>
        <li>
        <div align="center">Line 2</div>
        </li>
        <li>
        <div align="center">Line 3</div>
        </li>
        <li>
        <div align="center">Line 4</div>
        </li>
    </ul>
    
  5. Repeating to right justify. Text is correctly right justified but bullets stay left justified.

Note: Make sure that the browser cache is cleared before trying to reproduce.

#428 IE problems created unordered list from pasted list Martin Kou Bug Normal FCKeditor 2.5 Beta General
Description

IE is not working correctly when pasting a list of text.

  1. On test site with IE, paste the following list:
* Escape from "Corporate-Cubical Hell"
* A Series of Law-Lectures
* The Weather
* An Overnight Jazz D.J.
* A 6-Pack on my Patio
  1. Highlight text and hit bulleted list toolbar item.
  1. Only a single bullet is created on the line above the Escape... line

Source code generated:

<ul>
    <li><br />
    * Escape from &quot;Corporate-Cubical Hell&quot;<br />
    * A Series of Law-Lectures<br />
    * The Weather<br />
    * An Overnight Jazz D.J.<br />
    * A 6-Pack on my Patio</li>
</ul>

Same behavior is pasting with Ctrl+v, Paste toolbar, Paste as Plain Text, or Paste from Word (with Ctrl+v)

FF generates a bulleted list using the steps above. Source code:

<p>&nbsp;</p>
<ul>
    <li>* Escape from &quot;Corporate-Cubical Hell&quot;</li>
    <li>* A Series of Law-Lectures</li>
    <li>* The Weather</li>
    <li>* An Overnight Jazz D.J.</li>
    <li>* A 6-Pack on my Patio</li>
</ul>
#429 Upload.php issues after 2.4 update: wrong path, folder does not exist, file not uploading. Frederico Caldeira Knabben Bug Normal Server : PHP
Description

After upgrading to fckeditor 2.4, I started having issues with uploading files using upload.php.

PROBLEM: Upload.php uploads files to Images, Files, Media and Flash while the browser uploads files to images, files, media and flash. Upload.php also assumes that the folder exists and if it does not then fck will return saying the file was uploaded successfully but the file will not be there.

SOLUTION: In the file fckeditor/editor/filemanager/upload/php/upload.php make the following changes. (My file's line numbers seem to be different than those in some of the documentation I have read, so I will include both the line number as well as the line to insert the code before or after):

At line 71 INSERT the following code:

Convert $sType to lowercase to conform with changes made as of fck 2.4 $sType = strtolower($sType);

AFTER SendResults( 1, , , 'Invalid type specified' ) ;

This allows fck to validate the upload file type several lines earlier then changes the value of $sType for the remainder of the file.

At line 112 insert the following code:

Creates the directory if it does not exist yet. if(!is_dir($sServerDir)){

mkdir($sServerDir);

}

AFTER the else statement and BEFORE if ( is_file( $sFilePath ) )

This will allow fck to create the upload file if it does not exist.

This ticket is related to ticket #274, #275 and #416.

#430 Remove link issue when class attribute is defined Bug Normal General
Description

This issue exists on Firefox 2.0.0.3. Doesn't appear to be an issue with IE7.

When a link tag with a defined class attribute is removed using the "Remove link" button, the link tag is converted to a span tag instead of being removed.

  1. To reproduce this issue, paste the following into FCKeditor's Source view:
<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/" class="myCssClass">FCKeditor</a>.</p>
  1. Next press the Source button to return to the normal view. Select the link in the editor area and click on the "Remove Link" button.
  1. Finally, press the Source button again and you will see that the link tag has been converted to a span tag.
#431 errors in the file browser's php connector when folder does not exist Bug Normal FCKeditor 2.4.3 File Browser
Description

Running FCKEditor with php, invalid XML is returned because of php warnings when opendir() fails. The attached patch silences the errors.

A better fix would also generate an error message that prompts the user to create the folder and make writable, instead of the folder listing.

#432 Using Anchors in Firefox Bug Normal General
Description

We are seeing an issue with the anchors in Firefox but not IE. When using anchors in the editor, we seem to be fine with their functionality in IE. In Firefox, we are noticing they do not work as expected. They will take you near to the expected location, but not all the way. For an example, an anchor placed at the top of the text will take you near to the top when linked on later, but not all the way.

#433 Vanishing toolbar in full screen mode Bug Normal UI : Toolbar
Description

The toolbar vanishes in full screen mode using the following steps on a Mac platform (Intel processor) under Mozilla Firefox 2.0.0.3. I have not tested this under other platforms or other versions of Firefox.

Paste a large file into FCKEditor (I used the fckconfig.js file).
Go to full screen mode.
Select a line.
Turn the line bold (button or ctrl-b).
Put the cursor at the end of the line (mouse always causes this, arrow keys sometimes do).
Press "return" key.

Result: Toolbar vanishes.

#434 Firefox: EnterMode ignored if set in CustomConfigurationsPath file Bug Normal UI : Enter Key
Description

This seems to only affect Firefox, not IE.

If I set the EnterMode to br in a custom config file, pressing enter in Firefox still produces a p tag. If EnterMode is set as one of the name/value pairs in the hidden Config form element it works fine.

#435 No EnterMode config key in ColdFusion integration files Bug Normal FCKeditor 2.4.3 Server : ColdFusion
Description

I haven't actually tested these files as I use my own integration file, but I noticed that there are no EnterMode or ShiftEnterMode config keys in the ColdFusion integration files distributed with fckeditor (both fckeditor.cfm and fckeditor.cfc).

This probably means that these config settings will be ignored if they are found in the config struct passed to the fckeditor module or component.

#436 Firefox spellcheck no longer works by default Bug Normal FCKeditor 2.4.3 General
Description

Prior to version 2.4.2 (tested in 2.3.2), Firefox 2.0.0.3's built-in spellcheck for textareas worked by default, highlighting misspelt words automatically. Now one must right-click and tick "Spell-check this field" each and every time FCKeditor is started to get this useful functionality.

#437 Images toggle alt="" between each parse Bug Normal General
Description

When adding an image to a page without specifying the alt parameter the editor will add an alt="", when an img contains an alt="" it is stripped. Although this isn't strictly a bug as they are both functionally equivalent, however it is playing merry hell with version control in a wiki I'm developing.

#438 Reconstituting &gt; entity when re-parsing output Bug Normal General
Description

Given a line in the editor :-

The equation small<big

The editor will correctly convert the < to an entity &gt; if this line is then re-parsed by the editor, as in a wiki, when the above page is edited, the entity is reconstituted where the document incorrectly becomes

The equation small

The source editor reveals that the following has occurred

<p>The equation small</p> <p><big></big></p>

#439 IE: CTRL+Click to open links in a new window Martin Kou New Feature Normal FCKeditor 2.6.3 General
Description

It does not seem possible to follow a link using IE7. For example, the "You are using FCKeditor" link in the Demo pages. NOTE: IE6 and Firefox work fine, ctrl-click and shift-click open the window.

I've had a search of the existing tickets and can't find anything relevant. However, this seems such a fundamental problem I can't believe it hasn't already been reported. Fingers crossed you've already investigated this and know of a workaround.

If there is no workaround, might I suggest adding an "Open Link" menu item to the link context menu and an "Open Link" button to the Link Editor dialog.

I had a look at the problem and I suspect the event model is incorrect for contenteditable elements. I think this event is bypassing the normal event handlers and cannot be caught.

#440 FF: Whole paragraph is selected on right click Bug Normal FCKeditor 2.6 General
Description

hi try this

try to right click at the end of this code :<p><font size="-2">©2007 Google</font></p> in firefox we are selecting the whole code i didn't test it on another tags but i found it in FF in ie its working

regards

#441 writing near a hyperlinked word in firefox Bug Normal General
Description

if we are writing near a word containing a hyperlink the new inserted word will be hyperlinked too.

Exemple click at the end of the last character of a hyperlinked word and click on the space button u will see that the space we be htperlinked too in FF.

before: hi this is a <a href="123">test</a>

FF:hi this is a <a href="123">test newword<br /> </a>

IE:hi this is a <a href="123">test</a>newword

regards

#442 Ukrainian Language File for FCKEditor 2.4.2 New Feature Normal FCKeditor 2.4.3 General
#443 insert picture button Bug Normal UI : Toolbar
Description

I have been trying to insert a picture from my picture file. This tool bar is used on my website. I get a screen that ask for the url browse button. I hit the browse button go to my picture file hit the picture I would like it then goes to a screen which has inserted the url and I hit the upload button which then goes to a file screen that sayes please wait upload in process. The upload does not ever happen I have left this for 10 minutes or more and this picture will not upload. What is the problem or what am I doing wrong. Jane

I am not sure about the milestone. I hit the ? button and it takes me to a screen the say FCKeditor version 2.0

#444 Table: Editing cell property for several cells resets all values New Feature Normal General
Description

I would like to start a discussion in order to find a better way to set and change cell properties in a table. With today's design you can't change one property for all cells without changing all the other available properties at the same time.

Example:

  1. Create a table with 6x6 cells/cols
  2. Set different background colours on each column
  3. Now you want to change the vertical alignment on all cells in the table. If you try to do that you will overwrite all background colours for all cells.

However, in some cases it's nice to be able to change the background colour for all cells in order to reset it.

I think the main problem is that you're able to change all the properties from the same window and therefore can't select cells with different properties to change just one of them.

#445 Using 'Paste from Word' with Spanish text causes strange styles to appear Bug Normal FCKeditor 2.5 Beta Plugin : Paste from Word
Description

I have a bug that has been consistent from around version 2.1 and through the current release for FCKeditor. On my own 2.4 release and also the demo release on fckeditor.net

When using the 'Paste from Word' and pasting in Spanish formatted text, strange things and styles appear.

When I 'paste from word' the same formatted text, but it is in english, it turns out fine.

I have both the 'ignore font definitions' and 'styles...' check boxes checked.

It adds an anchor type of link (which makes the text appear blue) and bolds whole paragraphs rather than just the first few words of a paragraph.

Below is the HTML when I toggle to source.

Also, attached is the original Word doc that can be used to test this.

Usage Environment:

  • Windows XP
  • Word 2003
  • IE 6
  • Server running Apache on a Linux box.

From Source View:

<div>La Pel&iacute;cula JESUS Harvest Partners Oraci&oacute;n y Alabanza</div>
<div>2 de mayo 2007<span>&nbsp;&nbsp; </span></div>
<div align="center"><strong>&nbsp;</strong></div>
<div align="center"><strong>&nbsp;</strong></div>
<div><strong>* &ldquo;Empezamos el evento de Misi&oacute;n M&aacute;xima para plantar una iglesia y veinte j&oacute;venes </strong><strong>de la iglesia madre nos ayud&oacute;&rdquo;, testific&oacute; un miembro del equipo de la Pel&iacute;cula JESUS en M&eacute;xico. &ldquo;Trabajamos en la comunidad con muchas herramientas de evangelismo. Nuestro trabajo incluy&oacute; escuelas b&iacute;blicas, clases de discipulado para ni&ntilde;os, el uso del CuboEvangel&iacute;stico, la Pel&iacute;cula JESUS, visitaci&oacute;n con los creyentes en sus casas, ense&ntilde;anza y entrenamiento de adultos en clases de discipulado, y realizar el primer culto en la nueva misi&oacute;n. Esperamos en Dios que El siga trabajando en esta comunidad y en la nueva misi&oacute;n de R&iacute;o Guerrero. Damos gracias al Se&ntilde;or por Su gracia y Su amor&rdquo;. </strong></div>
<div align="center">&nbsp;</div>
<div><em><span>&nbsp;&nbsp;&nbsp;&nbsp; Gloria al Se&ntilde;or por las diferentes herramientas usadas para alcanzar a otros para Cristo. </span></em></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><a name="OLE_LINK1"><strong>* &ldquo;Uno de los hombres en la vecindad puso un parlante en su carro viejo </strong></a><span>y fue para anunciar la presentaci&oacute;n de la Pel&iacute;cula JESUS&rdquo;, dijo un miembro del equipo en la Rep&uacute;blica Dominicana. &ldquo;Estamos agradecidos por este hombre que anunci&oacute; la presentaci&oacute;n. La Iglesia del Nazareno ha estado en Alma Rosa por 20 a&ntilde;os y est&aacute;bamos felices que pudi&eacute;ramos ayudar a abrir una nueva misi&oacute;n en el sector al este de Santo Domingo. La pel&iacute;cula impact&oacute; muchas personas que asistieron la presentaci&oacute;n y algunos lloraron. Damos gracias a Dios por los j&oacute;venes que nos ayudan cada d&iacute;a&rdquo;.&nbsp;</span></div>
<div>&nbsp;</div>
<div><em><span><span>&nbsp;&nbsp;&nbsp;&nbsp; Oren que la nueva misi&oacute;n crezca, prospere, y alg&uacute;n d&iacute;a pueda empezar una iglesia hija. </span></span></em></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><strong><span>* Un l&iacute;der del equipo de la Pel&iacute;cula JESUS en las Filipinas comparti&oacute;: </span><span>&ldquo;Nuestro equipo de la Pel&iacute;cula JESUS trabaj&oacute; con el Distrito de Visayas Oriente en algunas actividades las cuales inclu&iacute;an una reuni&oacute;n de j&oacute;venes del distrito y MEG, un programa de discipulado. Mostramos la Pel&iacute;cula JESUS y la respuesta de la gente fue muy positiva. Estamos en preparaci&oacute;n para un programa de seguimiento en asociaci&oacute;n con <em>Filipinas Mi Esperanza</em> el cual es un esfuerzo evangel&iacute;stico del Concilio Filipino de Iglesias Evang&eacute;licas&rdquo;. </span></strong></div>
<div>&nbsp;</div>
<div><em><span><span>&nbsp;&nbsp;&nbsp;&nbsp; Por favor, &uacute;nansenos en oraci&oacute;n que el Se&ntilde;or siga usando la Pel&iacute;cula JESUS en una manera poderosa mientras que trabajamos para ganar almas para Cristo. </span></span></em></div>
<div>&nbsp;</div>
<div><strong>&nbsp;</strong></div>
<div><strong><span>* Noticias de Viajes: </span></strong></div>
<div><span>- Damos gracias a Dios por el viaje exitoso que la iglesia de Pismo Beach de California hizo a un pa&iacute;s resistente al evangelio. Ellos llevaron un juego de proyecci&oacute;n de la Pel&iacute;cula JESUS. </span></div>
<div>&nbsp;</div>
<div><span>&nbsp;<span>&nbsp;&nbsp;&nbsp;&nbsp; <em>Para m&aacute;s informaci&oacute;n acerca de los Viajes del Ministerio de la Pel&iacute;cula JESUS, visite a </em></span></span><a href="http://www.jfhp.org/trips"><em><span>www.JFHP.org/trips</span></em></a></div>
<div><em><span>&nbsp;</span></em></div>
<div><strong>&nbsp;</strong></div>
<div><strong><span>* Los equipos del Ministerio de la Pel&iacute;cula JESUS han informado</span><span> 43,680,433 contactos evangel&iacute;sticos^ de la Pel&iacute;cula JESUS desde enero del 1998 hasta el 1 de mayo de 2007.&nbsp;De estos contactos, 7,661,657 (17.5% de contactos) indicaron decisiones para Cristo y 2,379,438 (31.1%) son contactos iniciales del discipulado. Se han empezado 11,535 misiones (tipo iglesia) y hay 20,588 nuevos pastores en preparaci&oacute;n pastoral. </span></strong></div>
<div><span>^<em>Pel&iacute;cula JESUS y otras herramientas</em></span></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span>--/--/--/--/--/--/--/--/--/--/--/--/--/--/--/--</span></div>
<div>&nbsp;</div>
<div><span>Para m&aacute;s informaci&oacute;n...</span></div>
<div><span>* En la p&aacute;gina web: </span><a href="http://www.jfhp.org/"><span>http://www.JFHP.org</span></a></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Planee un Viaje del Ministerio de la Pel&iacute;cula JESUS</span></span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Haga un pedido de Cubos Evangel&iacute;sticos</span></span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Llegue a ser un Asociado 120 de la Cosecha</span></span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Pedido de Folletos </span></span></div>
<div><span>* Pedidos de videos a: </span><a href="http://www.thejesusvideo.com/"><span>http://www.theJesusvideo.com</span></a></div>
<div><span>* Misi&oacute;n Mundial: </span><a href="http://www.nazareneworldmission.org/"><span>http://www.nazareneworldmission.org</span></a></div>
<div><span>* L&iacute;nea de Oraci&oacute;n de MNI: </span><a href="http://www.nazarenemissions.org/"><span>http://www.nazarenemissions.org</span></a></div>
<div><span>* Ministerios Nazarenos de Compasi&oacute;n: </span><a href="http://www.nazcompassion.org/"><span>http://www.nazcompassion.org</span></a></div>
<div><span>* Puede comunicarse con nosotros en la nueva direcci&oacute;n: </span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; JESUS Film Harvest Partners</span></span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 15055 </span></span><span>W. 116th Street</span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><span>Olathe</span><span>, </span><span>KS</span><span>&nbsp;</span><span>66062</span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 913-451-5921</span></span></div>
<div><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><a href="mailto:prayers@JFHP.org"><span>prayers@JFHP.org</span></a></div>
<div>&nbsp;</div>
<div><span>Para subscripciones y suspender la suscripci&oacute;n: </span></div>
<div>&nbsp;</div>
<div><span>Si recibi&oacute; este bolet&iacute;n de JFHP Oraci&oacute;n y Alabanza,&nbsp;y desea subscribirse, puede hacer un clic en la siguiente direcci&oacute;n:</span></div>
<div><a href="http://www.jfhp.org/prayer/signup_esp.cfm"><span>http://www.JFHP.org/prayer/signup_esp.cfm</span></a></div>
<div>&nbsp;</div>
<div><span>Para suspender la subscripci&oacute;n de JFHP Oraci&oacute;n y Alabanza haga clic en la siguiente direcci&oacute;n:</span></div>
<div><a href="http://www.jfhp.org/prayer/unsubscribe_esp.cfm"><span>http://www.JFHP.org/prayer/unsubscribe_esp.cfm</span></a></div>
<div>&nbsp;</div>
<div><span>Si desea subscribirse a este bolet&iacute;n en ingl&eacute;s, puede hacer un clic en la siguiente direcci&oacute;n:</span></div>
<div><a href="http://www.jfhp.org/prayer/signup.cfm"><span>http://www.JFHP.org/prayer/signup.cfm</span></a></div>
<div>&nbsp;</div>
<div><span>(Puede hacer clic en la direcci&oacute;n o copiar y transferir la direcci&oacute;n a su navegador).</span></div>
#446 phpbb session nightmare with FCKeditor Bug Normal General
Description

I have a issue that has been blowing my mind for weeks now and a new revelation points in your software’s direction.

You might have been asked this question 100 times, but I can find no reference in your help files.

Kindly point me into the right direction for the solution.

Below is a posting I have on the phpbb forums.

Forgive the direct email, I have just been getting my butt handed to me for weeks and desperately seeking the quick fix!

Sincerely,

Brad

Supposedly this used to work but since IE7.0 and Firefox 2.0 it doesn't. Since I have both, it is for sure not working.

If a user logs in at http://www.colormegorgeous.com/phpbb/index.php and then goes to http://www.colormegorgeous.com/contest.php

php echo test confirms user is STILL LOGGED IN!??????

then, user goes to

http://www.colormegorgeous.com/contest_current.php

php echo test confirms user is STILL LOGGED IN!??????

If the click on the link in the middle which has an href

href="http://colormegorgeous.com/contest_stories.php?cid=10"

The user is no longer logged in and a second cookie is given.

I have tried manually putting in the recommended phpbb reference code. Side hack (with my limited php skills) the ?cid=10 seams to be the core of the issue and apparently the newer web browser (I am told it used to work) have me completely stumped.

#447 phpbb session nightmare with FCKeditor Frederico Caldeira Knabben Bug Normal Server : PHP
Description

Kindly point me into the right direction for the solution.

Below is a posting I have on the phpbb forums.

Forgive the direct email, I have just been getting my butt handed to me for weeks and desperately seeking the quick fix!

Sincerely,

Brad

Supposedly this used to work but since IE7.0 and Firefox 2.0 it doesn't. Since I have both, it is for sure not working.

If a user logs in at http://www.colormegorgeous.com/phpbb/index.php and then goes to http://www.colormegorgeous.com/contest.php

php echo test confirms user is STILL LOGGED IN!??????

then, user goes to

http://www.colormegorgeous.com/contest_current.php

php echo test confirms user is STILL LOGGED IN!??????

If the click on the link in the middle which has an href

href="http://colormegorgeous.com/contest_stories.php?cid=10"

The user is no longer logged in and a second cookie is given.

#449 New File/image dialog New Feature Normal File Browser
Description

While the current file and image dialog get the work done, it has some deficiencies:

  • Too complex for my grandmother use. Too much options.
  • It falls behind other windows
  • I can click in the editor window while editing

For improving the consider the following sugestions:

#450 right click bug near a text contains a P tag in firefox Bug Normal General
Description

try to right click near a text or a column containing a <p> tag it will select the whole text so if u copy something and u want to paste near this text it replaces the text

regards

#451 Image stylesheet classes not immediately reflected in IE Bug Normal General
Description

This bug tested in Windows XP with IE6 and IE7 on different PCs, with equal results.

1) Insert an image 2) Go to "Advanced" tab 3) Enter a "Stylesheet class" 4) "OK" 5) Re-edit image 6) Go to "Advanced" tab 7) "Stylesheet class" is empty

However, on saving the document in which the image is inserted, the stylesheet class change is picked up correctly, and subsequent editing of the document is fine too.

All works OK in Firefox 2.

#452 Safari: Doesn't Display Toolbar Bug Normal General
Description

I installed FCKedit 2.4.3. The textarea toolbar displays on the browsers in Window PCs. However, the toolbar does not display on Safari 1.3.2 (or later) an Macs. Is there a way to resolve this? Is FCKedit supported on Macs?

#453 Error deleting a table in Firefox Bug Normal FCKeditor 2.4.3 UI : Enter Key
Description

Steps in Firefox 2.0.0.3:

  1. insert a table
  2. Select it
  3. Press Del to delete it
currentBlock has no properties
_ExecuteBackspace(Object Window=window StartContainer=td StartBlockLimit=td, null, null)fckenterkey.js (line 179)
DoDelete()fckenterkey.js (line 275)
FCKEnterKey_OnKeystroke(46, "Delete")fckenterkey.js (line 78)
_FCKKeystrokeHandler_OnKeyDown(keydown charCode=0, keyCode=46, Object Keystrokes=Object CancelCtrlDefaults=false)fckkeystrokehandl... (line 101)
(no name)(keydown charCode=0, keyCode=46)fcktools_gecko.js (line 133)
 if ( !previous && currentBlock.nodeName.IEquals( 'LI' ) && currentBlock.parentN...
#454 Unify the browser and upload connectors Alfonso Martínez de Lizarrondo New Feature Normal FCKeditor 2.5 Beta File Browser
Description

Now there are two connectors folders for each server language, one for the quick upload and another one for the filemanager.

That means duplicated code and confusion for users because they have enabled only one of them and the other part doesn't work. Not taking into account the problems when a change is done only in one set of folders and the other one isn't updated.

So I propose to use just one set of files and so provide in their configuration files the option to enable or disable now the basic functionality like Upload, Browse files, and then it can be further expanded to enable deletion if the user wants to.

I'll try to work in my branch to make the proper changes to the asp and php connectors and let's see if I'm able to understand other languages.

#455 Problem when select a chinese files in FCKeditor Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.4.3 Server : PHP
Description

We can upload a chinese file with FCKeditor, but when we want select the file, it don't show us chinese Characters, it show us only some strange characters 測試1.GIF.

When you go to browse server, you can see that the file is show with this strange characters. On the server self the file is stored right.

Tested it with Linux and Windows OS, With Firefox and Internet Explorer

I attached some files that you can test it

#456 Can you point fckeditor to an apache server to use FCKEditor, I am using AIX as the operating system? Task Normal General
Description

Hi,

I have used FCKeditor in the past on windows but I would like to use it again but I am now working on AIX and developing in websphere, is it possible to install FCKEditor on an apache server and link the editor to the apache server to retrieve the editor and templates?

Thanks

#457 Chinese characters Bug Normal General
Description

Hi,

I have installed tikiwiki here: http://www.paysans-sans-frontieres.com/wiki/ I have been using Internet Explorer 6 and add a bug with fckeditor. When I wrote a text and edited the text again, there add Chinese characters showing in the page. I have updated Internet Explorer to version 7, and the Chinese characters have disappeared, but I now have squares.

Those strange characters appear when I write French, with a combination of é, à, è. All those letters are changed into Chinese.

I have tried forums, updates, etc... etc... but the problem still be here.

I also have a problem with the administration of WYSIWYG, as it is said in Tikiwiki that fckeditor comes with an admin, while there is not any in the Tikiwiki Administration tools: http://doc.tikiwiki.org/tiki-index.php?page=Wysiwyg+Editor+Admin&bl

Expecting your help, I send you my bests regards.

Sandrine

#458 Upload dirs creation with $Config['UseFileType'] enabled Frederico Caldeira Knabben Bug Normal Server : PHP
Description

Part 1

with $ConfigUseFileType? enabled, Upload connector creates Image, File, Flash etc... dirs, but in lower case !!!, should be ucfirst-ed too, not just strtolower-ed, based on file type.

For example We have Image dialog, there we can browse server & upload files. When we go to browser server "image" dir is created. but should be "Image" as url is set to /uploads/Image/Imagename.jpg but real one is /uploads/image/Imagename.jpg

i'm not sure but io.php should be changed, at least in my case it worked function ServerMapFolder

from $sResourceTypePath = $GLOBALSUserFilesDirectory? . strtolower( $resourceType ) . '/' ;

to $sResourceTypePath = $GLOBALSUserFilesDirectory? . ucfirst(strtolower( $resourceType )) . '/' ;

Part 2 second small bug is that if we go directly to Upload tab & try to upload it doesn't create these dirs... i have modified for me upload.php if ( $ConfigUseFileType? ) {

$sServerDir .= $sType . '/' ;

if (!file_exists($sServerDir)) {

/ To create the folder with 0777 permissions, we need to set umask to zero. $oldumask = umask(0) ; mkdir( $sServerDir, 0777 ) ; umask( $oldumask ) ;

}

}

now it works for me...

hope i have described enough my issue

#459 javascript error in ie7 Bug Normal General
Description

When I try these HTML code in the editor, http://www.fckeditor.net/demo You will get javascript error, in firefox it works great!

<p><font size="2" face="Verdana" color="#8e001c">Javascript error</font></p>
<p><font size="1" face="Verdana" color="#808080">Test</font></p>
<p align="right"><font size="1" face="Verdana" color="#808080"><font color="#e20025"> <font size="2">&raquo;<br />
<hr />
</font></font></font></p>
#460 when putting style="border:1px solid black; border-top:0px" in an elemint, it puts a mozilla specific CSS attribute for one of the values Martin Kou Bug Normal General
Description

when putting style="border:1px solid black; border-top:0px" in an elemint, it puts a mozilla specific CSS attribute for one of the values. For instance putting this: style="style="border:1px solid black; border-top:0px"

results in:

style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: 0px 1px 1px;"

which is fine if you are viewing the page in FF, but in IE the border color is off. I tried to use the nightly build to test to see if it was fixed, but the nightly build wouldn't even load for me or for another person I asked to view. Sorry if its a dupe.

#461 putting ampersands in an onclick even changes to apostrophe Bug Normal General
Description

When adding an onclick even for an item, if you put an ampersand (for like a document.location.href change) it changes the ampersand to an apostrophe.

IE:

<div class="leftnav" onClick="window.location.href='index.cfm?do=cms.showPage&cid=14'">test</div>

turns into:

<div onClick="window.location.href='index.cfm?do=cms.showPage'cid=14'" class="leftnav">test</div>

#462 FF: Certain HTML causing CPU to go to 100% Bug Normal FCKeditor 2.5 Beta General
Description

Using FCKeditor version 2.4.1 with FULL PAGE mode turned on - When the HTML in the attached file is pasted into FCKeditor in source mode and the source button is hit to bring WYSIWYG mode back, FCKeditor starts to spin and the CPU hits 100%.

This does not happen with the 2.3 version of FCKeditor.


Moved from SF:
https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1687171&group_id=75348

#463 toolbar Format influenced by $oFCKeditor->Config["EditorAreaCSS"] Bug Normal General
Description

I used the $oFCKeditor->ConfigEditorAreaCSS? to add my own style to the editor.

while using the he lang, the color have changed to the color I set in my style page. while using the en lang it was ok.

see the pic

#464 Table border color New Feature Normal General
Description

There is no such option: border color for entire table. There is color option for border of cell (its ok).

For table there is only size of border (not color of it).

#465 upload images Bug Normal File Browser
Description

Image Info and Upload Directory will go to 2 dirrent directories. (The Dialog for images)

It seems like the online demo version do the same.

#466 FCKEditor 2.4 Backward Compatibility Bug Normal General
Description

Hi,all

im using FCKEditor v2.4 in my application.i just want to know whether it is backward compatable to FCKEditor 2.1

Thanks, Arun

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy