cyanarnofsky

Members
  • Posts

    7
  • Joined

  • Last visited

cyanarnofsky's Achievements

New User

New User (1/3)

  1. Having issues with 1.1.40 on Linux I installed the correct linux version, have it running. The webGUI says it is 1.0.34 when I downloaded 1.1.40. I had run the older on a while back on this same server, webGUI different version than client? I am having issues with no sync, I have it installed on the Linux box and Windows. I can sync just fine between 2 windows machine (had this running between my linux and windows machine before on the older version, but now it wont connect between them) ??
  2. Positive, from the very moment I installed it I have not had a login prompt appear.
  3. maybe, never shows login prompt for me just goes right to UI?
  4. { "device_name": "My Sync Device", "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" } /* !!! if you set shared folders in config file WebUI will be DISABLED !!! shared directories specified in config file override the folders previously added from WebUI. */ /* , "shared_folders" : [ { // use --generate-secret in command line to create new secret "secret" : "MY_SECRET_1", // * required field "dir" : "/home/user/bittorrent/sync_test", // * required field // use relay server when direct connection fails "use_relay_server" : true, "use_tracker" : true, "use_dht" : false, "search_lan" : true, // enable sync trash to store files deleted on remote devices "use_sync_trash" : true, // specify hosts to attempt connection without additional search "known_hosts" : [ "192.168.1.2:44444" ] } ] */ // Advanced preferences can be added to config file. // Info is available in BitTorrent Sync User Guide. }
  5. 1: ./btsync --dump-sample-config > sync.conf Then used Nano to edit, tried "mypwd"}, that just gave me that same error: Error while parsing config file: Unexpected end of config file (are you missing '}') ? any ideas? I noticed someone sent previous person a non tabbed version that worked, possible get re up to pastebin? I used nano through terminal so that shouldn't be the problem....:/ ran it as a .conf and .json neither work with or without the comma. get this error in a code checker. Parse error on line 3: ...ening_port": 0, //0-randomizeport/*s ----------------------^ Expecting 'STRING'
  6. Just to clear, 1: ./btsync --dump-sample-config > sync.conf Then used Nano to edit, tried "mypwd"}, that just gave me that same error: Error while parsing config file: Unexpected end of config file (are you missing '}') ? any ideas? I noticed someone sent previous person a non tabbed version that worked, possible get re up to pastebin? I used nano through terminal so that shouldn't be the problem....:/ ran it as a .conf and .json neither work with or without the comma. get this error Parse error on line 3: ...ening_port": 0, //0-randomizeport/*s ----------------------^ Expecting 'STRING'
  7. Having same issue with no login prompt before webUI. Followed this from top to bottom. { "device_name": "***", "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/cyanarnofsky", // 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" : "***", "password" : "***" } /* !!! if you set shared folders in config file WebUI will be DISABLED !!! shared directories specified in config file override the folders previously added from WebUI. */ /* , "shared_folders" : [ { // use --generate-secret in command line to create new secret "secret" : "MY_SECRET_1", // * required field "dir" : "/home/user/bittorrent/sync_test", // * required field // use relay server when direct connection fails "use_relay_server" : true, "use_tracker" : true, "use_dht" : false, "search_lan" : true, // enable sync trash to store files deleted on remote devices "use_sync_trash" : true, // specify hosts to attempt connection without additional search "known_hosts" : [ "192.168.1.2:44444" ] } ] */ // Advanced preferences can be added to config file. // Info is available in BitTorrent Sync User Guide. } Start using: ./btsync --config ./btsync.conf ( I know it is using the config due to name) but I still go directly into the UI no prompt. I tried adding the comma after the pwd but I get that same error Error while parsing config file: Unexpected end of config file (are you missing '}') ? Thanks for any help