ciao,
sto utilizzando l'fckeditor con le classi quickForm.
Finché la cartella FCKeditor rimane nello stesso dominio degli altri file che la richiamano tutto bene, però se sposto la cartella fuori, anche modificando i percorsi, non vedo la textarea...
Codice PHP:
${'fck_'.$i} =& HTML_QuickForm::createElement('fckeditor'$nome_campo$proprieta_campo['label_campo']);
${
'fck_'.$i}->Width '100%';
${
'fck_'.$i}->Height 400;
${
'fck_'.$i}->BasePath 'http://miosito/FCKeditor/';
${
'fck_'.$i}->ToolbarSet 'MyToolbar';
${
'fck_'.$i}->Config['AutoDetectLanguage'] = false;
${
'fck_'.$i}->Config['DefaultLanguage'] = 'it';
${
'fck_'.$i}->Config['CustomConfigurationsPath'] =  'http://miosito/FCKeditor/fckconfig.js'
Escono errori in js:
uncaught exception: Permesso negato per impostare la proprietà Window.FCK_STATUS_NOTLOADED

FCKBrowserInfo has no properties [Break on this error] if ( FCKBrowserInfo.IsGecko )
fckeditor.html (line 165)

FCKLang is not defined [Break on this error] window.document.dir = FCKLang.Dir ;
fckeditor.html (line 97)

uncaught exception: Permesso negato per ottenere la proprietà Window.FCKeditorAPI [Break on this error] undefined

FCK has no properties [Break on this error] FCK.ContextMenu=new Object();FCK.ContextMenu.Listeners=new Array();FCK.ContextMe... fckeditorcode_gec... (line 78)

FCKConfig has no properties [Break on this error] var FCKConfig=FCK.Config=new Object();if (document.location.protocol=='file:'){F...
fckeditorcode_gec... (line 20)

FCKBrowserInfo has no properties [Break on this error] if ( FCKBrowserInfo.IsIE )
fckeditor.html (line 55)

FCKConfig has no properties [Break on this error] FCKConfig.CustomConfigurationsPath = '' ;
suggerimenti?
grazie,
Michela