• 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 22
Release Dropbox addon
You'll have to adjust the addon.xml file to read 0.9.6b


Sent from my iPhone
Reply
I just installed the zip file to my normal Dropbox app. It's not in dbmc because I can't get it to open. Keep getting error. I hope I. Not confusing you. Sorry if I am. I'm in no way a developer or Bill gates.
Reply
I'll send you my version. In the meantime open a archive.org account. It makes installing zips a breeze.


Sent from my iPhone
Reply
Ok.
Email
[email protected]
Reply
Sorry but when I try to reply to your post let's chat on here it says I'm not allowed. I created a archive.org account thou
Reply
Okay. I'll email the zip to you.


Sent from my iPhone
Reply
Is is possible to manually edit the settings to use the special:// paths instead of the /storage/.kodi etc or c:\Users\username\appdata\roaming kodi to be able to synchronize machines running on different platforms?? I want to sync even the dbmc settings so that if I change one, they all change.
Reply
Can some body send me working dbmc zip please would appreciate it, [email protected], thank you.
Reply
Here is the link to Dbmc version 0.9.3. I actually called it 0.9.6b in the addon.xml, so when 0.9.7 comes out it will get overwritten. I take no responsibility for this addon and am NOT the developer. Install at your own risk.

https://www.dropbox.com/s/j35j8iuxr7jnku...b.zip?dl=1
Reply
Is there a way to rollback using a firestick? I used esfile explorer to install kodi first time. Hoping to figure out a way to fix this quickly. Thank you all!
Reply
Add this source and install from zip.
http://archive.org/download/Ryansrepo


Sent from my iPhone
Reply
I had urllib3 problem as well while installing on kodi 12.5

output of
Code:
python -c "import sys; print(sys.path)"

['', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages/PIL', '/usr/lib/pymodules/python2.7']

so I have installed the library by:

Code:
apt-get install python-urllib3

and then edited the code in /home/pi/.kodi/addons/plugin.dbmc/resources/lib/dropbox/rest.py

from:
Code:
try:
   import urllib3
   except ImportError:
      raise ImportError('Dropbox python client requires urllib3.')
to:

Code:
try:
   import urllib3
except ImportError:
   try:
      import requests.packages.urllib3 as urllib3
   except ImportError:
      raise ImportError('Dropbox python client requires urllib3.')
as suggested here

The above solves the urllib3 library problem and I was able to follow the procedure until "

" Select/click on the "Finish adding account..." list item."

However.. a new error appears at this point:

Code:
..
Error Type: <type 'exceptions.TypeError'>
Error Contents: __init__() got an unexpected keyword argument 'ssl_version'
..

which sounds like a compatibility error

I hope this could be helpful
Reply
(2016-09-23, 05:46)ed_davidson Wrote: Add this source and install from zip.
http://archive.org/download/Ryansrepo


Look at this iPhone porn!

Thank you!!! This did the trick. Cant tell you how much i appreciate it!!!
Reply
(2016-09-23, 05:46)ed_davidson Wrote: Add this source and install from zip.
http://archive.org/download/Ryansrepo


typie typie on iPhone

It also fixed it for me. Thank you for your help.
Reply
Hi there. Absolutely love this app; thanks to the creators for this.

The plan with my OSMC Pi 3 setup is to synchronise pictures from Dropbox and display them in slideshow on a TV. So far this is working perfectly with the built in OSMC slideshow. But what I would like is for the slideshow to be able to change according to changes in the Dropbox folder. So if I add or delete pictures in Dropbox on another PC, the Pi would synchronise and the slideshow would change without having to access the Pi and restart the slideshow.

Does anyone know of any slideshow apps, or any scripts, that might do this?
Reply
  • 1
  • 15
  • 16
  • 17(current)
  • 18
  • 19
  • 22

Logout Mark Read Team Forum Stats Members Help
Dropbox addon2