Announcement

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

#377 Re: User Discussion & Help » Not working in IE ..where is wrong » 2008-08-06 21:55:49

You need to provide more information.  What errors are you getting.  Is it working in other browser.  What revision are you using.  What fault finding have you tried....

#378 Re: User Discussion & Help » Help! how to call xinha from my perl program? » 2008-08-06 21:53:06

Xinha is not the solution you are seeking.  Xinha is for providing a WYSIWYG HTML Editor inside a web browser.

#379 Re: User Discussion & Help » no postdata » 2008-07-30 07:57:14

Ensure your page validates, specifically
   

<table><form><tr>

or
   

<table><tr><form>

are both invalid and known to cause this issue sometimes.

#380 Re: User Discussion & Help » Don't know html. Don't understand how to download Xinha. » 2008-07-28 12:21:08

You are looking for the XinhaHere! Firefox plugin.  Search for it, it's not maintained by us.

#381 Re: User Discussion & Help » Link Create » 2008-07-28 12:18:00

Problem #1 is magic_quotes_gpc is turned on in your PHP configuration, this construct is evil, turn it off, code safe PHP.

Problem #2 is a browser behaviour mostly, you can get "stuck" in a link like that if it's the very last thing in the editor.  Switch to html mode and add a letter, or break, or punctuation after the link and then switch back.

#382 Re: User Discussion & Help » How to enable GetHtml method (I need to embed Flash videos) » 2008-07-28 12:14:06

http://xinha.webfactional.com/wiki/NewbieGuide

  /** 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 Xinha.Config();
   *   xinha_config.width  = '640px';
   *   xinha_config.height = '420px';
   *
   *************************************************************************/

#383 Re: User Discussion & Help » howto manually configure linker plugin » 2008-07-28 12:11:27

http://xinha.webfactional.com/wiki/NewbieGuide

  /** 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';
   *
   ************************************************************************/

#384 Re: User Discussion & Help » Xinha.org » 2008-07-28 12:06:22

www.xinha.org points to the server that runs the forum, hence http://www.xinha.org/punbb/

I've added a redirect to the old xinha.gogo.co.nz domain so that it will direct to the canonical xinha.org domain instead.  I've also added svn.xinha.org and trac.xinha.org which go to the appropriate places.

foxx if you want I'm happy to take the domain over from you and pay for it's registration, just let me know - james@gogo.co.nz

#385 Re: User Discussion & Help » Remove / Replace a plugin » 2008-07-28 09:40:58

You should override the _insertImage method of the Xinha object.

See ImageManager plugin image-manager.js around line 82 for example.

#386 Re: User Discussion & Help » Empty $_REQUEST data from xinha field in firefox3 » 2008-07-28 09:35:25

Is your form valid html, does it pass validation.  Are you doing somethng like <tr><form><td> that is very common but very invalid and can cause this.

#387 Re: User Discussion & Help » Using Xinha in an Eclipse project » 2008-04-17 20:34:27

There is no such documentation.  The licence information is available in the source code package.  Xinha is an open source project.  HTMLArea Licence is BSD derived.  Use it however you want.

#388 Re: User Discussion & Help » force html emphasis tags to i and b » 2008-04-17 01:47:04

I would just replace it server side with a regexp, if you're using php

   $HTMLFromXinha = preg_replace('/<(\/?)strong>/', '<$1b>', $HTMLFromXinha);
   $HTMLFromXinha = preg_replace('/<(\/?)em>/', '<$1i>', $HTMLFromXinha);

#389 Re: User Discussion & Help » Need specific API or Documentation for writing new plug-ins » 2008-04-11 23:10:43

There is none.  Read one of the simpler plugins and learn by example.

#391 Re: User Discussion & Help » Does Xinha require PHP on server? » 2008-04-11 23:04:07

Xinha itself does not require PHP.  However as you have found, some plugins do.  If you wish to use those plugins you will either need to run PHP, or rewrite them in the language of your choice.

#392 Re: User Discussion & Help » Content Management System & Relative Paths » 2008-03-28 23:32:22

I would not recommend using Xinha in this manner.  But you can look in the config at the baseHref config option from memory.

#393 Re: User Discussion & Help » stylistLoadStylesheet is not a function » 2008-03-28 23:30:13

Follow the newbie guide.  In step 3 of your init method you would put your call to stylistLoadStylesheet

#396 Re: User Discussion & Help » anable to load path » 2008-02-21 21:20:21

Not enough information to assist.

What framework.
Install firebug plugin for firefox.
Using that look for javascript errors and look in the Net tab for 404's etc.

#397 Re: User Discussion & Help » pop ups not working » 2008-02-21 21:19:41

Not enough information to assist.

Install firebug plugin for firefox.
Using that look for javascript errors and look in the Net tab for 404's etc.

#398 Re: User Discussion & Help » Background image or color » 2008-02-21 21:15:47

use pageStyle config item with body { background-color: xxxxx } style

#399 Re: User Discussion & Help » enter (Again I know) » 2008-02-21 21:14:09

In IE, not possible.  In Firefox, change mozParaHandler config as documented.

#400 Re: User Discussion & Help » Textarea Data doesn't get submitted? (using PHP) » 2008-02-12 08:59:50

Are you submitting with just your normal old form submit button?

Does your page validate, or at least come close?

Check especially you're not trying to do something like:

<table><form><tr>

or

<table><tr><form><td>

Board footer

Powered by FluxBB