ErrorCodes
This eventually should be an exhaustive list of error codes that the plugin can display, what they mean, and how to fix them.
I'm aware that it doesn't speak highly of my programming that users see obtuse error codes in the first place, so sue me. :) -zwily
Error 1000
I have seen this error occasionally when iPhotoToGallery is fetching the album list. It tends to happen when the load on my server is very high, and my assumption is that the server can't process the request quickly enough.
Error 1001
-This is a really broad error that means that the plugin didn't like something it got back from Gallery. It may be related to new versions of Gallery.
-Check you php.ini for disable_functions. The plugin needs exec(). You have to remove exec from the disable_function.
-I found that this error ocurred when I attempted to login using the default admin account within Gallery 2.1.1. I created a new account and placed it in the admin group and everything now works.
-The Support.Suggestions page mentioned that a security update to the Gallery remote protocol broke iPhoto2Gallery. In accordance with a tip on that page, I was able to resolve this error by upgrading my Gallery's Remote module plug-in.
-I kept getting this with dreamhost. i'm fairly certain I had the newest version of the Remote plugin, but on a whim I uninstalled and deleted it and then installed the newest version, and my problems were solved! get the newest version here: http://codex.gallery2.org/Gallery2:Download#Modules
Error 1002
I got this error when I had upload_max_filesize set high enough but still needed to increase post_max_size in my php.ini file.
Status: Failed. Could not upload.
This message appeared on my machine after I upgraded my Linux web server from Fedora Core 5 (sucky) to SuSE 10.1 (awesome). It turned out that I still had the maximum uploadable file size set to the default two megabytes. In my php.ini file I set upload_max_filesize = 20M and restarted Apache. Now it works again.
