You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
Auf der Seite, wo nach Verlassen des Dokuments die Versionen für den Download gelistet werden, kam beim Download Versuch bei unseren Plugin Installationen stets "File not found".
Konnte es so fixen in Customizing/global/plugins/Services/Repository/RepositoryObject/OnlyOffice/templates/html/tpl.file_history.html :
function renderBody() {
const url_array = JSON.parse('{URL}');
const base_url = '{BASE_URL}';
const data = JSON.parse('{TBL_DATA}');
let table = "";
let limit = Math.min(data.length, {LIMIT})
for (let i = 0; i < limit ; i++) {
var rowData = data[i];
var version = rowData.version; alt: var url = url_array[version];
neu: var url = base_url + url_array[version];
....
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Auf der Seite, wo nach Verlassen des Dokuments die Versionen für den Download gelistet werden, kam beim Download Versuch bei unseren Plugin Installationen stets "File not found".
Konnte es so fixen in Customizing/global/plugins/Services/Repository/RepositoryObject/OnlyOffice/templates/html/tpl.file_history.html :
function renderBody() {
const url_array = JSON.parse('{URL}');
const base_url = '{BASE_URL}';
const data = JSON.parse('{TBL_DATA}');
let table = "";
let limit = Math.min(data.length, {LIMIT})
for (let i = 0; i < limit ; i++) {
var rowData = data[i];
var version = rowData.version;
alt: var url = url_array[version];
neu: var url = base_url + url_array[version];
....
The text was updated successfully, but these errors were encountered: