k3davis
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Doc Embedder] Suggestion – no automatic donwloadThis has been suggested before and is already possible by creating links to Google Viewer directly. As GDE is a document viewer it doesn’t have need to create links for you; this is already baked into WordPress.
There is even a tool to automatically generate these links that can be found at: https://docs.google.com/viewer
If you want functionality that GDE adds like a better looking toolbar or private document support, you can create the viewer shortcode as you normally do, copy the link of the full screen view, and delete the shortcode creating a standard link using what you copied.
I know that GDE can make this option available and perhaps slightly more convenient, but the need for a document viewer to create links really seems minimal so I haven’t felt the value to spend development time in this area.
Hope this helps,
Kevin
Forum: Plugins
In reply to: [Google Doc Embedder] Mediafier not workingHello, I’m sorry but there are no current plans to support MediaFire.
Forum: Plugins
In reply to: [Google Doc Embedder] Full ScreenCan you give any more info of exactly how it appears or behaves, or an example link? There are several things this could be but I’d have to guess with this level of detail. Thanks.
Forum: Plugins
In reply to: [Google Doc Embedder] UTF-8 Cyrillic problemThanks bones. I will address this issue in a future update to the plugin.
Forum: Plugins
In reply to: [Google Doc Embedder] Use secure file location in PDF.jsBoth have their advantages and disadvantages. PDF.js is an excellent tool but is not supported by GDE at this time. You’d have to approach the owner of that plugin to see if secure document management can be added.
Forum: Plugins
In reply to: [Google Doc Embedder] Disable full screen entirelyThere isn’t a technological way to prevent any browser savvy person from loading an iframe full screen. I suppose the page could check if the document was full screen (or at least, the parent frame, regardless of the size of the browser window) and if so display alternate content. That’s about the closest you could come I think.
This isn’t implemented in GDE for now though – the toolbar options just control the toolbar. The closest thing to it is GDE will remove the full screen/new window button if you’re using the enhanced viewer at full screen, since it’s redundant.
Hesadanza,
The size of your PDF is very likely the issue. You may have to optimize the PDF for the web, or split it into multiple PDF files. The recommended max size to work well with Google Viewer is 8-10MB.
Forum: Plugins
In reply to: [Google Doc Embedder] Does this work for Dropbox?Sam,
As the plugin is purely web code it should work on any recent-ish OS or browser, including mobile.
Glad the Dropbox instructions were helpful to you!
Kevin
Forum: Plugins
In reply to: [Google Doc Embedder] Does this work for Dropbox?The official word from the FAQ is that cloud documents are not supported. The plugin does work with Dropbox, however it’s a bit tricky at the moment so you’re kind of at the mercy of your own skills. However I can try to point you in the right direction.
You’ll have to navigate to your document in dropbox and click on the “share” link to get the public link to your document. It may look something like this (the below URL is fake for demonstration only):
https://www.dropbox.com/s/79m7khhhh1/foo.docx?dl=0
You may be able to use this link in GDE if you change the last character to a 1 (
?dl=1after your filename) and in uncheck “check for errors before loading viewer” on the Advanced tab of GDE Settings. If this doesn’t work, you can use your browser’s dev tools while clicking on the “direct download” option to get the true URL of the document, which usually begins with something likehttps://dl.dropboxusercontent.com/...I have a better way of doing this from GDE planned but at the moment development of the plugin is not active; the plugin is in support mode until I have more free time or Google fixes some of their own bugs.
Hope this helps,
Kevin
Forum: Plugins
In reply to: [Google Doc Embedder] Font Type in Powerpoint Slide/Doc Not Saving ProperlyTom,
The “grainy” images are a known issue, a limitation of Google Viewer (which GDE embeds).
http://www.davistribe.org/gde/known-issues/I don’t know honestly if the viewer supports embedded fonts. Be sure that you are embedding the fonts in your document, because just referencing them will certainly not work unless everyone viewing the document has the same fonts installed. However, even if the fonts are embedded Google Viewer may not support this.
Kevin
Forum: Plugins
In reply to: [Google Doc Embedder] PDF Resolution IssueForum: Plugins
In reply to: [Google Doc Embedder] alternative text?This was answered via email, but you can hide the error messages by changing the setting on the Advanced tab in GDE Settings. Uncheck “show error messages inline”.
Forum: Plugins
In reply to: [Google Doc Embedder] PDF Viewer forwarding to specific BookmarksYou would have to split your document into multiple separate documents to navigate in this way. There is no way to create a hyperlink that opens the viewer to a particular page in the current generation of Google Viewer (which GDE embeds).
Forum: Plugins
In reply to: [Google Doc Embedder] .htaccess settingsFelix,
I’ve never tried what you’re attempting here, but if you contact me via email there may be something we can try. My email address is located in the GPL statement at the top of the plugin file gviewer.php in its root folder, or you can use the support tab in GDE Settings.
Kevin
Forum: Plugins
In reply to: [Google Doc Embedder] gview called using do_shortcodeWhat does this code do?
echo do_shortcode('[gview file="'. urldecode($_REQUEST['f']) .'"]');or alternately
$sc = ‘[gview file=”‘. urldecode($_REQUEST[‘f’]) .'”]’;
echo do_shortcode($sc);