|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hello,
I have just updated Firefox to 2.0.0.3 and it seems HTMLArea isn't working anymore. I get a JavaScript error (editor has no properties). I have tried several versions op rtehtmlarea (including 1.5.1dev, the one used in TYPO3 4.1) and none work. This is probably a problem with Firefox and not TYPO3, but it's still very annoying. Regards, Rudy Gnodde WIND Internet http://www.windinternet.nl http://typo3.famouswolf.com _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
| Sponsored Links |
|
#2
|
|||
|
|||
|
Hi!
Rudy Gnodde wrote: > I have just updated Firefox to 2.0.0.3 and it seems HTMLArea isn't > working anymore. Issue is known. See: http://bugs.typo3.org/view.php?id=4870 -- Dmitry Dulepov Web: http://typo3bloke.net/ Skype: callto:liels_bugs "It is our choices, that show what we truly are, far more than our abilities." (A.P.W.B.D.) _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#3
|
|||
|
|||
|
Hello Rudy,
> Hello, > > I have just updated Firefox to 2.0.0.3 and it seems HTMLArea isn't > working anymore. I get a JavaScript error (editor has no properties). > I have tried several versions op rtehtmlarea (including 1.5.1dev, the > one used in TYPO3 4.1) and none work. This is probably a problem with > Firefox and not TYPO3, but it's still very annoying. > > Regards, > > Rudy Gnodde > WIND Internet > http://www.windinternet.nl > http://typo3.famouswolf.com Confirmed! Tried 1.5.1dev and 1.4.2 WBR, Erik Svendsen www.linnearad.no _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#4
|
|||
|
|||
|
Same for me. FF 2.0.0.3, Typo3 4.1, htmlArea 1.5.1dev.
2007/3/21, Erik Svendsen <erik (AT) linnearad (DOT) no>: > > Hello Rudy, > > > Hello, > > > > I have just updated Firefox to 2.0.0.3 and it seems HTMLArea isn't > > working anymore. I get a JavaScript error (editor has no properties). > > I have tried several versions op rtehtmlarea (including 1.5.1dev, the > > one used in TYPO3 4.1) and none work. This is probably a problem with > > Firefox and not TYPO3, but it's still very annoying. > > > > Regards, > > > > Rudy Gnodde > > WIND Internet > > http://www.windinternet.nl > > http://typo3.famouswolf.com > > Confirmed! Tried 1.5.1dev and 1.4.2 > > WBR, > Erik Svendsen > www.linnearad.no > > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english (AT) lists (DOT) netfielders.de > http://lists.netfielders.de/cgi-bin/.../typo3-english > _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#5
|
|||
|
|||
|
Hi,
Dmitry Dulepov schrieb: > Hi! > > Rudy Gnodde wrote: >> I have just updated Firefox to 2.0.0.3 and it seems HTMLArea isn't >> working anymore. > > Issue is known. See: > http://bugs.typo3.org/view.php?id=4870 If any of the JS-Gurus have a clue, your help is very much appreciated! I'd suggest to move any solutions/discussions to the RTE-group or the BT. Personally I will most liekly *not be able* to work on this within the next days. ;( Thx and Greets, Peter -- Peter Niederlag http://www.niekom.de * TYPO3 & EDV Dienstleistungen * http://www.typo3partner.net * professional services network * _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#6
|
|||
|
|||
|
Good morning,
i posted a fix for this on http://bugs.typo3.org/view.php?id=4870. The error is there because the browser detection of rtehtmlarea does not work right in this case. On https://bugzilla.mozilla.org/show_bug.cgi?id=374738 [^] the firefox developers showed that by changing the browser identification it can be fixed. the problem lies in rtehtmlarea.js in line 85: HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || (HTMLArea.is_gecko && (HTMLArea.agt.indexOf("1.3") != -1)); here the index of 1.3 is true because of "rv:1.8.1.3". a quick fix is changing the line to HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || (HTMLArea.is_gecko && ((HTMLArea.agt.indexOf("1.3") != -1)&&(HTMLArea.agt.indexOf("1.8.1.3") == -1))); have fun tobias erlacher www.typo3wizard.com _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#7
|
|||
|
|||
|
Couldn't seem to get this working, couldn't find the file
rhtmlarea.js, only a series of files called htmlarea.js... Any clarification on where I should be looking? On 3/22/07, Tobias Erlacher <tobi (AT) 54tec (DOT) com> wrote: > Good morning, > > i posted a fix for this on http://bugs.typo3.org/view.php?id=4870. > > The error is there because the browser detection of rtehtmlarea does not > work right in this case. > On https://bugzilla.mozilla.org/show_bug.cgi?id=374738 [^] the firefox > developers showed that by changing the browser identification it can be > fixed. > the problem lies in rtehtmlarea.js in line 85: > HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || > (HTMLArea.is_gecko && (HTMLArea.agt.indexOf("1.3") != -1)); > > here the index of 1.3 is true because of "rv:1.8.1.3". > > a quick fix is changing the line to > HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || > (HTMLArea.is_gecko && ((HTMLArea.agt.indexOf("1.3") != > -1)&&(HTMLArea.agt.indexOf("1.8.1.3") == -1))); > > have fun > > tobias erlacher > www.typo3wizard.com > _______________________________________________ > TYPO3-english mailing list > TYPO3-english (AT) lists (DOT) netfielders.de > http://lists.netfielders.de/cgi-bin/.../typo3-english > -- ------- http://gallery.denyerec.co.uk _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#8
|
|||
|
|||
|
If you use Typo3 4.1 you should uninstall and delete local version of
extension rtehtmlarea, and then install it again - after deleting htmlarea will install as system extension. Mentioned file (htmlarea.js) is located under in directory: /www/www.ais.pl/typo3_src-4.1/typo3/sysext/rtehtmlarea/htmlarea/ But probably you should make this correction in file htmlarea-compressed.js (depands if you have checked option 'Enable compressed scripts' in rtehtmlarea configuration). It is located in the same directory. Remember to clear all cache and all files typo3temp/rtehtmlarea* Dominik Denyer Ec: > Couldn't seem to get this working, couldn't find the file > rhtmlarea.js, only a series of files called htmlarea.js... > > Any clarification on where I should be looking? > > > On 3/22/07, Tobias Erlacher <tobi (AT) 54tec (DOT) com> wrote: >> Good morning, >> >> i posted a fix for this on http://bugs.typo3.org/view.php?id=4870. >> >> The error is there because the browser detection of rtehtmlarea does not >> work right in this case. >> On https://bugzilla.mozilla.org/show_bug.cgi?id=374738 [^] the firefox >> developers showed that by changing the browser identification it can be >> fixed. >> the problem lies in rtehtmlarea.js in line 85: >> HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || >> (HTMLArea.is_gecko && (HTMLArea.agt.indexOf("1.3") != -1)); >> >> here the index of 1.3 is true because of "rv:1.8.1.3". >> >> a quick fix is changing the line to >> HTMLArea.is_wamcom = (HTMLArea.agt.indexOf("wamcom") != -1) || >> (HTMLArea.is_gecko && ((HTMLArea.agt.indexOf("1.3") != >> -1)&&(HTMLArea.agt.indexOf("1.8.1.3") == -1))); >> >> have fun >> >> tobias erlacher >> www.typo3wizard.com >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english (AT) lists (DOT) netfielders.de >> http://lists.netfielders.de/cgi-bin/.../typo3-english >> > > _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#9
|
|||
|
|||
|
Is the htmlarea extension going to be updated to include the fix soon? I
don't have ftp privledges to the required folder and so can not patch the file manually. TIA, Ben ------------------------ Benjamin Todd Linux Web Developer b.todd (AT) emnet (DOT) co.uk EMNET, PO Box 559, Nottingham, NG1 3LB Tel: +44 (0)115 956 8260 Fax: +44 (0)115 956 8264 www.emnet.co.uk Company Registration No. 3144383 - VAT No. 694 620 609 - Registered Office: Church House, 13-15 Regent Street, Nottingham NG1 5BS www.emnetsolutions.co.uk Company Registration No. 05384178 - VAT No. 856 671 781 - Registered office: Church House, 13-15 Regent Street, Nottingham, NG1 5BS _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#10
|
|||
|
|||
|
Is the htmlarea extension going to be updated to include the fix soon? I
do not have ftp privledges for the required folder and so can not do the patch manually. Ben ------------------------ Benjamin Todd Linux Web Developer b.todd (AT) emnet (DOT) co.uk EMNET, PO Box 559, Nottingham, NG1 3LB Tel: +44 (0)115 956 8260 Fax: +44 (0)115 956 8264 www.emnet.co.uk Company Registration No. 3144383 - VAT No. 694 620 609 - Registered Office: Church House, 13-15 Regent Street, Nottingham NG1 5BS www.emnetsolutions.co.uk Company Registration No. 05384178 - VAT No. 856 671 781 - Registered office: Church House, 13-15 Regent Street, Nottingham, NG1 5BS _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3] level2 pages not working in firefox. ? | Asbjørn Morell | typo3-english@lists.netfielders.de | 2 | 12.03.2007 22:32 |
| [TYPO3] after update to 4.1,news_feedit not working (RTE problem?!?) | Cyrill Helg | typo3-english@lists.netfielders.de | 2 | 09.03.2007 10:45 |
| [TYPO3-german] htmlArea RTE: Probleme nach Update auf 1.1.5 | Xaver Reichart | typo3-german@lists.netfielders.de | 4 | 07.03.2007 16:28 |
| [TYPO3-german] Problem mit dem RTE und dem IE und Firefox | Maximilian Graf von Plettenberg | typo3-german@lists.netfielders.de | 0 | 07.12.2006 22:28 |
| [TYPO3] Differencies between IE and FireFox | Jeppe Donslund | typo3-english@lists.netfielders.de | 0 | 07.12.2006 10:42 |