67FCKXml.prototype={LoadUrl:function(A){this.Error=false;var B=this;var C=FCKTools.CreateXmlObject('XmlHttp');C.open("GET",A,false);C.send(null);if (C.status==200||C.status==304) this.DOMDocument=C.responseXML;else if (C.status==0&&C.readyState==4) this.DOMDocument=C.responseXML;else this.DOMDocument=null;if (this.DOMDocument==null||this.DOMDocument.firstChild==null){this.Error=true;if (window.confirm('Error loading "'+A+'"\r\nDo you want to see more info?')) alert('URL requested: "'+A+'"\r\nServer response:\r\nStatus: '+C.status+'\r\nResponse text:\r\n'+C.responseText);}},SelectNodes:function(A,B){if (this.Error) return [];var C=[];var D=this.DOMDocument.evaluate(A,B?B:this.DOMDocument,this.DOMDocument.createNSResolver(this.DOMDocument.documentElement),XPathResult.ORDERED_NODE_ITERATOR_TYPE,null);if (D){var E=D.iterateNext();while(E){C[C.length]=E;E=D.iterateNext();}};return C;},SelectSingleNode:function(A,B){if (this.Error) return null;var C=this.DOMDocument.evaluate(A,B?B:this.DOMDocument,this.DOMDocument.createNSResolver(this.DOMDocument.documentElement),9,null);if (C&&C.singleNodeValue) return C.singleNodeValue;else return null;}};
Tue, 12/04/2007 - 17:05
#1

Re: FCKeditor v2.5 problem with firefox 2.0 using php
Try to use the default styles that come in the installation, you should try to move from the default install to your customized version little by little to understand exactly where it does stop working.
Of course a url to check the problem could help
Re: FCKeditor v2.5 problem with firefox 2.0 using php
http://www.trimastsystems.co.uk/FCKeditorFirefox.jpg
Re: FCKeditor v2.5 problem with firefox 2.0 using php
Someday in the future it might get fixed, you just have to wait until someone generates a public testcase.
Re: FCKeditor v2.5 problem with firefox 2.0 using php
Thanks,
Rob
Re: FCKeditor v2.5 problem with firefox 2.0 using php
If it's too complex to put it in a public space then you could PM the url (and user/pwd if neccesary) to Wiktor, Martinkou or me.
Re: FCKeditor v2.5 problem with firefox 2.0 using php
i'll post a link here once i've got it sorted.
thanks again
Rob
Re: FCKeditor v2.5 problem with firefox 2.0 using php
http://es-web.dk/FCKeditor_FF.jpg
Re: FCKeditor v2.5 problem with firefox 2.0 using php
Re: FCKeditor v2.5 problem with firefox 2.0 using php
Re: FCKeditor v2.5 problem with firefox 2.0 using php
When adding news or a new page, the title of the news / page is saved to the database, but not the content. I tested then 2.80 with opera and konqueror (i know about the problems with those browsers), and there the content is saved too. Then i uninstalled 2.80, reinstalled 2.77 and tested it again with firefox 2.0.0.11 and there everything works like it should.