Re: Changing Image Upload Size
//1024 bytes = 1kb
//1024000 bytes = 1mb
$image_folder_name = "classipress";
$size_bytes = 1024000;
$size_mb = $size_bytes / 1024000;
$limitedext = array(".gif",".png",".jpg",".jpeg");
in the above code, "//1024000 bytes = 1mb", is this where I change "1mb" to say 3/4 to increase image size? If so, is there anything else I need to do.? Thanks.