Pagina 10 di 11

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: martedì 18 agosto 2015, 18:36
da wave90
robyevolution ha scritto:ho reinstallato pyload sul nas ma non mi scarica i plugin, inoltre nella schermata principale mi esce scritto nessun aggiornamento disponibile, mentre nel log: Get it here: http://pyload.org/download ***
50 28.07.2015 17:59:39 INFO *** New pyLoad Version available *** eppure ho l'ultima versione... a qualcuno è capitato?
ho il tuo stesso problema :shock:

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: sabato 22 agosto 2015, 13:47
da wave90
sono riuscito a sistemate il problema che non fa gli aggiornamenti

il problema sta che pyload ha cambiato qualcosa nel link del aggiornamento

allora breve guida

cercate il file dentro alla cartella del vostro nas (i ho fatto tutto con webmin)
/volume1/@appstore/pyload/pyload/module/plugins/hooks
dentro a questa cartella troverete un file di nome UpdateManager.py
ho cancellato tutto il testo dentro a questo file e ho inserito la versione piu aggiornata

Codice: Seleziona tutto

# -*- coding: utf-8 -*-

from __future__ import with_statement

import os
import re
import sys

from operator import itemgetter

from module.network.RequestFactory import getURL
from module.plugins.Hook import Expose, Hook, threaded
from module.utils import save_join


# Case-sensitive os.path.exists
def exists(path):
    if os.path.exists(path):
        if os.name == 'nt':
            dir, name = os.path.split(path)
            return name in os.listdir(dir)
        else:
            return True
    else:
        return False


