If something goes wrong
- I have problem uploading scorm package or other files
If you receive messages like: "_ERRORUPLOAD" or "imsmanifest.xml not found" you can check:
If SCORM pack is too big you can change the Max upload file size and other parameters in php.ini (check php configuration wiki or manual page). If you can't change the php.ini you can:
1) Upload a .zip pack with only the imsmanifest.xml
2) Enter in ftp and load all the files in the folders created in files/doceboLms/Scorm/
Other problems can be related to security configuration of php.ini (with safe_mode to = ON you can't use "fs" upload system but only "ftp" upload system) and also please veryfy if your ftp paramters in the config.php files are correct.
Simple problem can be related to directory writing persmission.
Someone experienced also some problem with .htaccess files during upoload (file is located in /files/ directory and other directories too), this for now has been experienced only with an Italian ISP (ARUBA). You can solve deleting the .htaccess files but you can have secutiry problems.
If imsmanifest.xml is not found that means that the file is not in the root of the .zip scorm pack.
- I can't see correctly encoded characters in platform or learning object
edit config.php and change the following parameters:
$GLOBALS['db_conn_names'] = 'utf8';
$GLOBALS['db_conn_char_set'] = 'utf8';
to the appropriate one, for instance:
$GLOBALS['db_conn_names'] = 'latin1';
$GLOBALS['db_conn_char_set'] = 'latin1';
- I don't have enough space on my server
Delete these folders:
upgrade/
install/
xml_language/
readmelicense/
- E-Mail sent are wrongly formatted
open file config.php and edit this variable:
$GLOBALS['mail_br'] = ''\r\n'';
to
$GLOBALS['mail_br'] = ''\n'';
or
$GLOBALS['mail_br'] = ''\r'';
- When i'm using scorm object I receive error like: xmldoc has no proprerties or other "strange" javascript POPUP
First turn off the debug mode in admin area/config/config/main option
If continue to display error:
It's a server issue regarding pear inclusion (Experienced, for example, in xampp) Please go on doceboCore/addons/soap/pear.php and empty the file from all the code without deleting.
- Server become so slow and sometimes freeze when i have lot of connections
Maybe apache have some connection limit and generate this error in error.log:
[error] server reached MaxClients setting, consider raising the MaxClients setting
You have to edit apache configuration files and rise connection limit to 150 or higher.