0 votes
in Software by (490 points)

We have Enabled Live Syncher on a database, but the next Import and Next Export Labels on the bottom left side in syncher are showing as: Manual/Manual

the data will still sync to the live server, however, the sync will be scheduled every 1 minute and not live.

1 Answer

0 votes
by (180 points)
The id of Import and export in the settings table, the bool value it should be equal to1.

Perform the sql below and use the syncher (version 10.4.9 and upper).

update settings set boolvalue =1 where id='import'

update settings set boolvalue =1 where id='export'
...