class UpdateManager(Hook):
    __name__    = "UpdateManager"
    __type__    = "hook"
    __version__ = "0.45"

    __config__ = [("activated"    , "bool"                         , "Activated"                                     , True              ),
                  ("mode"         , "pyLoad + plugins;plugins only", "Check updates for"                             , "pyLoad + plugins"),
                  ("interval"     , "int"                          , "Check interval in hours"                       , 8                 ),
                  ("autorestart"  , "bool"                         , "Automatically restart pyLoad when required"    , True              ),
                  ("reloadplugins", "bool"                         , "Monitor plugins for code changes in debug mode", True              ),
                  ("nodebugupdate", "bool"                         , "Don't check for updates in debug mode"         , False             )]

    __description__ = """ Check for updates """
    __license__     = "GPLv3"
    __authors__     = [("Walter Purcaro", "[email protected]")]


    # event_list = ["pluginConfigChanged"]

    SERVER_URL   = "http://updatemanager.pyload.org"
    VERSION      = re.compile(r'__version__.*=.*("|\')([\d.]+)')
    MIN_CHECK_INTERVAL = 3 * 60 * 60  #: 3 hours


    def pluginConfigChanged(self, plugin, name, value):
        if name == "interval":
            interval = value * 60 * 60
            if self.MIN_CHECK_INTERVAL <= interval != self.interval:
                self.core.scheduler.removeJob(self.cb)
                self.interval = interval
                self.initPeriodical()
            else:
                self.logDebug("Invalid interval value, kept current")

        elif name == "reloadplugins":
            if self.cb2:
                self.core.scheduler.removeJob(self.cb2)
            if value is True and self.core.debug:
                self.periodical2()


    def coreReady(self):
        self.pluginConfigChanged(self.__name__, "interval", self.getConfig('interval'))
        x = lambda: self.pluginConfigChanged(self.__name__, "reloadplugins", self.getConfig('reloadplugins'))
        self.core.scheduler.addJob(10, x, threaded=False)


    def unload(self):
        self.pluginConfigChanged(self.__name__, "reloadplugins", False)


    def setup(self):
        self.cb2      = None
        self.interval = self.MIN_CHECK_INTERVAL
        self.updating = False
        self.info     = {'pyload': False, 'version': None, 'plugins': False}
        self.mtimes   = {}  #: store modification time for each plugin


    def periodical2(self):
        if not self.updating:
            self.autoreloadPlugins()

        self.cb2 = self.core.scheduler.addJob(4, self.periodical2, threaded=False)


    @Expose
    def autoreloadPlugins(self):
        """ reload and reindex all modified plugins """
        modules = filter(
            lambda m: m and (m.__name__.startswith("module.plugins.") or
                             m.__name__.startswith("userplugins.")) and
                             m.__name__.count(".") >= 2, sys.modules.itervalues()
        )

        reloads = []

        for m in modules:
            root, type, name = m.__name__.rsplit(".", 2)
            id = (type, name)
            if type in self.core.pluginManager.plugins:
                f = m.__file__.replace(".pyc", ".py")
                if not os.path.isfile(f):
                    continue

                mtime = os.stat(f).st_mtime

                if id not in self.mtimes:
                    self.mtimes[id] = mtime
                elif self.mtimes[id] < mtime:
                    reloads.append(id)
                    self.mtimes[id] = mtime

        return True if self.core.pluginManager.reloadPlugins(reloads) else False


    def periodical(self):
        if not self.info['pyload'] and not (self.getConfig('nodebugupdate') and self.core.debug):
            self.updateThread()


    def server_response(self):
        try:
            return getURL(self.SERVER_URL, get={'v': self.core.api.getServerVersion()}).splitlines()

        except Exception:
            self.logWarning(_("Unable to contact server to get updates"))


    @threaded
    def updateThread(self):
        self.updating = True

        status = self.update(onlyplugin=self.getConfig('mode') == "plugins only")

        if status is 2 and self.getConfig('autorestart'):
            self.core.api.restart()
        else:
            self.updating = False


    @Expose
    def updatePlugins(self):
        """ simple wrapper for calling plugin update quickly """
        return self.update(onlyplugin=True)


    @Expose
    def update(self, onlyplugin=False):
        """ check for updates """
        data = self.server_response()

        if not data:
            exitcode = 0

        elif data[0] == "None":
            self.logInfo(_("No new pyLoad version available"))
            updates = data[1:]
            exitcode = self._updatePlugins(updates)

        elif onlyplugin:
            exitcode = 0

        else:
            newversion = data[0]
            self.logInfo(_("***  New pyLoad Version %s available  ***") % newversion)
            self.logInfo(_("***  Get it here: https://github.com/pyload/pyload/releases  ***"))
            exitcode = 3
            self.info['pyload'] = True
            self.info['version'] = newversion

        return exitcode  #: 0 = No plugins updated; 1 = Plugins updated; 2 = Plugins updated, but restart required; 3 = No plugins updated, new pyLoad version available


    def _updatePlugins(self, updates):
        """ check for plugin updates """

        if self.info['plugins']:
            return False  #: plugins were already updated

        exitcode = 0
        updated  = []

        url    = updates[0]
        schema = updates[1].split('|')

        if "BLACKLIST" in updates:
            blacklist = updates[updates.index('BLACKLIST') + 1:]
            updates   = updates[2:updates.index('BLACKLIST')]
        else:
            blacklist = None
            updates   = updates[2:]

        upgradable  = [dict(zip(schema, x.split('|'))) for x in updates]
        blacklisted = [(x.split('|')[0], x.split('|')[1].rsplit('.', 1)[0]) for x in blacklist] if blacklist else []

        if blacklist:
            # Protect UpdateManager from self-removing
            try:
                blacklisted.remove(("hook", "UpdateManager"))
            except ValueError:
                pass

            for t, n in blacklisted:
                for idx, plugin in enumerate(upgradable):
                    if n == plugin['name'] and t == plugin['type']:
                        upgradable.pop(idx)
                        break

            for t, n in self.removePlugins(sorted(blacklisted)):
                self.logInfo(_("Removed blacklisted plugin: [%(type)s] %(name)s") % {
                    'type': t,
                    'name': n,
                })

        for plugin in sorted(upgradable, key=itemgetter("type", "name")):
            filename = plugin['name']
            prefix   = plugin['type']
            version  = plugin['version']

            if filename.endswith(".pyc"):
                name = filename[:filename.find("_")]
            else:
                name = filename.replace(".py", "")

            #@TODO: Remove in 0.4.10
            if prefix.endswith("s"):
                type = prefix[:-1]
            else:
                type = prefix

            plugins = getattr(self.core.pluginManager, "%sPlugins" % type)

            oldver = float(plugins[name]['v']) if name in plugins else None
            newver = float(version)

            if not oldver:
                msg = "New plugin: [%(type)s] %(name)s (v%(newver).2f)"
            elif newver > oldver:
                msg = "New version of plugin: [%(type)s] %(name)s (v%(oldver).2f -> v%(newver).2f)"
            else:
                continue

            self.logInfo(_(msg) % {'type'  : type,
                                   'name'  : name,
                                   'oldver': oldver,
                                   'newver': newver})
            try:
                content = getURL(url % plugin)
                m = self.VERSION.search(content)

                if m and m.group(2) == version:
                    with open(save_join("userplugins", prefix, filename), "wb") as f:
                        f.write(content)

                    updated.append((prefix, name))
                else:
                    raise Exception, _("Version mismatch")

            except Exception, e:
                self.logError(_("Error updating plugin: %s") % filename, str(e))

        if updated:
            reloaded = self.core.pluginManager.reloadPlugins(updated)
            if reloaded:
                self.logInfo(_("Plugins updated and reloaded"))
                exitcode = 1
            else:
                self.logInfo(_("*** Plugins have been updated, but need a pyLoad restart to be reloaded ***"))
                self.info['plugins'] = True
                exitcode = 2
        else:
            self.logInfo(_("No plugin updates available"))

        return exitcode  #: 0 = No plugins updated; 1 = Plugins updated; 2 = Plugins updated, but restart required


    @Expose
    def removePlugins(self, type_plugins):
        """ delete plugins from disk """

        if not type_plugins:
            return

        removed = set()

        self.logDebug("Requested deletion of plugins: %s" % type_plugins)

        for type, name in type_plugins:
            rootplugins = os.path.join(pypath, "module", "plugins")

            for dir in ("userplugins", rootplugins):
                py_filename  = save_join(dir, type, name + ".py")
                pyc_filename = py_filename + "c"

                if type == "hook":
                    try:
                        self.manager.deactivateHook(name)

                    except Exception, e:
                        self.logDebug(e)

                for filename in (py_filename, pyc_filename):
                    if not exists(filename):
                        continue

                    try:
                        os.remove(filename)

                    except OSError, e:
                        self.logError(_("Error removing: %s") % filename, e)

                    else:
                        id = (type, name)
                        removed.add(id)

        return list(removed)  #: return a list of the plugins successfully removed
