Unable to add Gallery2 gallery to F-Spot
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
f-spot (Ubuntu) |
New
|
Low
|
Unassigned |
Bug Description
Binary package hint: f-spot
It is impossible to problem access Gallery2 (2.3.1) with Remote plugin (1.0.18 and enabled) via F-Spot (0.6.1.5-ubuntu1) on Ubuntu 9.10.
When accessing the Gallery with such information:
gallery name: Gallery
URL: http://
username: admin
password: mypass
F-Spot says, that it cannot connect to a gallery for which the version is unknown. One should check that Remote plugin 1.0.8 or later is installed.
F-Spot started from a terminal with --debug says (when selecting an image):
[Debug 19:13:29.600] open uri = file://
error parsing 0000:00:00 00:00:00
System.
Parameter name: Parameters describe an unrepresentable DateTime.
at System.
at System.
at FSpot.Tiff.
at FSpot.Tiff.
at FSpot.Tiff.
When trying to export the image, it says:
(/usr/lib/
Detecting Gallery version
Detected: VersionUnknown
Detecting Gallery version
Detected: VersionUnknown
When extending the URL with /main.php (which exists in the Gallery2 installation), F-Spot pops up the following message:
"The following error was encountered while attempting to log in: Unhandled exception"
In the terminal it says:
(/usr/lib/
Detecting Gallery version
Detected: Version2
Gallery created: GalleryRemote.
Gallery2: Attempting to login
That is all what happens. The dialog with the login information is still there and in the plugin's maindialog no albums appear.
ProblemType: Bug
Architecture: i386
Date: Mon Mar 22 19:28:32 2010
DistroRelease: Ubuntu 9.10
NonfreeKernelMo
Package: f-spot 0.6.1.5-0ubuntu1
ProcEnviron:
PATH=(custom, user)
LANG=en_US.UTF-8
SHELL=/bin/bash
ProcVersionSign
SourcePackage: f-spot
Uname: Linux 2.6.31-20-generic i686
Changed in f-spot (Ubuntu): | |
importance: | Undecided → Low |
When F-Spot tries to connect, it tries to detect V2 by quering http:// .../gallery_ remote2. php and is expecting to get back "HTTP/1.0 404 Not Found". Ubuntu is currently returning "HTTP/1.1 404 Not Found" which doesn't match and the check errors out.
To work around. Create gallery_remote2.php in the gallery2 folder with the following
<?php
header("HTTP/1.0 404 Not Found");
exit;
?>