Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (103 - 105 of 1173)

Ticket Resolution Summary Owner Reporter
#5556 no-action a 'make' invocation following one that fails to install "wheel" skips python packages installation Andrew
Description

if you run "make" and it fails to install wheel, you might run "make" again, but it skips the step of installing python packages.

#5558 fixed apache config files on wiki don't work Andrew
Description

These configurations for apache either cause a 500 error, or they send the browser into a 301 loop with the requested page.

for instance, this is the error produced by the wsgi method:

mod_wsgi (pid=26876): Target WSGI script '/srv/audio-video.gnu.org/mediagoblin/wsgi.py' cannot be loaded as Python module.
mod_wsgi (pid=26876): Exception occurred processing WSGI script '/srv/audio-video.gnu.org/mediagoblin/wsgi.py'.
Traceback (most recent call last):
  File "/srv/audio-video.gnu.org/mediagoblin/wsgi.py", line 29, in <module>
    application = loadapp('config:' + CONFIG_PATH)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 247, in loadapp
    return loadobj(APP, uri, name=name, **kw)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 271, in loadobj
    global_conf=global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 296, in loadcontext
    global_conf=global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 320, in _loadconfig
    return loader.get_context(object_type, name, global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 450, in get_context
    global_additions=global_additions)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 559, in _pipeline_app_context
    APP, pipeline[-1], global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 454, in get_context
    section)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 476, in _context_from_use
    object_type, name=use, global_conf=global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 406, in get_context
    global_conf=global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 296, in loadcontext
    global_conf=global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 328, in _loadegg
    return loader.get_context(object_type, name, global_conf)
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 620, in get_context
    object_type, name=name) 
  File "/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py", line 640, in find_egg_entry_point
    pkg_resources.require(self.spec)
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 943, in require
    needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 834, in resolve
    raise VersionConflict(dist, req).with_context(dependent_req)
[Wed Jan 31 15:49:02.681766 2018] [wsgi:error] [pid 26876:tid 139806997743360] [remote 2603:3005:71a:2ee0:1c3a:ff7c:b34d:53c9:60258] ContextualVersionConflict: (mock 1.3.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('mock==1.0.1'), set(['mediagoblin']))

I've also tried using the following config, but get a 301 redirect loop to the requested URL itself:

ProxyPass "/test" "fcgi://localhost:26543/"

A coworker managed to get the server past 500 errors with some configuration of the fcgi method, but we ended up with a redirect loop anyhow.

#5603 no-action Error when running dbupdate after adding audio media-type Andrew
Description

One of my coworkers is running into this issue while trying to add audio support to our GMG instance. I'm posting it for them because it's currently not possible to sign up for new accounts on this bug tracker. Thanks! : )


I am following these instructions for audio: https://mediagoblin.readthedocs.io/en/stable/siteadmin/media-types.html

We have video, image, and pdf media types enabled. I am trying to add audio. I have added the dependencies. I get an AssertionError when adding mediagoblin.media_types.audio under the [plugins] section of my mediagoblin_local.ini file.

"/srv/ccs-mediagoblin/mediagoblin/mediagoblin/db/migration_tools.py", line 132, in migrations_to_run

assert self.database_current_migration is not None

AssertionError

The full traceback is identical to this unanswered mailing list message: https://lists.mediagoblin.org/pipermail/devel/2019-March/003243.html

Version: gmg 0.9.0 stable

I think it is referencing the pdf version being 0 in the database.

psql mediagoblin psql (9.3.24) Type "help" for help.

mediagoblin=> SELECT * FROM coremigrations WHERE name='mediagoblin.media_types.pdf';

name | version


mediagoblin.media_types.pdf | 0

(1 row)

Changing 0 to 1 does not have an effect.

If I remove the mediagoblin.media_types.audio line from mediagoblin_local.ini, the ./bin/gmg dbupdate command completes.


I did some of my own research about this issue. I wonder if this is related to the following file being nearly empty:

mediagoblin.git/mediagoblin/media_types/audio/migrations.py

It contains only: "MIGRATIONS = {}", whereas the 'video' analog contains more.

Any insights into this issue are appreciated. Thanks! : )

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.