Skip to Content Skip to Menu

uddeIM 2.1 (stable) released

  • slabbi
  • slabbi
  • OFFLINE
  • Posts: 3709
  • Thanks: 250
  • Karma: 153
14 years 1 month ago #142310 by slabbi
Replied by slabbi on topic Re:uddeIM 2.1 (stable) released
The most common problem is that a third party SEF is used which makes troubles. Then the CSRF protection could also interfere with other components (if Captchas are enabled try also to turn them off).

UddeIM behaves like all other existing components, so there is no reason why you are logged out.

uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer

Please Log in or Create an account to join the conversation.

  • nokumo
  • nokumo
  • OFFLINE
  • Posts: 8
  • Thanks: 0
  • Karma: 0
14 years 1 month ago #142311 by nokumo
Replied by nokumo on topic Re:uddeIM 2.1 (stable) released
Ok, thank you! I will search for the Problem. Please tell me, is there a chance to log these problems? I know only the possibility to show this on the Frontend.

Please Log in or Create an account to join the conversation.

  • RedtopX
  • RedtopX
  • OFFLINE
  • Posts: 1
  • Thanks: 0
  • Karma: 0
14 years 4 weeks ago #142602 by RedtopX
Replied by RedtopX on topic Re:uddeIM 2.1 (stable) released
Hi, I am having problem install UDDIEM 2.1 in CB 1.2.3
when ever I install the com_uddeim.zip into CB Plugins
the error says could not find CB XML.

I tried this first in my localhost server before install in web server www root.
In my localhost it isntalled successfully. Why is it if ever I install the file in my webhost it always gives me error uploading?

anyhelp?
thanks in advance

Please Log in or Create an account to join the conversation.

  • boraa
  • boraa
  • OFFLINE
  • Posts: 1
  • Thanks: 0
  • Karma: 0
14 years 2 weeks ago #143350 by boraa
Replied by boraa on topic Re:uddeIM 2.1 (stable) released
to fix problem with autocompleter with chrome fallowed replacment in autocompleter2.js is needed (~179 line):
(in chrome el is array, but in firefox it is elElement)

[code:1] choiceOver: function(el) {
if (this.selected) this.selected.removeClass('autocompleter-selected');
if (el instanceof Array) {
this.selected = el[0].addClass('autocompleter-selected');
} else {
this.selected = el.addClass('autocompleter-selected');
}
//this.selected = el.addClass('autocompleter-selected');
},

choiceSelect: function(el) {
if (el instanceof Array) {
this.observer.value = this.element.value = el[0].inputValue;
} else {
this.observer.value = this.element.value = el.inputValue;
}
//this.observer.value = this.element.value = el.inputValue;
this.hideChoices();
this.fireEvent('onSelect', [this.element], 20);
},[/code:1]

Post edited by: boraa, at: 2010/10/04 03:40

Please Log in or Create an account to join the conversation.

  • slabbi
  • slabbi
  • OFFLINE
  • Posts: 3709
  • Thanks: 250
  • Karma: 153
14 years 2 weeks ago #143356 by slabbi
Replied by slabbi on topic Re:uddeIM 2.1 (stable) released
Hi,

thanks for the fix.

I updated the trunk accordingly.

uddeIM & uddePF Development
CB Language Workgroup
CB 3rd Party Developer

Please Log in or Create an account to join the conversation.

  • nokumo
  • nokumo
  • OFFLINE
  • Posts: 8
  • Thanks: 0
  • Karma: 0
14 years 1 week ago #143673 by nokumo
Replied by nokumo on topic Re:uddeIM 2.1 (stable) released
boraa wrote:

to fix problem with autocompleter with chrome fallowed replacment in autocompleter2.js is needed (~179 line):
(in chrome el is array, but in firefox it is elElement)

[code:1] choiceOver: function(el) {
if (this.selected) this.selected.removeClass('autocompleter-selected');
if (el instanceof Array) {
this.selected = el[0].addClass('autocompleter-selected');
} else {
this.selected = el.addClass('autocompleter-selected');
}
//this.selected = el.addClass('autocompleter-selected');
},

choiceSelect: function(el) {
if (el instanceof Array) {
this.observer.value = this.element.value = el[0].inputValue;
} else {
this.observer.value = this.element.value = el.inputValue;
}
//this.observer.value = this.element.value = el.inputValue;
this.hideChoices();
this.fireEvent('onSelect', [this.element], 20);
},[/code:1]

Post edited by: boraa, at: 2010/10/04 03:40


Can I change it even if no problems are known to me? Is this a fundamental problem which should be resolved with this?

Please Log in or Create an account to join the conversation.

Moderators: beatnantslabbikrileon
Powered by Kunena Forum