D daddeaux Chevereto Member Jan 15, 2012 #1 I really like your software. I have played around with a little the last few days and have a question. I see the in the config file the max MB size and resize setting. Can I hard code the resize setting so as to have all images resized to 640 px or so? thanks
I really like your software. I have played around with a little the last few days and have a question. I see the in the config file the max MB size and resize setting. Can I hard code the resize setting so as to have all images resized to 640 px or so? thanks
Rodolfo 👑 Chevereto Godlike Chevereto Staff Administrator Jan 15, 2012 #2 Yes, you can force to always resize. Open /upload.php and force the size here: PHP: $to_resize = $_POST['resize']; You can use for instance... PHP: $to_resize = 640 You can tell to resize if the user doesn't put the value, or force allways that value, etc.
Yes, you can force to always resize. Open /upload.php and force the size here: PHP: $to_resize = $_POST['resize']; You can use for instance... PHP: $to_resize = 640 You can tell to resize if the user doesn't put the value, or force allways that value, etc.
D daddeaux Chevereto Member Jan 15, 2012 #3 I made the change as shown below.. //$upload->resize_width = $to_resize; $upload->resize_width = 640; not the same but it works. Thanks
I made the change as shown below.. //$upload->resize_width = $to_resize; $upload->resize_width = 640; not the same but it works. Thanks