I'm in the process of rolling out a new StyleCatcher repository, and on one of the styles I used as an initial test, it kept on not downloading one of the images all the way. Has anyone had any experience with this problem in the past?
Reported on Movable Type 4.2
It may be an issue with timeouts preventing StyleCatcher from running long enough to download the whole image. You might check the Apache error log to see if Apache killed the request. If you have the LWPx::ParanoidAgent perl module installed, we pretty aggressively prevent long requests in MT itself, also. For that reason, single images in the hundreds of KB are possibly beyond what we can support with StyleCatcher, at least right now.
Thanks for filing [a case][c] about this issue, too!
[c]: http://bugs.movabletype.org/default.asp?82114
Actually, it's not that :)
The solution is to change line 172 of lib/StyleCatcher/CMS.pm to read:
$app->new`ua({paranoid => 0, max_size => 500_000}); It's actually a max_size issue, though I could see the possibility of paranoidagent being an issue too.
.... that should be max underscore size => 500000