poi ho cancellato UpdateManager.pyc

ed ho riavviato il nas !

il bello di questo ultimo aggiornamento che pyload sui riavvia da solo quando aggiorna i plugin e cerca aggiornamenti ogni 8 ore

fatemi sapere se va anche a voi !

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: martedì 25 agosto 2015, 12:38
da davboc
Ragazzi come si fa a far funzionare la riconnessione con host come easybytez? Ho inserito uno script sh funzionante ma nel log di pyload mi dice "riconnessione disabilitata"... Può dipendere dallo script specifico per easybytez? Come si può risolvere?

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: giovedì 27 agosto 2015, 21:13
da batti38
davboc ha scritto:Ragazzi come si fa a far funzionare la riconnessione con host come easybytez? Ho inserito uno script sh funzionante ma nel log di pyload mi dice "riconnessione disabilitata"... Può dipendere dallo script specifico per easybytez? Come si può risolvere?
Ti succede solo con Esaybytez? In teroia l'host non dovrebbe c'entrare nulla.

A me non funziona più la riconnessione automatica, ed anche io ho uno script funzionante, ma scritto in python. Nel log di Pyload leggo "Reconnection start", ma non funziona.

Se anche a te non va potrebbe essere un problema di Pyload? Altri hanno questo problema?

@wawe90

Ottima guida, appena ho tempo proverò

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: giovedì 27 agosto 2015, 21:27
da davboc
batti38 ha scritto:
davboc ha scritto:Ragazzi come si fa a far funzionare la riconnessione con host come easybytez? Ho inserito uno script sh funzionante ma nel log di pyload mi dice "riconnessione disabilitata"... Può dipendere dallo script specifico per easybytez? Come si può risolvere?
Ti succede solo con Esaybytez? In teroia l'host non dovrebbe c'entrare nulla.

A me non funziona più la riconnessione automatica, ed anche io ho uno script funzionante, ma scritto in python. Nel log di Pyload leggo "Reconnection start", ma non funziona.

Se anche a te non va potrebbe essere un problema di Pyload? Altri hanno questo problema?

@wawe90

Ottima guida, appena ho tempo proverò
Innanzitutto ti ringrazio per la risposta, la stavo cercando da tempo... I permessi del file sh sono ok, se lo lancio da riga di comando funziona bene, non ho però provato con altri host come dici tu... Non è una cosa facile da provare, hai qualche idea? C'è qualche altra impostazione da controllare?

Grazie ancora

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: giovedì 27 agosto 2015, 22:05
da batti38
davboc ha scritto:
Innanzitutto ti ringrazio per la risposta, la stavo cercando da tempo... I permessi del file sh sono ok, se lo lancio da riga di comando funziona bene, non ho però provato con altri host come dici tu... Non è una cosa facile da provare, hai qualche idea? C'è qualche altra impostazione da controllare?

