Fotomoto needs to access your images
You can have Fotomoto work with your password protected site, you just have to allow our servers to access your site.
Below is an example for those using Apache basic authentication. If you're using something else, you'll need to otherwise allow or "whitelist" requests from "fotomoto.com".
Basic authentication example
If you're using Apache basic authentication, the following code can be used in your .htaccess file. Important: the path specified for AuthUserFile needs to point to your .htpasswd file.
AuthName "Restricted Area" AuthType Basic AuthUserFile /path/.htpasswd AuthGroupFile /dev/null Satisfy any <Limit POST GET> order deny,allow deny from all allow from *.fotomoto.com require valid-user </Limit>
