I have a site using Movable Type, and when trying to upload a picture to a post, the error showed up, and now the admin area only shows blank pages with that error message.
I read on a blog post in Japanese (via Google translate) and it mentions the mt-wizard.cgi, but I couldn't understand how to fix it.
Is is something that needs to be installed in the server? Any ideas of where I could possibly start?
The
looks_like_numbersubroutine needs to be included in your script.When the
use Scalar::Util qw(looks_like_number);is commented out, you'll get that error.Find the file that is giving you the error and add the
usestatement to it to include that subroutine and it should get you past that error at least.