Grazie ancora

Siamo quasi nella stessa situazione. L'unica differenza è che io ho avuto il problema dopo una reinstallazione del DSM, quindi pensavo dipendesse da quello.

Anche il mio script funziona da riga di comando.

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: venerdì 28 agosto 2015, 0:01
da davboc
batti38 ha scritto:
davboc ha scritto:
Innanzitutto ti ringrazio per la risposta, la stavo cercando da tempo... I permessi del file sh sono ok, se lo lancio da riga di comando funziona bene, non ho però provato con altri host come dici tu... Non è una cosa facile da provare, hai qualche idea? C'è qualche altra impostazione da controllare?

Grazie ancora

Siamo quasi nella stessa situazione. L'unica differenza è che io ho avuto il problema dopo una reinstallazione del DSM, quindi pensavo dipendesse da quello.

Anche il mio script funziona da riga di comando.
Lo escludo perché il mio pyload è installato sul raspberry e scarica sul nas, speriamo qualcuno possa aiutarci

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: mercoledì 23 settembre 2015, 15:59
da odlan
wave90 ha scritto:sono riuscito a sistemate il problema che non fa gli aggiornamenti

il problema sta che pyload ha cambiato qualcosa nel link del aggiornamento

allora breve guida

cercate il file dentro alla cartella del vostro nas (i ho fatto tutto con webmin)
/volume1/@appstore/pyload/pyload/module/plugins/hooks
dentro a questa cartella troverete un file di nome UpdateManager.py
ho cancellato tutto il testo dentro a questo file e ho inserito la versione piu aggiornata

Codice: Seleziona tutto

# -*- coding: utf-8 -*-

from __future__ import with_statement

import os
import re
import sys

from operator import itemgetter

from module.network.RequestFactory import getURL
from module.plugins.Hook import Expose, Hook, threaded
from module.utils import save_join


# Case-sensitive os.path.exists
def exists(path):
    if os.path.exists(path):
        if os.name == 'nt':
            dir, name = os.path.split(path)
            return name in os.listdir(dir)
        else:
            return True
    else:
        return False


