Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#1 2006-05-16 14:40:20

Mauglio
New member
Registered: 2006-05-16
Posts: 2

I need help

Greetings, I from Russia, therefore can is bad write in English.
Your editor has established, and at once there were some problems ..
My OS Windows Xp SP2 .. IE 6.0
server Linux Mandrake
my config

<script type="text/javascript">
    _editor_url  = "<?echo $config['http_script_dir']."/";?>plugins/xinha/"  // (preferably absolute) URL (including trailing slash) where Xinha is installed
    _editor_lang = "ru";      // And the language we need to use in the editor.
  </script>
  <script type="text/javascript" src="<?echo $config['http_script_dir']."/";?>plugins/xinha/htmlarea.js"></script>
<script type="text/javascript">

    xinha_editors = null;
    xinha_init    = null;
    xinha_config  = null;
    xinha_plugins = null;

    // This contains the names of textareas we will make into Xinha editors
    xinha_init = xinha_init ? xinha_init : function()
    {
      /** STEP 1 ***************************************************************
       * First, what are the plugins you will be using in the editors on this
       * page.  List all the plugins you will need, even if not all the editors
       * will use all the plugins.
       *
       * The list of plugins below is a good starting point, but if you prefer
       * a must simpler editor to start with then you can use the following 
       * 
       * xinha_plugins = xinha_plugins ? xinha_plugins : [ ];
       *
       * which will load no extra plugins at all.
       ************************************************************************/

      xinha_plugins = xinha_plugins ? xinha_plugins :
      [
       'CharacterMap',
       'ContextMenu',
       'FullScreen',
       'ListType',
       'GetHtml',
       'Stylist',
       'SuperClean',
       'TableOperations',
       'ImageManager'       
      ];
             // THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING  :)
             if(!HTMLArea.loadPlugins(xinha_plugins, xinha_init)) return;

      /** STEP 2 ***************************************************************
       * Now, what are the names of the textareas you will be turning into
       * editors?
       ************************************************************************/

      xinha_editors = xinha_editors ? xinha_editors :
      [
        'short_story',
        'full_story'
      ];

      /** STEP 3 ***************************************************************
       * We create a default configuration to be used by all the editors.
       * If you wish to configure some of the editors differently this will be
       * done in step 5.
       *
       * If you want to modify the default config you might do something like this.
       *
       *   xinha_config = new HTMLArea.Config();
       *   xinha_config.width  = '640px';
       *   xinha_config.height = '420px';
       *
       *************************************************************************/
       xinha_config = new HTMLArea.Config();
       xinha_config.width  = '500px';
       xinha_config.height = '420px';
       xinha_config.baseHref = 'http://<? echo $ServerHREF; ?>/';
       xinha_config.ImageManager.backend_config = '<?php echo jsaddslashes($IMConfig)?>';
       xinha_config.ImageManager.backend_config_hash = '<?php echo sha1($IMConfig . $_SESSION['Xinha:ImageManager'])?>';

      /** STEP 4 ***************************************************************
       * We first create editors for the textareas.
       *
       * You can do this in two ways, either
       *
       *   xinha_editors   = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);
       *
       * if you want all the editor objects to use the same set of plugins, OR;
       *
       *   xinha_editors = HTMLArea.makeEditors(xinha_editors, xinha_config);
       *   xinha_editors['myTextArea'].registerPlugins(['Stylist','FullScreen']);
       *   xinha_editors['anotherOne'].registerPlugins(['CSS','SuperClean']);
       *
       * if you want to use a different set of plugins for one or more of the
       * editors.
       ************************************************************************/

      xinha_editors   = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);

      /** STEP 5 ***************************************************************
       * If you want to change the configuration variables of any of the
       * editors,  this is the place to do that, for example you might want to
       * change the width and height of one of the editors, like this...
       *
       *   xinha_editors.myTextArea.config.width  = '640px';
       *   xinha_editors.myTextArea.config.height = '480px';
       *
       ************************************************************************/


      /** STEP 6 ***************************************************************
       * Finally we "start" the editors, this turns the textareas into
       * Xinha editors.
       ************************************************************************/

      HTMLArea.startEditors(xinha_editors);
    }

    window.onload = xinha_init;

 </script>

Errors

№1
Line : 120
Char : 15
Error : Expected identifier, string or number
Code : 0
URL: ---

next ->

№2
Line : 6240
Char : 3
Error : Permission denied
Code : 0
URL: ---

Help me plz %(

Offline

#2 2006-05-16 16:07:10

Mauglio
New member
Registered: 2006-05-16
Posts: 2

Re: I need help

All thanks, a problem was solved. A mistake by my nonsense.

Offline

Board footer

Powered by FluxBB