You are not logged in.
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....
Xinha is not the solution you are seeking. Xinha is for providing a WYSIWYG HTML Editor inside a web browser.
Ensure your page validates, specifically
<table><form><tr>or
<table><tr><form>are both invalid and known to cause this issue sometimes.
You are looking for the XinhaHere! Firefox plugin. Search for it, it's not maintained by us.
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.
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';
*
*************************************************************************/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';
*
************************************************************************/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
You should override the _insertImage method of the Xinha object.
See ImageManager plugin image-manager.js around line 82 for example.
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.
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.
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);There is none. Read one of the simpler plugins and learn by example.
Please read the Newbie Guide on the wiki.
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.
I would not recommend using Xinha in this manner. But you can look in the config at the baseHref config option from memory.
Follow the newbie guide. In step 3 of your init method you would put your call to stylistLoadStylesheet
my_xinha.setHTML('whatever');
EFM images_url config variable.
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.
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.
use pageStyle config item with body { background-color: xxxxx } style
In IE, not possible. In Firefox, change mozParaHandler config as documented.
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>