Hi Dave,
I, too, am new at TYPO3 and found this issue extremely frustrating. It would seem that there are actually 3 places that control file size, the two mentioned above plus in each extension's tca.php file. The Sermon Manager is supposed to be looking at the file size set in the localconfig.php file but even when the file size in my localcongif.php file was set to 60000k, I still got that file size error message. So this is how I got around that. I changed the SMS tca.php file to not look at the localconfig.php for the maz file size and I put my own in there as follows:
'file' => Array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:wec_sermons/locallang_db.php:tx_wecsermons_resources.file', 'config' => Array (
'type' => 'group',
'internal_type' => 'file',
'allowed' => '', // Must be empty for disallowed to work. 'disallowed' => 'php,php3',
/*'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],*/ 'max_size' => 60000,
'uploadfolder' => $extConf['resourceUploadPath'],
You can see the original line of code that I commented out. I added the line that follows it and things have been fine ever since.
Hope this helps,
Sandra