class UpdateManager(Hook):
    __name__    = "UpdateManager"
    __type__    = "hook"
    __version__ = "0.45"

    __config__ = [("activated"    , "bool"                         , "Activated"                                     , True              ),
                  ("mode"         , "pyLoad + plugins;plugins only", "Check updates for"                             , "pyLoad + plugins"),
                  ("interval"     , "int"                          , "Check interval in hours"                       , 8                 ),
                  ("autorestart"  , "bool"                         , "Automatically restart pyLoad when required"    , True              ),
                  ("reloadplugins", "bool"                         , "Monitor plugins for code changes in debug mode", True              ),
                  ("nodebugupdate", "bool"                         , "Don't check for updates in debug mode"         , False             )]

    __description__ = """ Check for updates """
    __license__     = "GPLv3"
    __authors__     = [("Walter Purcaro", "[email protected]")]


    # event_list = ["pluginConfigChanged"]

    SERVER_URL   = "http://updatemanager.pyload.org"
    VERSION      = re.compile(r'__version__.*=.*("|\')([\d.]+)')
    MIN_CHECK_INTERVAL = 3 * 60 * 60  #: 3 hours


    def pluginConfigChanged(self, plugin, name, value):
        if name == "interval":
            interval = value * 60 * 60
            if self.MIN_CHECK_INTERVAL <= interval != self.interval:
                self.core.scheduler.removeJob(self.cb)
                self.interval = interval
                self.initPeriodical()
            else:
                self.logDebug("Invalid interval value, kept current")

        elif name == "reloadplugins":
            if self.cb2:
                self.core.scheduler.removeJob(self.cb2)
            if value is True and self.core.debug:
                self.periodical2()


    def coreReady(self):
        self.pluginConfigChanged(self.__name__, "interval", self.getConfig('interval'))
        x = lambda: self.pluginConfigChanged(self.__name__, "reloadplugins", self.getConfig('reloadplugins'))
        self.core.scheduler.addJob(10, x, threaded=False)


    def unload(self):
        self.pluginConfigChanged(self.__name__, "reloadplugins", False)


    def setup(self):
        self.cb2      = None
        self.interval = self.MIN_CHECK_INTERVAL
        self.updating = False
        self.info     = {'pyload': False, 'version': None, 'plugins': False}
        self.mtimes   = {}  #: store modification time for each plugin


    def periodical2(self):
        if not self.updating:
            self.autoreloadPlugins()

        self.cb2 = self.core.scheduler.addJob(4, self.periodical2, threaded=False)


    @Expose
    def autoreloadPlugins(self):
        """ reload and reindex all modified plugins """
        modules = filter(
            lambda m: m and (m.__name__.startswith("module.plugins.") or
                             m.__name__.startswith("userplugins.")) and
                             m.__name__.count(".") >= 2, sys.modules.itervalues()
        )

        reloads = []

        for m in modules:
            root, type, name = m.__name__.rsplit(".", 2)
            id = (type, name)
            if type in self.core.pluginManager.plugins:
                f = m.__file__.replace(".pyc", ".py")
                if not os.path.isfile(f):
                    continue

                mtime = os.stat(f).st_mtime

                if id not in self.mtimes:
                    self.mtimes[id] = mtime
                elif self.mtimes[id] < mtime:
                    reloads.append(id)
                    self.mtimes[id] = mtime

        return True if self.core.pluginManager.reloadPlugins(reloads) else False


    def periodical(self):
        if not self.info['pyload'] and not (self.getConfig('nodebugupdate') and self.core.debug):
            self.updateThread()


    def server_response(self):
        try:
            return getURL(self.SERVER_URL, get={'v': self.core.api.getServerVersion()}).splitlines()

        except Exception:
            self.logWarning(_("Unable to contact server to get updates"))


    @threaded
    def updateThread(self):
        self.updating = True

        status = self.update(onlyplugin=self.getConfig('mode') == "plugins only")

        if status is 2 and self.getConfig('autorestart'):
            self.core.api.restart()
        else:
            self.updating = False


    @Expose
    def updatePlugins(self):
        """ simple wrapper for calling plugin update quickly """
        return self.update(onlyplugin=True)


    @Expose
    def update(self, onlyplugin=False):
        """ check for updates """
        data = self.server_response()

        if not data:
            exitcode = 0

        elif data[0] == "None":
            self.logInfo(_("No new pyLoad version available"))
            updates = data[1:]
            exitcode = self._updatePlugins(updates)

        elif onlyplugin:
            exitcode = 0

        else:
            newversion = data[0]
            self.logInfo(_("***  New pyLoad Version %s available  ***") % newversion)
            self.logInfo(_("***  Get it here: https://github.com/pyload/pyload/releases  ***"))
            exitcode = 3
            self.info['pyload'] = True
            self.info['version'] = newversion

        return exitcode  #: 0 = No plugins updated; 1 = Plugins updated; 2 = Plugins updated, but restart required; 3 = No plugins updated, new pyLoad version available


    def _updatePlugins(self, updates):
        """ check for plugin updates """

        if self.info['plugins']:
            return False  #: plugins were already updated

        exitcode = 0
        updated  = []

        url    = updates[0]
        schema = updates[1].split('|')

        if "BLACKLIST" in updates:
            blacklist = updates[updates.index('BLACKLIST') + 1:]
            updates   = updates[2:updates.index('BLACKLIST')]
        else:
            blacklist = None
            updates   = updates[2:]

        upgradable  = [dict(zip(schema, x.split('|'))) for x in updates]
        blacklisted = [(x.split('|')[0], x.split('|')[1].rsplit('.', 1)[0]) for x in blacklist] if blacklist else []

        if blacklist:
            # Protect UpdateManager from self-removing
            try:
                blacklisted.remove(("hook", "UpdateManager"))
            except ValueError:
                pass

            for t, n in blacklisted:
                for idx, plugin in enumerate(upgradable):
                    if n == plugin['name'] and t == plugin['type']:
                        upgradable.pop(idx)
                        break

            for t, n in self.removePlugins(sorted(blacklisted)):
                self.logInfo(_("Removed blacklisted plugin: [%(type)s] %(name)s") % {
                    'type': t,
                    'name': n,
                })

        for plugin in sorted(upgradable, key=itemgetter("type", "name")):
            filename = plugin['name']
            prefix   = plugin['type']
            version  = plugin['version']

            if filename.endswith(".pyc"):
                name = filename[:filename.find("_")]
            else:
                name = filename.replace(".py", "")

            #@TODO: Remove in 0.4.10
            if prefix.endswith("s"):
                type = prefix[:-1]
            else:
                type = prefix

            plugins = getattr(self.core.pluginManager, "%sPlugins" % type)

            oldver = float(plugins[name]['v']) if name in plugins else None
            newver = float(version)

            if not oldver:
                msg = "New plugin: [%(type)s] %(name)s (v%(newver).2f)"
            elif newver > oldver:
                msg = "New version of plugin: [%(type)s] %(name)s (v%(oldver).2f -> v%(newver).2f)"
            else:
                continue

            self.logInfo(_(msg) % {'type'  : type,
                                   'name'  : name,
                                   'oldver': oldver,
                                   'newver': newver})
            try:
                content = getURL(url % plugin)
                m = self.VERSION.search(content)

                if m and m.group(2) == version:
                    with open(save_join("userplugins", prefix, filename), "wb") as f:
                        f.write(content)

                    updated.append((prefix, name))
                else:
                    raise Exception, _("Version mismatch")

            except Exception, e:
                self.logError(_("Error updating plugin: %s") % filename, str(e))

        if updated:
            reloaded = self.core.pluginManager.reloadPlugins(updated)
            if reloaded:
                self.logInfo(_("Plugins updated and reloaded"))
                exitcode = 1
            else:
                self.logInfo(_("*** Plugins have been updated, but need a pyLoad restart to be reloaded ***"))
                self.info['plugins'] = True
                exitcode = 2
        else:
            self.logInfo(_("No plugin updates available"))

        return exitcode  #: 0 = No plugins updated; 1 = Plugins updated; 2 = Plugins updated, but restart required


    @Expose
    def removePlugins(self, type_plugins):
        """ delete plugins from disk """

        if not type_plugins:
            return

        removed = set()

        self.logDebug("Requested deletion of plugins: %s" % type_plugins)

        for type, name in type_plugins:
            rootplugins = os.path.join(pypath, "module", "plugins")

            for dir in ("userplugins", rootplugins):
                py_filename  = save_join(dir, type, name + ".py")
                pyc_filename = py_filename + "c"

                if type == "hook":
                    try:
                        self.manager.deactivateHook(name)

                    except Exception, e:
                        self.logDebug(e)

                for filename in (py_filename, pyc_filename):
                    if not exists(filename):
                        continue

                    try:
                        os.remove(filename)

                    except OSError, e:
                        self.logError(_("Error removing: %s") % filename, e)

                    else:
                        id = (type, name)
                        removed.add(id)

        return list(removed)  #: return a list of the plugins successfully removed
