I was trying to upload a file 10MBs in the "documents" but I get the error "ERROR: uploaded file was too big: max filesize: 3000000". I then tried a smaller file that was around 7MBs but still the same error. Would you be able to tell me where I can adjust this to accept larger file sizes?
Cheers,
Daz
upload_maxsize is a configuration value stored in the CONFIG table. We have not created an administration editor for the configuration values, so you will have to manually update the database using the following command:
exec dbo.spCONFIG_InsertOnly null, 'system', 'upload_maxsize' , '100000000';
or
update CONFIG set value = '100000000'where name = 'upload_maxsize'
Then reload the configuration in the SplendidCRM application:
http://localhost/splendidcrm/systemcheck.aspx?reload=1
Thanks for the quick response!
This one worked perfectly
then I reloaded it as you stated. Larger file uploads achieved! Thanks again.