That's Fantastic! It's allowing the uploads to work as expected and defined. I added a 3rd resize...
1. Full untouched file
2. Resize height only to 500
3. Create Thumbnail at 50x50
Three files created perfectly... That's a wonderful feeling! :) Thank you so very much!
Ok, one little oddity... I am also writing some file details related to the original untouched image... I store (3) properties to SQL ( Size, Width and Height ). I am getting the following information
5477698 (storing this information for a 5.22MB file)
-1 (storing for width)
-1 (storing for height)
it should be storing... 3420x2280
The SQL fields for height and width are set up as int(5) each.
The UE4 upload behavior / WA DataAssist record update are setup this way...
<?php echo $WA_DFP_UploadStatus["WA_UploadResult1"]["fileSize"]; ?>
<?php echo $WA_DFP_UploadStatus["WA_UploadResult1"]["WA_UploadResult1_1"]["imageWidth"]; ?>
<?php echo $WA_DFP_UploadStatus["WA_UploadResult1"]["WA_UploadResult1_1"]["imageHeight"]; ?>
Seems to be consistent in refusing to store the Width and Height.