Is it possible to open the filemanager page on a new tab?
And open directly on folder Home/web/domain.com/public_html ?
Is it possible to open the filemanager page on a new tab?
And open directly on folder Home/web/domain.com/public_html ?
You can make changes in the ftp.tpl template,
find
<script>
window.location = "https://{$hostname_filemanager}/api.php?sessiaid={$answer_connect_fm['0']}&link={$answer_connect_fm['1']}";
</script>
Enter, replace with:
<script>
window.open("https://{$hostname_filemanager}/api.php?sessiaid={$answer_connect_fm['0']}&link={$answer_connect_fm['1']}", "_blank");
</script>
And the file manager will open in a new tab.