Getting Plogger to Work with Gallery Remote
Tuesday, January 8th, 2008I use Plogger as my image gallery and enjoy it’s simplicity. I also use iView MediaPro to manage my images and have a simple script (contact me for details) that uploads selected images to my gallery on this blog. It’s been quite a while since I’ve tried to run the script and tonight, when I did, it failed.
The failing portion was galleryadd.pl and it was giving me:
Error: incorrect username/password
The resolution is simple: plog-remote.php makes a reference to a $config global that has not been defined. By including plog-load_config.php the gallery remote functionality works!
To fix, add:
require_once("plog-load_config.php");
after the require statements in plog-remote.php.



