I've had a similar issue. Some of the changes in 1.8 include more RESTful routes and that might be causing problems with your backend.
For example, loading text used to be a POST request and it's now more correctly a GET one. Changing your routing accordingly server-side should handle these issues for you. Hope this helps. All the best, Tobie Blaster wrote: > I'm hoping commenting out this line in controls.js (Line 673) is ok: > > // parameters: 'editorId=' + > encodeURIComponent(this.element.id), > > I'm not sure if its a function i'm going to use. Codeignitor uses > segments to sort out its extra parameters to a page. Using a query > string just throws it off course. > > > On Dec 14, 3:30 pm, Blaster <[EMAIL PROTECTED]> wrote: > > ahh thats intersting thanks. > > > > When you say editorid parameter? does it append a querystring at the > > end in the form ?editorid=thread_25 > > > > if so is there a way of disabling this editorid thing? > > > > On Dec 14, 3:28 pm, Christophe Porteneuve <[EMAIL PROTECTED]> wrote: > > > > > Hey, > > > > > Blaster a �crit : > > > > > > The problem is with me trying to use loadTextURL. It just halts when i > > > > try and click on something to edit. It says Loading text.... and > > > > nothing else happens and the editbox is uneditable. Nothing seems to > > > > come up in the error console in firefox and the same is happening in > > > > IE. > > > > > I advise you to use Firebug's Ajax tracking ability to verify the > > > alternative text is indeed requested, and look into the details of the > > > response you get. Perhaps, for instance, your server-side script is > > > unhappy with the new automatic editorId parameter being sent? > > > > > -- > > > Christophe Porteneuve aka TDD > > > [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
