Viljami Kuosmanen
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Safe Updates] Technical Doubtshell_exec, exec, fopen, eval, etc. – none of those nasty php functions aren’t used. 🙂
You can view the entire source code of WP Safe Updates here:
https://github.com/anttiviljami/wp-safe-updates/Thanks for asking!
Forum: Plugins
In reply to: [WP Safe Updates] WP management Compatible?This plugin isn’t a service per se. But we are trying to expand the plugin to provide apis for services like mainwp to use for testing those updates. 🙂
Forum: Reviews
In reply to: [WP Safe Updates] Brilliant plugin – should be in coreThanks for the positive feedback!
Yes. It’s a trivial addition to make it update themes as well. Just right now we want to focus on plugins efficiently, so we don’t have to work on two things at the same time.
Forum: Reviews
In reply to: [WP Safe Updates] Wish this worked.Hi! I’m sorry you had trouble making this work.
Did you also copy the
db.phpfile underwp-contentas instructed in the installation section of readme?https://wordpress.org/plugins/wp-safe-updates/installation/
We’re soon releasing a new version of this plugin with an auto-installer, so you don’t need to make those changes manually. 🙂
Thanks for the 5/5 rating!
Forum: Plugins
In reply to: [WP Safe Updates] Multisite CompatibleHasn’t been tested, but probably not. It’s on the roadmap though. Somebody just needs to check. 🙂
You can follow and participate to the discussion at:
Forum: Reviews
In reply to: [WP Safe Updates] Five stars for the effort alone!Thanks, @bowo ! I’m glad you agree it’s an important problem to solve for WordPress.
Cheers!
Forum: Plugins
In reply to: [WordPress PDF Templates] Fatal error when I activate the pluginHi! @zlither and @arocamora. Can you tell me which version of php and wordpress are you using? It seems that for some reason, loading the required composer dompdf library is failing for you.
Can you paste the output of phpinfo() for me?
You can use this plugin: https://fi.wordpress.org/plugins/wordpress-php-info/
Forum: Plugins
In reply to: [WP Post ACL] Not working anymoreDo you have users of role editor on your website?
Forum: Plugins
In reply to: [WordPress PDF Templates] Add pagination ?Can you clarify ? Pagination as in page numbers in the pdf, or pagination as in a list of contents?
Forum: Plugins
In reply to: [WordPress PDF Templates] Permalinks with categories don't workThis might well be a limitation of the plugin. I would have to look into the permalink to template resolving code to see if I can support permalinks like that.
Would you be interested in looking at the code found here:
https://github.com/anttiviljami/wp-pdf-templates/blob/master/wp-pdf-templates.php#L267-L299
and see if messing with it would help your issue?
Cheers!
Forum: Plugins
In reply to: [WordPress PDF Templates] Add custom fields to PDF[resolved]
Forum: Plugins
In reply to: [WordPress PDF Templates] Add custom fields to PDFOf course. Just edit the pdf template like you would any theme template file to include the custom fields. 🙂
Forum: Plugins
In reply to: [WordPress PDF Templates] stream_socket_client()It’s good to hear you were able to fix the issue.
I don’t think we’re moving to curl any time soon due to curl-support missing on some hosting platforms.
Closing issue now.
Forum: Plugins
In reply to: [WordPress PDF Templates] Localhost error & write errorThere already is a fallback. See this part of the code:
if( empty( $html ) ) { // if all else fails, try the public site url (not localhost) $link = get_the_permalink(); $link = $link . (strpos($link, '?') === false ? '?' : '&') . 'pdf-template'; $html = file_get_contents( $link , false, $context ); }Why do you think this doesn’t work?
Forum: Plugins
In reply to: [WordPress PDF Templates] Force DownloadNo. Currently there is no option to globally turn on forced downloading. A very good addition though!
You can, however, create an anchor to the pdf file, which will then download the file instead of showing it.
Here’s how you do it
<a href="pdf" download>Click Here to Download</a>