Summary: | "Invalid response" error when exporting images | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | lenz |
Component: | Plugin-WebService-Piwigo | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles, colin, frederic.coiffier |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.1.0 | |
Sentry Crash Report: |
Description
lenz
2006-03-20 12:48:12 UTC
wrong product Hi Latest SVN removes support for Gallery 1.5 and adds support for Gallery 2. I hope this is not a problem for you and that you are able to upgrade to Gallery 2 (it's way nicer IMO!). Hopefully this new release will fix things for you (assuming you u/g G2). Col. We have decided to support G1 also in the gallery plugin so I am just correcting my last statement about G1 support being removed. I will test shortly and see this code still works OK and if I can recreate this error. Reassign to me - I'll take a look and see if I can recreate. I should understand you're kde developer now shouldn't I? :) Angelo Indeed you should Angelo :) I have replicated this bug and will fix it before the next release. SVN commit 547312 by cguthrie: Fix the invalid response error when uploading photos to gallery1. It would appear G1 is outputting some information stating that it is resizing the uploaded image and prevents us properly detecting the #__GR2PROTO__ trigger. BUG: 123978 M +5 -1 gallerytalker.cpp --- trunk/extragear/libs/kipi-plugins/galleryexport/gallerytalker.cpp #547311:547312 @@ -600,7 +600,11 @@ if (!foundResponse) { - foundResponse = line.startsWith("#__GR2PROTO__"); + // Gallery1 sends resizing debug code sometimes so we + // have to detect things slightly differently + foundResponse = (line.startsWith("#__GR2PROTO__") + || (line.startsWith("<br>- Resizing") + && line.endsWith("#__GR2PROTO__"))); } else { In what release was this to be fixed? In current deb testing / kipi-plugins v. 0.1.2-3 there exists a checkbox for selecting gallery2. Furthermore, while I do receive the invalid response error, the upload itself succeeds. Thanks. --Harley Hmm, I thought this was fixed before 0.1.2 was released. Could be wrong there tho' as just going from memory, but certainly this fix is in the 0.1.3rc that is currently out. If you still get a problem, please let me know as I'll need to readdress it if there is another bug. |