borg,
I have done a search and have come up with some general ideas, however I'm still a little lost. I know that the IIS Metadatabase limit is set at 28204800.
Knowing that, I made the following changes
database / tblConfiguration:
upload_img_size: 5000
upload_files_size: 50000
admin_upload_configure
<option<% If intMaxImageSize = 2000 Then Response.Write(" selected") %>>2000</option>
<option<% If intMaxImageSize = 2500 Then Response.Write(" selected") %>>2500</option>
<option<% If intMaxImageSize = 5000 Then Response.Write(" selected") %>>5000</option>
--- and ---
<option<% If intMaxFileSize = 10000 Then Response.Write(" selected") %>>10000</option>
<option<% If intMaxFileSize = 20000 Then Response.Write(" selected") %>>20000</option>
<option<% If intMaxFileSize = 50000 Then Response.Write(" selected") %>>50000</option>
Now, when I go to upload, I get the following errors:
RTE_popup_file_atch.asp
Microsoft VBScript runtime error '800a0006'
Overflow: 'CInt'
/client/RTE_popup_file_atch.asp, line 113
(which is: intMaxFileSize = CInt(rsCommon("Upload_files_size")))
--- and ----
admin_upload_configure.asp
Microsoft VBScript runtime error '800a0006'
Overflow: 'CInt'
/client/admin_upload_configure.asp, line 216
(which is
intMaxFileSize = CInt(rsCommon("Upload_files_size")))
So, I know i'm misunderstanding something. What am I missing though?