Dear forum visitors, if the support forum is not available, please try again a few minutes later. Thanks!
QuoteCOM_JDOWNLOADS_BACKEND_EDIT_LANG_CSS_FILE_WRITABLE_INFO="In order to save new settings, the file must be writable. You have to change the access rights of the file to 'CHMOD 0755'. See FAQ on setting file access rights."
QuoteCOM_JDOWNLOADS_BACKEND_EDIT_LANG_CSS_FILE_WRITABLE_INFO="Um Änderungen an der Datei speichern zu können, muss diese beschreibbar sein. Ändern Sie mit einem FTP-Programm die Zugriffsrechte für diese Datei auf CHMOD 0766."
/* replace bullet */
.com-content-article__body ul{
list-style-type: none;
}
.com-content-article__body li:before {
font-family: "Font Awesome 6 Free";
content: '\f15c';
margin:0 0.65em 0 -1.4em;
}
if (extension_loaded('gd') && function_exists('gd_info')) {
// move okay - create now thumbnail
$x = JDownloadsHelper::create_new_thumb($upload_dir.$filename, $filename);
// set correct chmod
@chmod($upload_dir.$filename, 0655);
// move ok - set new file name as selected
$images[] = $filename;
} else {
Factory::getApplication()->enqueueMessage( Text::_('COM_JDOWNLOADS_ERROR_CAN_NOT_CREATE_THUMB_IMAGE'), 'warning');
}
$css_file = JPATH_SITE.'/components/com_jdownloads/assets/css/jdownloads_fe.css';
@chmod ($css_file, 0755);
$css_file2 = JPATH_SITE.'/components/com_jdownloads/assets/css/jdownloads_buttons.css';
@chmod ($css_file2, 0755);
$css_file3 = JPATH_SITE.'/components/com_jdownloads/assets/css/jdownloads_custom.css';
@chmod ($css_file3, 0755);
$css_file4 = JPATH_SITE.'/components/com_jdownloads/assets/css/jdownloads_fe_rtl.css';
@chmod ($css_file4, 0755);
Quote-rwxr-xr-x 1 4726 6. Jun 16:55 jdownloads_buttons.css*
-rwxr-xr-x 1 1032 1. Jun 12:52 jdownloads_custom.css*
-rwxr-xr-x 1 38440 6. Jun 16:55 jdownloads_fe.css*
-rwxr-xr-x 1 6334 6. Jun 16:55 jdownloads_fe_rtl.css*