This is a message to developers and testers (no, I have not access to the tracking system, I do not know why and I am registered
Please install chamilo in a subfolder instead of on the root of the repository so the url should be, by example: http://localhost/chamilo-1.8.8.4/
Example of this problem: file: gradebook_functions.inc.php. Line: 572 aproximately.
$new_content_html = str_replace('/main/default_course_document',$path_image_in_default_course,$new_content_html);
$new_content_html = str_replace('/main/img/', api_get_path(WEB_IMG_PATH), $new_content_html);
In this case, they should be:
$new_content_html = str_replace($GLOBALS['_configuration']['url_append'] . '/main/default_course_document',$path_image_in_default_course,$new_content_html);
$new_content_html = str_replace($GLOBALS['_configuration']['url_append'] . '/main/img/', api_get_path(WEB_IMG_PATH), $new_content_html);
Thanks you very much.
