Re: upload files button doesnt' work

  •  02-19-2010, 11:32 AM

    Re: upload files button doesnt' work

    I forgot, my code;
    1. <?  
    2.             echo '<br />';  
    3.             include_once(dirname(DIR).'/cuteeditor_files/include_CuteEditor.php');   
    4.             $editor = new CuteEditor();  
    5.             $editor->ID = $id;  
    6.             $editor->Text = $text;  
    7.             $editor->EditorBodyStyle = "font:normal 12px arial;";  
    8.             $editor->AutoConfigure = "Full_noform";  
    9.             $editor->ThemeType="Office2007";  
    10.             $editor->Width="100%";  
    11.             $editor->AbsoluteImageGalleryPath = DIR_CACHE.'/gallery/';  
    12.             $editor->ImageGalleryPath = CACHE_WWW.'/gallery/';  
    13.             $editor->SecurityPolicyFile = "admin.config";  
    14.             $editor->Draw();  
    15.             echo '<br />';  
    16.             $editor=null; 
     
View Complete Thread