c-hri-s wrote:- Code: Select all
2011-06-20 09:45:13Z 4375 WARNING Died in request handling: Unsupported transfermode '33315' from card 'dads eyefi' (001122334455) at rifec.pl line 402
Ah, but this should be fixable.
The transfermode says which options have been enabled in the card configuration. What is triggering here is a sanity check in the code: rifec.pl can only save images to the local computer; it can not upload them to Flickr or anything else like that. So if the card has been configured to do other things with the images than just store them on your computer, rifec.pl won't accept the image, but will fail with this message. This is because we don't want to fool the card (or the user) into thinking we can do things with the image that we really can't.
So to get rid of this error, I would look in the card configuration tool and see if there are any other options enabled than the three basic ones (upload photos to computer, upload RAW files to computer, upload videos to computer), and disable them. There should be two of them (corresponding to the bit fields 2^0 and 2^15), and I would be interested to know which ones they are, so I can expand a bit on the
troubleshooting documentation.
(As a digression, I should also include a warning not to run network services such as this as root. Running it as a user with no other privilegies than writing to the image directory is usually considered a better approach. I use the following line in my /etc/rc.local:
- Code: Select all
su - eyefi -c "/usr/local/src/rifec/rifec.pl -d -c /usr/local/src/rifec/my.config"
. End of digression.)
Regards,
Kr.