Just to keep everyone in the loop- I THINK I have a fix in- whether it’s the permanent solution I’m not sure, as there are a number of ways to attack the problem.
If you’re running into it on a Windows box- try editing system/codeigniter/system/libraries/image_lib.php around line 209
else
{
if (strpos($this->new_image, '/') === FALSE && strpos($this->new_image, '\\') === FALSE)
{
$this->dest_folder = $this->source_folder;
$this->dest_image = $this->new_image;
}I added in the && strpos($this->new_image, ‘\\’) === FALSE bit. Basically, it was reading the path to the new image as an image name due to the fact it was looking for a forward slash only.
Again- I need to ponder a bit whether this is where we want to change things. But it should get you up and running in the short term. Let me know if you’re still having an issue (could be a lot at play, but worked on bgarrant’s test site issue.)