I keep having trouble selecting multiple files on my account page. it is impossible with the mouse to do this.( work only icon view, not list view)
If you hold down the ctrl key and click, you should be able to select multiple items.
very strange,
https://gyazo.com/4e31359c337a59c8dd4c614b39581346 the files preview and video player not work in download page and account page, but work perfectly in embed. ( solved with new installation)
I couldn't reproduce this one. Which browser are you using? If you press F12 in Chrome and look at the console, do you see any error messages?
Database Error: PDOException: SQLSTATE[42S02]: Base table or view not found: 1051 Unknown table 'admin_betaspeed.plugin_filepreviewer_embed_token' in /var/www/vhosts/xxxxxxxxxxx.yyy/beta.xxxxxxxxxxx.yyy/app/core/Database.class.php:141
Now fixed in the latest beta code.
at this point I have a great doubt. in version 4 the embed codes have a link that refers to the mediaplayer plugin, in this version instead no more. then all the embed codes of version 4 will no longer work with the old link? or is there an internal redirect that redirects to the new link?
There are legacy routes in the code to cover this. If you look in \plugins\filepreviewer\PluginFilepreviewer.class.php you'll see:
// routes for legacy purposes
$r->addRoute(['GET'], '/image/{shortUrl}[/{fileName}]', '\plugins\filepreviewer\controllers\FilepreviewerController/directFile');
$r->addRoute(['GET'], '/plugins/docviewer/site/_embed.php', '\plugins\filepreviewer\controllers\FilepreviewerController/embedDocumentLegacy');
$r->addRoute(['GET'], '/plugins/mediaplayer/site/_embed.php', '\plugins\filepreviewer\controllers\FilepreviewerController/embedVideoLegacy');
$r->addRoute(['GET'], '/plugins/imageviewer/site/direct.php', '\plugins\filepreviewer\controllers\FilepreviewerController/directFileLegacy');
$r->addRoute(['GET'], '/plugins/mediaplayer/site/direct.php', '\plugins\filepreviewer\controllers\FilepreviewerController/directFileLegacy');
$r->addRoute(['GET'], '/plugins/imageviewer/site/thumb.php', '\plugins\filepreviewer\controllers\FilepreviewerController/resizeImageLegacy');
These will cover the older urls. You should be able to test it by taking one from your current site and replacing the short url param with a file uploaded to your beta site.
i upgraded myqsl server and the problem is solved
Great, thanks for confirming. It should work with older MySQL versions aswell though.
Thanks again for the feedback.