denis4inet

Employees
  • Posts

    34
  • Joined

  • Last visited

Posts posted by denis4inet

  1. unsignedint,

     

    Here it is. (Other than modifying token, this is output as is from the console.)

    This was generated by first connecting to localhost:8889, then portforwarding remote one to localhost:8888. Accessing to localhost:8888 on other tab caused this to not function.

     

    Leave bug-report over ticketing system at syncapp.zendesk.com please. Try to more fully describe your problem, also leave link to forum post. Thanks.

  2. 1. [2014-03-28 02:22:52] ###.###.###.###:####: did not pick any blocks. blocking peer temporarily

    (I have hid the IP & port with #)

     

    This message mean that peer didn't have chunks for uploading to current host. File is splitted to pieces, pieces splitted to chunks.

     

     

    2. [2014-03-28 02:22:53] Torrent magnet (9659455dd897bc66b7f55751525f7a836ca5e4f2) status:137 error:<NULL> meta:0 conns:1 io:0

    (I have hid the actual hash with pseudo hash)

     

    3. [2014-03-28 02:22:55] Torrent \\?\D:\Archive\LP\DL\Proposal.pdf status:137 error:<NULL> meta:1 conns:1 io:0

    No matter, this is debug messages. There is no errors ("error: <NULL>").

  3. Dear badon, 

    Due to error message you need specify shared folder/folders in configuration file. 

    Try this config:

    {  "device_name": "FreeBSD BtSync",  "listening_port" : 0,                       // 0 - randomize port/* storage_path dir contains auxilliary app files   if no storage_path field: .sync dir created in the directory   where binary is located.   otherwise user-defined directory will be used*/// "storage_path" : "/home/user/.sync",// uncomment next line if you want to set location of pid file// "pid_file" : "/var/run/btsync/btsync.pid",  "check_for_updates" : true,  "use_upnp" : true,                              // use UPnP for port mapping/* limits in kB/s   0 - no limit*/  "download_limit" : 0,  "upload_limit" : 0,/* remove "listen" field to disable WebUI   remove "login" and "password" fields to disable credentials check*/  "webui" :  {    // "listen" : "0.0.0.0:8888",    "login" : "admin",    "password" : "password"  } ,  "shared_folders" :  [    {      //  use --generate-secret in command line to create new secret      "secret" : "AENBFDU4C3TRJGNXWBYSBMDCLEPSESAPO",		// * required field      "dir" : "/home/", 	// * required field      "use_relay_server" : true,  //  use relay server when direct connection fails      "use_tracker" : true,      "use_dht" : false,      "search_lan" : true,      "use_sync_trash" : true //  enable SyncArchive to store files deleted on remote devices    }  ]} 

    And change 

    "dir" : "/home/",

    to path to desired folder.

     

    I uncommented array "shared_folders" in your JSON configuration file.