Hopes someone would have already done this ... hehe!
Got some projects in advance - but once they are done I will take a look into it!
Andreas
Search found 13 matches
- 2012-09-18 09:32
- Forum: MX Kollection - General Info
- Topic: IAK and PHP 5.4?!?
- Replies: 2
- Views: 12210
- 2012-09-17 13:58
- Forum: MX Kollection - General Info
- Topic: IAK and PHP 5.4?!?
- Replies: 2
- Views: 12210
IAK and PHP 5.4?!?
Hey there,
did anyone already manage to get IAK running on PHP 5.4?
Thank you
Andreas
did anyone already manage to get IAK running on PHP 5.4?
Thank you
Andreas
- 2012-06-26 11:11
- Forum: ADDT
- Topic: NXT-List/Forms with FF 4.0: Duplicate Record fails
- Replies: 5
- Views: 10880
Re: NXT-List/Forms with FF 4.0: Duplicate Record fails
for now I made a quick'n'dirty fix for this problem (with jQuery): Original: <input type="submit" class="KT_Insert1" name="KT_Insert1" value="<?php echo NXT_getResource("Insert as new_FB"); ?>" onclick="nxt_form_insertasnew(this, 'id_nws');"...
- 2012-06-26 10:10
- Forum: ADDT
- Topic: NXT-List/Forms with FF 4.0: Duplicate Record fails
- Replies: 5
- Views: 10880
Re: NXT-List/Forms with FF 4.0: Duplicate Record fails
Hi,
this happens on new FF versions on MAC too ... anyone managed to get this working?
Andreas
this happens on new FF versions on MAC too ... anyone managed to get this working?
Andreas
- 2011-08-24 14:12
- Forum: ADDT
- Topic: problem with new ImageMagick Versions
- Replies: 1
- Views: 4749
Re: problem with new ImageMagick Versions
working with version:
- 6.2.8
- 6.3.9
- 6.7.1 (latest version as of today)
not working with version:
- 6.5.4 (bundled with RHEL / Centos 6)
Seems like only the version bundled with RHEL / Centos 6 got this problem ... just in case someone else encounters this problem ...
- 6.2.8
- 6.3.9
- 6.7.1 (latest version as of today)
not working with version:
- 6.5.4 (bundled with RHEL / Centos 6)
Seems like only the version bundled with RHEL / Centos 6 got this problem ... just in case someone else encounters this problem ...
- 2011-08-24 13:51
- Forum: ADDT
- Topic: problem with new ImageMagick Versions
- Replies: 1
- Views: 4749
problem with new ImageMagick Versions
Hi there, it seems that there are problems with new ImageMagick Versions. Even if I can access Imagemagick without problems with PHP - I get only errors with tNG_DynamicThumbnail - guess it hast problems with the return codes from ImageMagick! Anyone else encountered this problem? Or maybe got a sol...
- 2011-08-01 15:29
- Forum: ADDT
- Topic: Dynamic Thumbnail - watermark positioning bug
- Replies: 0
- Views: 5152
Dynamic Thumbnail - watermark positioning bug
If you want to watermark images generated with tNG_DynamicThumbnail the positioning of the watermark is buggy ... you can't position it top/left or top/right ... (at least if you use imagemagick) How to fix: File: KT_image.class.php Find: $tmp['top']['left'] = $tmp['bottom']['left'] .= 'West'; $tmp[...
- 2011-03-22 17:29
- Forum: ADDT
- Topic: IAK / ADDT & IE9
- Replies: 2
- Views: 6177
Re: IAK / ADDT & IE9
can't edit my previous post?!?! anyway - please forget first approach ... guess the better one is this: /nxt/scripts/list.js - line 1057 - 1059 orig: 1057 if (document.all) { 1058 nullifyProperties(window); 1059 } modified: 1057 if (document.all) { 1058 if(is.ie && is.v == 9){ 1059 } else { ...
- 2011-03-22 13:39
- Forum: ADDT
- Topic: IAK / ADDT & IE9
- Replies: 2
- Views: 6177
Re: IAK / ADDT & IE9
was able to fix one of the biggest problems ... /nxt/scripts/list.js - line 1026 - 1029 orig: 1026 try { 1027 delete object[prop]; 1028 object[prop] = null; 1029 } fixed: 1026 try { 1027 if(object[prop]!=null && typeof prop == "object"){ 1028 delete object[prop]; 1029 object[prop] ...
- 2011-03-21 18:07
- Forum: ADDT
- Topic: IAK / ADDT & IE9
- Replies: 2
- Views: 6177
IAK / ADDT & IE9
Hello,
seems like the IAK / ADDT Tools are completely incompatible with IE9 ... anyone else noticed this?
Tried to get it working with IE9 - but no luck so far ... maybe some more advanced JS coder can hunt down the errors ...
Bye
Andreas
seems like the IAK / ADDT Tools are completely incompatible with IE9 ... anyone else noticed this?
Tried to get it working with IE9 - but no luck so far ... maybe some more advanced JS coder can hunt down the errors ...
Bye
Andreas