Can anyone answer these 2 questions?
-Is there a way to limit the sizes of image files that can be uploaded in the image upload to appear
on web pages?
-Is there a way to allow uploading image files to appear on web pages but disable the file upload
feature of when creating a link?
thanks, Ron
-Is there a way to limit the sizes of image files that can be uploaded in the image upload to appear
on web pages?
-Is there a way to allow uploading image files to appear on web pages but disable the file upload
feature of when creating a link?
thanks, Ron

Re: Is there a way to limit upload image file size?
No, you have to write it yourself
I don't understand what you want.
Anyway, the answer is probably that you should look carefully at the configuration files.
A simple workaround
modify filemanager/upload/php/upload.php
Insert after
// Get the uploaded file name extension.
$sFileName = $oFile['name'] ;
The following lines:
$filesize = ($_FILES["NewFile"]["size"] / 1024);
if ($filesize>50)
SendResults( '1', '', '', 'Image not uploaded, higher than 50k('.$filesize.")");
filemanager/default/connectors/php/commands.php
After
$oFile = $_FILES['NewFile'] ;
Add:
$filesize = ($_FILES["NewFile"]["size"] / 1024);
And then modify a few lines below:
if ( $filesize<50 && ( count($arAllowed) == 0 || in_array( $sExtension, $arAllowed ) ) && ( count($arDenied) == 0 || !in_array( $sExtension, $arDenied ) ) )