poi ho cancellato UpdateManager.pyc

ed ho riavviato il nas !

il bello di questo ultimo aggiornamento che pyload sui riavvia da solo quando aggiorna i plugin e cerca aggiornamenti ogni 8 ore

fatemi sapere se va anche a voi !
Scusa ma dove trovi UpdateManager.pyc ?? Io ho solo il file appena editato UpdateManager.py

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: sabato 3 ottobre 2015, 18:02
da Walter_83
Ciao, spero qualcuno sappia darmi qualche consiglio... da un pò di giorni ho problemi su pyLoad con Easybytez. Praticamente nonostante siano correttamente impostati account premium e DNS di Google il programma è come se non riuscisse a collegarsi ai server e il download dei files mi va in attesa. Poi alcune volte si collega e mi scarica (ultimamente cosa molto rara). Ovviamente se mi collego ad Easybytez da browser su pc nessun problema quindi non credo sia un problema loro. Non me ne intendo molto e a parte arrestare e riavviare tutto non so cosa provare, anche perchè fino a qualche tempo fa funzionava tutto regolarmente... non è che è uscita una nuova versione di pyLoad ?

Re: [GUIDA] Risolvere gli errori di pyLoad su DSM5

Inviato: sabato 3 ottobre 2015, 18:13
da davboc
Walter_83 ha scritto:Ciao, spero qualcuno sappia darmi qualche consiglio... da un pò di giorni ho problemi su pyLoad con Easybytez. Praticamente nonostante siano correttamente impostati account premium e DNS di Google il programma è come se non riuscisse a collegarsi ai server e il download dei files mi va in attesa. Poi alcune volte si collega e mi scarica (ultimamente cosa molto rara). Ovviamente se mi collego ad Easybytez da browser su pc nessun problema quindi non credo sia un problema loro. Non me ne intendo molto e a parte arrestare e riavviare tutto non so cosa provare, anche perchè fino a qualche tempo fa funzionava tutto regolarmente... non è che è uscita una nuova versione di pyLoad ?
prova a cancellare la cartella ".pyLoad/userplugins" e a riavviare pyload