Comment 2 for bug 544393

Revision history for this message
scott_selberg (sselberg) wrote :

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;
?>