Closed SobieskiCodes closed 6 years ago
if($_FILES['image']['size'] > ($max_image_size*8192) {
it should be, if($_FILES['image']['size'] > $max_image_size*8192) { small error but breaks the upload process..
if($_FILES['image']['size'] > $max_image_size*8192) {
Already fixed it up in 956262f
if($_FILES['image']['size'] > ($max_image_size*8192) {
it should be,
if($_FILES['image']['size'] > $max_image_size*8192) {
small error but breaks the upload process..