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
As the generated links are windows only, a cross-platform solution would be preferable.
I found a suggestion here:
<htmlxmlns="http://www.w3.org/1999/xhtml"><head><title>The Tudors</title><metahttp-equiv="refresh" content="0;URL='http://thetudors.example.com/'" /></head><body><p>This page has moved to a <ahref="http://thetudors.example.com/">
theTudors.example.com</a>.</p></body></html>
Another benefit: no additional mime type necessary so this would solve Bug #3
The text was updated successfully, but these errors were encountered:
Concerning the MIME Type, this file-format won’t help since it’s mainly used to “attach” the action of opening the pad/calc to a specific file: js/ownpad.js.
Hi Olivier,
I tried this by myself and have a solution that works for me:
in ajax/newpad.php substitute line 105 $content = sprintf("[InternetShortcut]\nURL=%s", $url);
with:
and in controller/displaycontroller.php change line 73 preg_match('/URL=(.*)$/', $content, $matches);
to preg_match("/URL='(.*)'/", $content, $matches);
The files/links should work on all platforms (on mobile with "send to")
As the generated links are windows only, a cross-platform solution would be preferable.
I found a suggestion here:
Another benefit: no additional mime type necessary so this would solve Bug #3
The text was updated successfully, but these errors were encountered: