WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
$filename = str_replace(' ', '_', $filename); // Replace spaces by underscores
$filename = media_filename($filename);
$filename = media_filename(str_replace('@', '-at-', $filename));
Hi, try this:oneforall/ajax/upload.php line 222Comment out this lineCode: [Select]$filename = str_replace(' ', '_', $filename); // Replace spaces by underscoresadd this line belowCode: [Select]$filename = media_filename($filename);@ will be removed. if you want to convert it to something, change the line toCode: [Select]$filename = media_filename(str_replace('@', '-at-', $filename));Info: the function media_filename() comes from framework/functions.phpLarge files can't be uploaded if your hoster do not allow this file size or the needed time for this.Keywords are max_file_size, max_execution_time and more.It is planned to convert the files before uploading.
// $filename = str_replace(' ', '_', $filename); // Replace spaces by underscores