NetTalk Central

Author Topic: Redactor oesn't work in NetTalk 7.06  (Read 3227 times)

Matthew

  • Full Member
  • ***
  • Posts: 137
    • View Profile
    • Email
Redactor oesn't work in NetTalk 7.06
« on: March 06, 2013, 01:35:25 AM »
Hello Bruce

My Clarion version: 9759
My NetTalk version: 7.06

After upgrade NetTalk from 7.05 to 7.06 Redactor stop working (doesn't show up).

I also checked it in Your example number 36 (HTMLEditor) - the same effect.

Regards,
Matthew

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Redactor oesn't work in NetTalk 7.06
« Reply #1 on: March 06, 2013, 02:45:27 AM »
thanks - fixed in 7.07

the fix is quite straight-forward so if you want to fix it in your 7.06 you can.

open \clarion8\accessory\libsrc\win\netweb.clw

search for the

NetWebServerWorker.SetOption

method.

search for the line

if numeric(pValue)  and sub(pValue,1,1) <> '"'

change that to

if numeric(pValue)  or sub(pValue,1,1) = '"'

There are two instances of that line in that method, and both must be changed as above.

Cheers
Bruce
« Last Edit: March 06, 2013, 02:57:17 AM by Bruce »

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: Redactor oesn't work in NetTalk 7.06
« Reply #2 on: March 15, 2013, 06:24:13 AM »
Is this only for C8?  No such file exists in C:\clarion6\3rdparty\libsrc\win\

Using NT 7.06 C6 ABC

Thanks.

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Redactor oesn't work in NetTalk 7.06
« Reply #3 on: March 15, 2013, 10:28:20 AM »
in C6 it would be in

\clarion6\libsrc\netweb.clw

cheers
Bruce