CremeEgg, try this.
delete your armory/images folder (don't delete the armory folder), hopefully you do not need to get your host involved due to permission issues.
open up functions_wowcharcode.php and find the line
Code:
mkdir($full_image_path ,0777,true);
Replace that line with all of the following
Code:
$dirs = explode("/",dirname($image_loc));
$path = DIR . "/" . $localpath;
foreach ($dirs AS $element)
{
$path .= $element . "/";
@mkdir($path ,0777,true);
if(!chmod($path,0755))
{
echo "error chmod'ing $path";
}
}