Custom Query (1174 matches)
Results (397 - 399 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #980 | cant-reproduce | Registration (not) disabled | ||
| Description |
From: https://wiki.mediagoblin.org/Live_instances
Links to page and page /register/ should not be available. |
|||
| #981 | fixed | Unhandled Exception when using LDAP plugin | ||
| Description |
We are using the LDAP plugin for authentication. However, when we enable LDAP, after entering username and password, the site returns with == Unhandled Exception == An unhandled exception was thrown by the application. Pretty ugly...Proper error management and a nice error message at least would help because now we are stuck because we don't know if the config is wrong or there is a problem with mediagoblin. Here's the config: [plugins]
[[mediagoblin.plugins.geolocation]]
#[[mediagoblin.plugins.basic_auth]]
[[mediagoblin.media_types.image]]
[[mediagoblin.plugins.ldap]]
[[[server1]]]
LDAP_SERVER_URI = 'ldap://10.10.10.7:389'
LDAP_BIND_DN = 'cn=admin,dc=<HIDDEN>,dc=cc'
LDAP_BIND_PW = '<HIDDEN>'
LDAP_USER_DN_TEMPLATE = 'cn={username},ou=Users,dc=<HIDDEN>,dc=cc'
EMAIL_SEARCH_FIELD = 'mail'
The log file only prints: 2014-09-28 19:37:01,106 INFO [mediagoblin.plugins.ldap.tools] Connecting to ldap://10.10.10.7:389. 2014-09-28 19:37:01,106 INFO [mediagoblin.plugins.ldap.tools] Unbinding ldap://10.10.10.7:389. So it seems it DOES connect to LDAP but for some reason it fails. Using mediagoblin 0.7.1 |
|||
| #982 | fixed | Database migrations no longer work | ||
| Description |
Since the python 3 merge, database migrations no longer work. To produce the error you should run -> Updating main mediagoblin tables:
+ Running migration 19, "drop_MediaEntry_collected"... Traceback (most recent call last):
File "./bin/gmg", line 9, in <module>
load_entry_point('mediagoblin==0.7.2.dev', 'console_scripts', 'gmg')()
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/gmg_commands/__init__.py", line 130, in main_cli
args.func(args)
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/gmg_commands/dbupdate.py", line 160, in dbupdate
run_dbupdate(app_config, global_config)
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/gmg_commands/dbupdate.py", line 128, in run_dbupdate
run_all_migrations(db, app_config, global_config)
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/gmg_commands/dbupdate.py", line 155, in run_all_migrations
migration_manager.init_or_migrate()
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/db/migration_tools.py", line 286, in init_or_migrate
migration_func(self.session)
File "/Users/jessica/Documents/Workspace/mediagoblin/mediagoblin/db/migrations.py", line 724, in drop_MediaEntry_collected
media_collected.drop()
File "build/bdist.macosx-10.9-x86_64/egg/sqlalchemy/sql/expression.py", line 2855, in __getattr__
AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'drop'
The version of SQLAlchemy that I'm using is: 0.8.7 |
|||
