Hi!
The maximum size of files to upload is not handled in ILIAS but in the php.ini of your server. 8MB is the default value of PHP. But if you want to publish SCORM modules or videos, this size is far to small. To change it, open the php.ini file of your installation. You can see where it is stored if you enter Administration of ILIAS and select the tab "Server Data". Scroll down an you find the PHP info page included. At the beginning of this long page there is a row called
Code:
Configuration File (php.ini) Path
If you go there and open the file php.ini you have to look for
Code:
upload_max_filesize
Change it to a higher value, e.g. 64M - or even higher depending of your SCORM files - , save it and restart your Apache web server to activate the changes.
From now on, you will be able to upload files until the size defined in upload_max_filesize.
If you change php.ini, you should also increase the value for
Code:
post_max_size
which defines the maximum size of a post action. I use the same value for post_max_size and upload_max_filesize.
Since ILIAS 4 there is also another way to upload big SCORM packages, see
http://www.ilias.de/docu/goto_docu_wiki ... pload.html. But to be honest, I haven't used it yet.
Best regards,
Matthias