サーバーを変更した後、imagecreatefromjpegが機能しません。変更後にディレクトリの作成方法を変更しなければならなかったので、何らかの権限が原因である可能性があると思います。
これを修正する方法についての手がかりはありますか?
コード:
...
$imageFile = $_FILES['image']['tmp_name'];
list($width, $height) = getimagesize($imageFile);
echo "This gets written";
$src = imagecreatefromjpeg($imageFile);
echo "But not this:";
...