Page 2 of 2

Re: Dropbox sync with windows

Posted: August 24th, 2017, 10:57 am
by edwinfeliz
The first time I config sync with dropbox was successful and syncronization works, just the first time, never again i was unable to sync my files with dropbox in windows.

The next time that i try to sync, im getting this error:

Image

Im running windows 8.1 with internet explorer 11.
CSpro version 7.0.2.

This is my synchronization script:

Code: Select all

  function Sincronizar( )
     // connect to Dropbox
    if syncconnect(Dropbox) then

    // get the latest versions of the application files from Dropbox
    syncfile(GET,"/RDS_2017/Menu.pff");
    syncfile(GET,"/RDS_2017/EntryTRSX.pen");
    syncfile(GET,"/RDS_2017/EntryGTH.pen");
    syncfile(GET,"/RDS_2017/Menu.pen");

    // send the latest cases to Dropbox
    syncfile(PUT,"C:\RDS_2017\Data\C*.dat","/RDS_2017");
    syncfile(PUT,"C:\RDS_2017\Veri\V*.dat","/RDS_2017");
    syncfile(PUT,"C:\RDS_2017\Docz\Cupones*.xlsx","/RDS_2017/Cupones");
    syncdisconnect();

    endif;
  end;

Re: Dropbox sync with windows

Posted: August 24th, 2017, 11:34 am
by josh
To download the beta you can go to http://www.csprousers.org/beta/

That error means that the file Dropbox/RDS_2017/Menu.pff is missing from your Dropbox.

Josh

Re: Dropbox sync with windows

Posted: August 24th, 2017, 3:57 pm
by edwinfeliz
josh wrote:To download the beta you can go to http://www.csprousers.org/beta/

That error means that the file Dropbox/RDS_2017/Menu.pff is missing from your Dropbox.

Josh
Im pretty sure that the files exist in that directory. And im still getting this error.
Image

Re: Dropbox sync with windows

Posted: August 25th, 2017, 10:03 am
by josh
Make sure you have the right Dropbox. You could be logged into a different one. Also make sure the case (upper/lower) is correct when you specify the filename. It matters with Dropbox.

Re: Dropbox sync with windows

Posted: November 10th, 2021, 10:17 am
by ctpacheco
Hi,
I would like to know if there is a way to send all the questionnaires and not just the last ones filled using the command "PUT" with the DROPBOX?
Thanks
Carlos

Re: Dropbox sync with windows

Posted: November 10th, 2021, 7:37 pm
by Gregory Martin
Syncdata will send up any questionnaires that have been modified since the last sync, so you will get your desired behavior by default.